\appendix 章节号不显示

\appendix 章节号不显示

我正在使用以下命令作为附录:

\appendix 
\chapter{First Appendix} 
\input{AppendixA}

并且显示章节但不显示章节号。

Frist Appendix  (no appendex number A)
.1 section title
.1.1 subsection title

我浏览了这个论坛并找到了一些技巧,但它们无法解决我的问题。如果我使用这些命令:

\appendix \renewcommand{\thechapter}{\arabic{chapter}}
\renewcommand{\thesection}{A.\arabic{section}}

\chapter{First Appendix} 
\input{AppendixA}
\chapter{Second Appendix} 
\input{AppendixB}

那么输出是:

Frist Appendix   0 (appendex number starts from 0 not A)
A.1 section title
A.1.1 subsection title

Frist Appendix  0 (it repeat same number with all chapters)
A.1 section title
A.1.1 subsection title

可以找到自定义的类文件这里

可能是由于与其他包冲突,我正在使用以下包:

\documentclass[12pt, english, squeezeCommittee, fancyChapter, fancyPart]{these-LUNAM}
\usepackage[latin1]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{longtable}
\usepackage{amsmath,amssymb,amsfonts,amsthm,stmaryrd}
\usepackage{mathabx}
\usepackage{algorithm}
\usepackage{algorithmic}
\usepackage{lscape}
\usepackage{textcomp}
\usepackage{graphics}
\usepackage{todonotes}
\usepackage{appendix}
\usepackage{paralist} % %for inline  numbering
\usepackage{makeidx}
\makeindex

% to resize tables
\usepackage{graphicx}
\usepackage{multirow}
\usepackage{csvsimple}

% to draw graphics in latex
\usepackage{array}
\newcolumntype{C}{>{$}c<{$}}
\usepackage{tikz} 
\usetikzlibrary{positioning, shapes, arrows}
\tikzset{
    events/.style={ellipse, draw, align=center},
}
\usepackage{glossaries}
\geometry{inner=4.5cm, outer=2.5cm, top=2.5cm, bottom=2cm}
\usepackage{times}
\RequirePackage[bookmarks,%
                colorlinks,%
                urlcolor=blue,%
                citecolor=blue,%
                linkcolor=blue,%
                hyperfigures,%
                pagebackref,%
                pdfcreator=LaTeX,%
                breaklinks=true,%
                pdfpagelayout=SinglePage,%
                bookmarksopen=true,%
                bookmarksopenlevel=2]{hyperref}
\usepackage{url}
\usepackage{hyperref}
\usepackage{breakurl}

% to set 
\setcounter{secnumdepth}{5}
\setcounter{tocdepth}{5}

\usepackage{minitoc}

答案1

最后,附录的编号问题是由于其位置错误而导致的,\backmatter出现得太早:其后的所有编号都被抑制了。看看这个问题

论文的正确顺序应该是:

\chapter{Perspectives ....}
<some input>
\appendix
\chapter{Comparison table for ....}
<some input>
\chapter{Implementation ....}
<some input>
%------------
\backmatter
\listoftables
\listoffigures
\listofalgorithms
\tableofcontents
%-------------
\bibliographystyle{mybibstylewithoutbst}
\bibliography{mybibfileswithoutbib}

答案2

这是否意味着您在定义中明确涉及到 A 和 B?

\renewcommand{\thechapter}{A\Alph{chapter}}
\renewcommand{\thechapter}{B\Alph{chapter}}

这取决于你,但这违反了LaTeX逻辑,并且可能会在目录中产生奇怪的结果。

我标准类reportbook,如在 Koma-script 中scrbook,如在中memoir,该\appendix命令执行从名称章节到附录的更改,同时切换到 Alph 编号,从 A 开始(计数器设置为 1)。

编辑:好的,我已经加载了您的类。它基于标准book类。它相当有缺陷,因为它以随机顺序加载包,并且还假设其他一些包已由用户加载,选项集看起来很奇怪,要将其切换为英语,您需要不使用该english选项!(毕竟我也是法国人!)

无论如何,它都会编译并使用代码(使用假定包裹

\documentclass[11pt,fancyPart]{these-LUNAM}
\usepackage[francais,english]{babel}
\usepackage[T1]{fontenc}
\usepackage{geometry}
\usepackage{graphicx}
\usepackage{lipsum} 
\begin{document}
\maketitle
\chapter{The first chapter}
Un petit chapeau pour mon chapitre
\section{a normal section}
\lipsum[1]
\appendix
\chapter{An appendix}
\section{An appendix section}
\lipsum[3]
\end{document}

我无法重现您的问题,如下所示:

在此处输入图片描述

我的猜测是你使用了其他破坏该课程的包......

相关内容