LaTeX/文章结构

维基教科书,自由的教学读本

LaTeX 的文稿结构

环境(environment)[编辑]

所有的环境,都是起于 \begin{环境名称},止于 \end{环境名称},这两个指令之间的文稿都会被作用,而且,环境之内还可以套用其他不同的环境。

LaTeX 文稿的正文,其实就是包在一个 \begin{document} 和 \end{document} 这个 document 环境当中。

\documentclass{article}

 這裡是 preamble 區

\begin{document}

 這裡是本文區

\end{document}

实例[编辑]

% example1.tex
\documentclass{article}
\begin{document}
This is my first typesetting example.\\

\end{document}