我想要像这样的罗马编号附件:
1 第一部分
2 第二部分
3 最后部分
参考书目
附件
第一附件
二、第二附件
三、第三附件
四、第四附件
我想我应该做类似的事情
\setcounter{section}{1}
\renewcommand\thesection{\Roman{section}}
\section*{Annexes}
\subsection{First Annex}
但是我怎样才能删除章节编号并仅留下带有罗马数字的子章节编号?
答案1
好的,我在构建 MWE 时已经解决了这个问题。实际上 Latex 可以自行完成所有工作,只\renewcommand\thesubsection{\Roman{subsection}}
需要命令即可。
\documentclass[a4paper,10pt,twocolumn]{article}
\begin{document}
\tableofcontents
\clearpage
\section{First Section}
\section{Second Section}
\section{Third Section}
\addcontentsline{toc}{section}{Annexes}
\sectionmark{Annexes}
\renewcommand\thesubsection{\Roman{subsection}}
\section*{Annexes}
\subsection{First Annex}
\subsection{Second Annex}
\end{document}