下面的代码存在一个问题,它将“安全”部分视为一个独立的部分。因此,在目录中,我将“附录”和“安全”作为单独的部分。我希望“安全”看起来像“附录”部分的子部分。
另外,我如何将“附录”重命名为“附录”?这样看起来更好。是通过 吗\renewcommand
?
\documentclass[a4paper,12pt]{scrartcl}
\usepackage{tocbibind}
\usepackage[toc,page]{appendix}
\begin{document}
\section{Introduction}
this is my introduction
\appendix
\appendixpage
\section{Safety}
\end{document}
答案1
我对 LaTeX 附录的理解是,您发出命令\appendix
,然后像以前一样继续创建部分。您可以有一个\section
称为附录,然后在其中,一个\subsection
叫做安全。
代码:
\documentclass[a4paper,12pt]{scrartcl}
\usepackage{tocbibind}
\usepackage[toc,page]{appendix}
\begin{document}
\tableofcontents
\section{Introduction}
this is my introduction
\appendix
\section{Appendix}
\subsection{Safety}
\end{document}
结果: