如何更改 LaTeX 文档中的“章节”标题及其排列

如何更改 LaTeX 文档中的“章节”标题及其排列

我正在提交一份按练习而不是章节组织的作业。我已经使用命令编写了答案\section{},现在想按练习而不是章节组织最终输出。具体来说,我希望数字出现在每个练习的右侧:练习 4代替4 章节标题

我已经能够在 SE 上找到有关如何对章节和许多其他文档部分执行此操作的信息,但奇怪的是,找不到针对章节的信息。

以下是 MWE:

\documentclass{article}
\begin{document}

\section{Exercise} % First exercise

\section{Exercise} % Second exercise

\section{Exercise} % Third exercise

\end{document}

产生这个:

平均能量损失

现在我真正需要做的就是反转顺序,# Section title因为Section title #我的章节标题是锻炼。此外,理想情况下,章节编号应采用罗马数字,而小节则保留原来的格式。

答案1

使用article您在 MWE 中指定的类,就可以使用titlesec

\documentclass{article}
\renewcommand{\thesection}{\Roman{section}}
\usepackage{titlesec}
\titleformat{\section}
{\normalfont\Large\bfseries}{Exercise~\thesection}{1em}{}

\begin{document}

\section{Exercise} % First exercise

\section{Exercise} % Second exercise

\section{Exercise} % Third exercise

\end{document}

在此处输入图片描述

相关内容