文章类别

文章类别

我正在使用此包 \usepackage[toc,page]{appendix} 来创建附录页面。每个部分的编号如下图所示在此处输入图片描述我可以将其更改为以 1、2 等格式显示编号吗?谢谢

答案1

如果没有看到可行的示例,就很难提供帮助。

对于文章,您必须使用section命令。

然而,对于报告和书籍来说,chapter-commands 是首选。

文章类别

\documentclass{article}
\usepackage[page,toc]{appendix}


\begin{document}
\tableofcontents
\section{First Section}
\subsection{First Subsection}
\section{Second Section}

\begin{appendices}
\section{Some Appendix}
Here be the appendix
\end{appendices}

\end{document}

文章

报告或书籍课程

\documentclass{report}
\usepackage[page,toc]{appendix}


\begin{document}
\tableofcontents
\chapter{First Chapter}
\section{First Section}
\chapter{Second Chapter}

\begin{appendices}
\chapter{Some Appendix}
Here be the appendix
\end{appendices}

\end{document}

报告或书籍

相关内容