단락에 점별로 레이블을 지정하기 위해 이미 정의된 문서 클래스나 명령이 있는지 궁금합니다. 비트겐슈타인의 말처럼트랙타커스;여기예입니다.
예제보다 포인트 카운터를 재설정하고 현재 섹션별로 인덱싱하는 데에도 관심이 있습니다.
답변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
.