附錄用數字而不是字母標記,並且存在錯誤

附錄用數字而不是字母標記,並且存在錯誤

我正在嘗試向文件添加附錄,但當我這樣做時,附錄會用數字而不是字母進行標記,並且出現以下錯誤:

LaTeX Error: No counter 'chapter' defined.
LaTeX Error: Command \@chapapp undefined.
LaTeX Error: Command \thechapter undefined.

我正在使用以下程式碼:

\documentclass[12pt]{article}

\usepackage[english]{babel}
\usepackage[letterpaper,top=2cm,bottom=2cm,left=3cm,right=3cm,marginparwidth=1.75cm]{geometry}

% Useful packages
\usepackage[utf8]{inputenc}
\usepackage{float}
\usepackage{eurosym}
\usepackage{array}
\usepackage{textcomp}
\usepackage[round, numbers]{natbib}
\usepackage{graphicx}                   % graphics package
\graphicspath{ {figures/} }% specify the path where figures are located
\usepackage{epstopdf}                   % converts eps files to pdf
\usepackage{fancyhdr}                   % fancy headers and footers
\usepackage{url}                        % nicely format url breaks
\usepackage{relsize}                    % font sizing hierarchy
\usepackage{booktabs}                   % professional looking tables
\usepackage[config, labelfont={bf}]{caption,subfig}
\usepackage{mathrsfs}  % additional math scripts
\usepackage[Bjarne]{fncychap}   % creates fancier chapter titles
\usepackage{setspace}
\usepackage{amsmath}
\usepackage{xcolor}
\usepackage{soul}
\usepackage{dirtytalk}
\usepackage{multicol}
\usepackage{tabto}
\usepackage[toc]{appendix}
\numberwithin{equation}{section}
\usepackage{mathrsfs}
\usepackage{chngcntr}
\counterwithin{table}{section}
\counterwithin{figure}{section}
\usepackage[justification=centering]{caption}
\setlength{\parskip}{0.5em}
\usepackage{rotating, graphicx}
\usepackage{enumitem}
\setlist[description]{style=nextline}
\setlength{\belowcaptionskip}{-15pt}

\renewcommand{\arraystretch}{1.5}

\usepackage{biblatex} %Imports biblatex package
\addbibresource{bibliography.bib} %Import the bibliography file
% \renewcommand{\baselinestretch}{1.5}


% \onehalfspacing      % line spacing
\spacing{3}

\geometry{
    a4paper,
    left = 1.0in,
    right = 1.0in,
    top = 1.0in,
    bottom = 1.375in
}


\begin{document}

\section{Section 1}
blah blah blah
\appendix
\section{Appendix}
blah blah blah

\end{document}

抱歉,我知道這並不是真正的“最小示例”,但我懷疑與導致這種情況發生的其中一個包存在一些衝突。我是 LaTex 的新手,從一位講師那裡繼承了這個序言。

謝謝你!

在此輸入影像描述

答案1

您正在使用該類別article以及該fncychap套件。這是沒有意義的,因為該包是為定義章節的類別而製作的。那是不是班級的情況article

相關內容