带有自定义符号的多层编号列表

带有自定义符号的多层编号列表

对于一个小型组织(俱乐部),我想以某种格式编写“章程”。我尝试仅使用自定义部分和子部分,它看起来符合我的要求:

\titleformat{\section}{\centering\normalfont\large\bfseries}{\S\thesection}{1em}{}
\titleformat{\subsection}{\normalfont\normalsize}{\S\thesubsection}{1em}{}    

\section{A topic}
  \subsection{This is a rule}
  \subsection{Another rule}
\section{A different topic}
  \subsection{Yet another rule}

令人满意的结果

但我认为这可能不是正确做法,而且我已经遇到了一些格式问题。Latex 不知道如何正确划分文本,当我到达页面末尾时,文本只是从页面底部延伸出来。我最初尝试修复此问题,但认为一定存在更好的方法。

那么有人知道如何以更好、更合适的 LaTeX 方式复制这种格式吗?

答案1

使用(修改后的)列表环境怎么样enumerate

% itemizeprob.tex  SE 583180
\documentclass{article}
\usepackage{titlesec}

\titleformat{\section}{\centering\normalfont\large\bfseries}{\S\thesection}{1em}{}
\titleformat{\subsection}{\normalfont\normalsize}{\S\thesubsection}{1em}{}    

\renewcommand{\labelenumi}{\S\thesection.\theenumi}

\begin{document}

\section{A topic}
\begin{enumerate}
\item This is an enumerated rule.
\item Another rule.
\end{enumerate}

  \subsection{This is a subsection rule}
  \subsection{Another rule}

\section{A different topic}
\begin{enumerate}
\item Yet another enumerated rule.
\end{enumerate}

  \subsection{Yet another subsection rule}

\end{document}

在此处输入图片描述

相关内容