latex examplefnt
时间: 2023-09-01 09:08:06 浏览: 105
Sure! Here's an example of LaTeX code for creating a simple equation:
```latex
\documentclass{article}
\begin{document}
This is an example equation:
\begin{equation}
f(x) = ax^2 + bx + c
\end{equation}
\end{document}
```
In this example, we use the `equation` environment to create the equation. The equation is displayed on a separate line and automatically numbered by LaTeX. The `a`, `b`, and `c` are coefficients that you can adjust according to your needs.
阅读全文