LaTeX—部分

大纲

  1. sectioning 元素(sections, subsections, paragraphs etc.)
  2. sections和subsections的输出示例
  3. sections元素的等级规则

1.sectioning元素

通过sectioning元素,可以实现文章内容进入其特定的逻辑单元,常用的sectioning元素如下:

\section{}
\subsection{}
\subsubsection{}

\paragraph{}
\subparagraph{}

2. sections和subsections的输出示例

显示效果

LaTeX—部分_第1张图片
page1.PNG

\documentclass{article}

\title{Blogs of Semie}
\date{2019-03-18}
\author{Semie}

\begin{document}
\pagenumbering{gobble}
\maketitle
\newpage
\pagenumbering{arabic}

\section{Section}

Hello World!

\subsection{Subsection}

Structure a document is easy!

\end{document}

2. sections元素的等级规则

显示效果

LaTeX—部分_第2张图片
page2.PNG

\documentclass{article}
\begin{document}
\section{Section}
Hello World!
\subsection{Subsection}
Structuring a document is easy!
\subsubsection{Subsubsection}
More text.
\paragraph{Paragraph}
some more text.
\subparagraph{Subparagraph}
Even more text.

\section{Another section}
\end{document}

总结

  1. LaTeX使用\section,\subsection\subsubsection来定义文章sections。
  2. Sections有着连续集成的数字,会显示在目录里。
  3. Paragraphs没有被标号,不在目录里显示。

你可能感兴趣的:(LaTeX—部分)