首页 > 代码库 > Latex排版工具的使用(一)

Latex排版工具的使用(一)

使用Latex可以排版出漂亮的论文,尤其适合对含有数学公式论文的排版。

下面编写第一Latex源文件,实现对两个数学公式的排版:

新建文件first.tex:

\documentclass{article}
\begin{document}
\begin{equation}
\sqrt{x^2+y^2}
\end{equation}
\begin{equation}
\int_{a}^{b} f(x)dx
\end{equation}
\end{document}
执行命令:pdflatex,可得到first.pdf,内容如下: