1.标题页
\title{{ABC}\footnote{explain}}%生成标题和标题的脚注
\author{\small $^a$lay \qquad $^b$winter \footnote{super star}\\%换行符
%作者信息
\small $^a$ lay's brief\\
\small lay's address,
710021\\%换行
\small $^b$ winter's introduction \\
\small winter's address}
\date{\today}%可以定义日期\data(\today)&\data(2022.11.01)
\maketitle%生成标题页
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
标题、作者和日期
- 标题:\title{Our document}
- 作者:\author{All of us}
- 日期:\date{June 2020}
在书写完以上三个部分后,想要在文档中展示出来,需要在文档主体中添加\maketitle
标题+脚注
\title{"abc"\footnote{{lay}}
LaTeX - \footnote 简介,其中之一。将脚注文本放在当前页的底部。 (runebook.dev)
\title{{论文题目}\footnote{这表示的是论文脚注:论文脚注或者尾注是in text citation 的一个部分,通常处于面页的就底部。 它们用于对某些信息的说明,比如可作为文档某处内容的注释或列出引文的出处等, 用于对文本进行补充说明。另外,脚注有2个关联部分组成,即注释引用标记和其对应的注释文本。 大家写论文的时候,一定要善用脚注,以处于让读者完整的理解其文中内容的完整意义, 增加规范性和可读性。}}
2.摘要
(11条消息) Latex之如何修改自带abstract标题的字号和字体大小_Regnaiq的博客-CSDN博客
\begin{abstract}
This is a abstraction \textit{hello everyone} hello \emph{hello everyone}
\noindent%emph强调斜体%textit斜体
{super star}
{\small\bf AMS classification:~05C50}\\%小字%加粗
{\small\bf Keywords:}~{\small title;abstract }%bf黑体
\newpage
\end{abstract}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\end{document}
3.层次结构
LaTeX中提供其中结构命令,每个最高的层次可以包含若干低级层次,article
中没有chapter
,而report
和book
则支持所有层次。
\part{...} %Level -1
\chapter{...} %Level 0
\section{...} %Level 1
\subsection{...} %Level 2
\subsubsection{...}%Level 3
\paragraph{...} %Level 4
\subparagraph{...} %Level 5
\section{logic 1}
logic
\begin{itemize}
\item 1
\item 2
\item 3
\end{itemize}
\subsection{level 1}
\subsubsection{sub 1}
\paragraph{mix 1}
\paragraph{mix 2}
\subsubsection{sub 2}
\subsection{level 2}
\section{logic 2}
4.参考文献
\begin{thebibliography}{22}
\end{thebibliography}
\bibitem{CDS} D.M. Cvetkovi\'{c}, M. Doob, H. Sachs, \emph{Spectra of Graphs}, Academic Press, NewYork, 1982.
其中\begin{thebibliography}{99}, 这个数字99 指的是参考文献的项目按照数字进行编号, 并且最多为99个, 如果你有更多的项目, 把这个数字改大一点就行了.
LaTeX技巧481:LaTeX参考文献环境---thebibliography 环境 - coder_zhang1 - 博客园 (cnblogs.com)