LaTeX标题、目录及段落的编辑(清晰实例)(论文排版)

1、层次结构:

Latex的文档层次结构大约有5层,分别是: 

section — subsection — subsubsection — paragraph — subparagraph

2、实例:

LaTeX标题、目录及段落的编辑(清晰实例)(论文排版)_第1张图片

3、代码:

\documentclass{article}
   \title{XIDIAN UNIVERSITY}                   %———总标题
   \author{YanTaTaiBai}
\begin{document}
   \maketitle                                  % —— 显示标题
\tableofcontents                               %—— 制作目录(目录是根据标题自动生成的)
   \section{China}                             %——一号子标题  China is in East Asia.
     \subsection{Shannxi}                      %——二号子标题  Beijing is the capital of China.
       \subsubsection{Xian}                    %——三号子标题
         \paragraph{XIDIAN UNIVERSITY}is a famous university.  %{}中的内容加粗显示
           \subparagraph{School of telecommunication engineering} is in the best institute of XDU.
       \subsection{State Key Laboratory of ISN }
         \paragraph{XiDian University} is the best university in communications industry. 
\end{document}
###### 转载请注明出处 https://blog.csdn.net/gentleman_qin/article/details/79984283 ########

你可能感兴趣的:(LaTeX,工具使用:欲善其事,先利其器)