我可以获得未嵌套的\part
部分
\documentclass{extarticle}
但尽管\chapter
经过编译,它的排版与文本没有区别。我可以使用
\documentclass{report}
但章节内又嵌套了部分。有没有什么办法可以解决这一困境?
答案1
是的。您需要更新相应计数器的表示。以下是分层计数器表示的定义方式article
:
\renewcommand{\thesection}{\arabic{section}}
\renewcommand{\thesubsection}{\thesection.\arabic{section}}
\renewcommand{\thesubsubsection}{\thesubsection.\arabic{subsubsection}}
您可以从[ ] 中删除\thesection
[ ]以在视觉上分离层次结构。\thesubsection
\thesubsection
\thesubsubsection
\documentclass{article}
% Remove hierarchical display of sectional units
\renewcommand{\thesubsection}{\arabic{subsection}}
\renewcommand{\thesubsubsection}{\arabic{subsubsection}}
\begin{document}
\tableofcontents
\section{A section}
\subsection{A subsection}
\subsubsection{A subsubsection}
\subsection{Another subsection}
\subsection{Final subsection}
\subsubsection{Another subsubsection}
\subsubsection{Yet another subsubsection}
\subsubsection{Final subsubsection}
\section{Final section}
\end{document}
请注意,只是删除了层次结构的视觉显示。部分单元之间的交互仍然存在,例如每次出现新的[ ] 时subsection
[ ] 计数器都会重置。subsubsection
\section
\subsection
答案2
如果你处理
\documentclass{article}
\begin{document}
\part{This is the first part}
\section{A section}
\section{Another section}
\part{This is the second part}
\section{Yet another section}
\end{document}
你得到
请注意,extarticle
本质上与相同article
,只是允许更多字体大小的选择。
如果您想要与 相同的行为report
,则可以使用\chapter
而不是\part
,使用\counterwithout
。
\documentclass{report}
\counterwithout{section}{chapter}
\begin{document}
\chapter{This is the first chapter}
\section{A section}
\section{Another section}
\chapter{This is the second chapter}
\section{Yet another section}
\end{document}