非嵌套部分

非嵌套部分

我可以获得未嵌套的\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}

在此处输入图片描述

相关内容