如何更改章节/小节编号?

如何更改章节/小节编号?
\renewcommand{\baselinestretch}{1.5}
\title{Some XYZ Title}
\usepackage{graphicx}
\usepackage{booktabs}


 \begin{document}

每当我添加图表列表和表格列表时,我的节/小节/小小节的命名都会从 1 / 1.1 / 1.1.1 更改为 A / A.1 A.1.1 我该如何解决这个问题?

\newpage
\tableofcontents
\pagenumbering{gobble}
\newpage
\pagenumbering{roman}

\begin{appendix}
        \listoffigures
    \listoftables
\end{appendix}
\newpage
\pagenumbering{arabic}
\section {Introduction}

\subsection {Introduction to Project Work}
For centuries, we have used symbols on

答案1

您可以使用包appendices中的环境来执行此appendix操作。这是一个有效的代码。我设法将附录放在目录中,但如果您不想要它们,很容易撤消。

\documentclass[a4paper]{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{fourier}
\usepackage[toc, title, titletoc] {appendix}
\renewcommand{\baselinestretch}{1.5}
\title{Some XYZ Title}
\author{Myself}

\begin{document}

\maketitle
\newpage
\tableofcontents
\pagenumbering{gobble}
\newpage
\pagenumbering{roman}
\begin{appendices}      
  \addcontentsline{toc}{subsection}{List of Figures}
  \listoffigures
  \addcontentsline{toc}{subsection}{List of Tables}
  \listoftables
\end{appendices}
\newpage
\pagenumbering{arabic}
\section {Introduction}

\subsection {Introduction to Project Work}
For centuries, we have used symbols on

\end{document} 

在此处输入图片描述

相关内容