我想知道是否已经定义了任何文档类或命令,以便按点标记段落。正如维特根斯坦的逻辑哲学论;这里就是一个例子。
除了示例中的情况外,我还对重置点计数器以及按当前部分对它们进行索引感兴趣。
答案1
我不知道有什么标准风格,但很容易设置
\documentclass{article}
\newcounter{pnum}[section]
\renewcommand{\thepnum}{\thesection.\arabic{pnum}}
\newcommand{\nump}{\noindent\refstepcounter{pnum}{\textbf{\thepnum}}.\enspace}
\begin{document}
\section{Families of cusp forms}
\nump
For a reductive group\dots
\nump
Any cusp form\dots
\section{Families of \( L \)-fuctions}
\nump
The most important\dots
\end{document}
代码引入了一个新的计数器pnum
,即在每节重置一次。其打印形式\thepnum
指定为包含节号。\nump
然后定义一个新命令来开始新段落。您可以\noindent
在该定义前面添加垂直间距,例如\smallbreak
。