Latex 使用
Latex 根据层次分以为下几级:
- section 一级章节
- subsection 二级章节
- subsubsection 三级章节
- paragraph 段落
- subparagraph 子段落
一示例文档如下所示。
Latex 源码
\documentclass{article}
\title{An Brief Introduction To Latex Document Structure}
\begin{document}
\maketitle
\section{Section I}
This is a section.
\subsection{Sub Section I-I}
This is a sub section.
\subsubsection{Sub Sub Section I-I-I}
This is a sub sub section.
\paragraph{Paragraph P1} This is a basic unit of a group of sentences.
\subparagraph{Sub Paragraph I} This a sub paragraph of P1.
\subparagraph{Sub Paragraph II} This a sub paragraph of P1.
\subparagraph{Sub Paragraph III} This a sub paragraph of P1.
\subsubsection{Sub Sub Section I-I-II}
This is another sub sub section.
\end{document}