Latex 使用
Latex 根据层次分以为下几级:

  • section 一级章节
  • subsection 二级章节
  • subsubsection 三级章节
  • paragraph 段落
  • subparagraph 子段落

一示例文档如下所示。

Latex学习笔记 (2) 段落结构

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} 

相关文章:

  • 2022-12-23
  • 2021-12-30
  • 2022-12-23
  • 2022-01-07
  • 2021-08-17
  • 2021-11-23
猜你喜欢
  • 2021-04-08
  • 2021-10-12
  • 2022-02-19
  • 2021-07-12
  • 2021-09-28
  • 2021-06-04
  • 2021-10-01
相关资源
相似解决方案