Overleaf是一个在线latex编辑器,LaTeX 是一种基于 ΤΕΧ 的排版系统,可以说是一个写论文好帮手。
1、层次结构:
Latex的文档层次结构大约有5层,分别是:
section — subsection — subsubsection — paragraph — subparagraph
image.png\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
网友评论