所以我想写一篇几页长的书籍摘要。有什么方法可以让part
看起来就像section
,除了保留 的罗马数字编号part
;以及 看起来section
就像paragraph
,除了保留 的阿拉伯数字编号section
?我尝试使用以下命令:
\let\part\section
\def\thesection{\Roman{section}}
\let\section\paragraph
\def\theparagraph{\arabic{paragraph}}
在某种程度上,它对 起作用part
;但对 不起作用section
,因为一旦让section
表现得像paragraph
,我就不能再向它添加任何编号了……
编辑:我还需要确保paragraph
-ized的编号section
不受 -ized 的影响section
;part
即,无论部分如何,都使章节编号继续
答案1
不确定您想要什么,但是为什么不直接使用\section
并\paragraph
更改其编号样式呢?
\documentclass{article} % ????
\usepackage{lipsum}
\usepackage{chngcntr} % for changing how counters get incremented
\counterwithout{subsection}{section} % continuous subsection numbering
\counterwithout{subsubsection}{subsection} % continuous subsubsection numbering
\counterwithout{paragraph}{subsubsection} % continuous paragraph numbering
\renewcommand{\thesection}{\Roman{section}}
\renewcommand{\theparagraph}{\arabic{paragraph}}
\setcounter{secnumdepth}{4} % number \paragraph in document
\setcounter{tocdepth}{4} % put \paragraph in ToC
\begin{document}
\tableofcontents
\section{First section}
\lipsum[1]
\paragraph{First paragraph}
\lipsum[2]
\paragraph{Second paragraph}
\lipsum[2]
\section{A section}
\lipsum[1]
\paragraph{A paragraph}
\lipsum[2]
\end{document}
为了回应您的评论,我添加了代码,以便段落编号连续。