仅特定部分使用罗马数字

仅特定部分使用罗马数字

我尝试只用罗马数字对论文的特定部分进行编号。基本上,我会尝试用阿拉伯数字对正文进行编号,用罗马数字对表格、图表以及附录进行编号。

使用以下命令我得到以罗马数字显示的整个文档:

\documentclass[a4paper,12pt]{article}

\renewcommand{\thesection}{\Roman{section}} 
\renewcommand{\thesubsection}{\thesection.\Roman{subsection}}

\begin{document}

\listoftables

\listoffigures

\section{Main Body}

\section*{Appendix}

\end{document}

非常感谢!

答案1

我仍然有点不明白您想让附录做什么。为什么不叫它为\section{Appendix}而不是\section*{Appendix}

使用该tocloft包来更改 LoF 和 Lot 标题。

% Romanprob.tex  SE 615700

\documentclass[a4paper,12pt]{article}

\renewcommand{\thesection}{\Roman{section}} 
\renewcommand{\thesubsection}{\thesection.\Roman{subsection}}

%% change the LoF and LoT titles to \section style
\usepackage{tocloft}
\makeatletter
%%%%\renewcommand{\@cftmaketoctitle}{\section{\contentsname}}
\renewcommand{\@cftmakeloftitle}{\section{\listfigurename}}
\renewcommand{\@cftmakelottitle}{\section{\listtablename}}
\makeatother

\begin{document}

%%%%\tableofcontents

\listoftables

\listoffigures

\section{Main Body}

\section*{Appendix}  %% unnumbered Appendix
\section{Appendix}   %% numbered Appendix

\end{document}

在此处输入图片描述

相关内容