创建并标记附录

创建并标记附录

我正在写论文,想创建多个附录。我想将它们命名为附录 A、B 等,并想将所有内容标记为附录的名称,如(表 A.1)

 \appendix

\chapter*{Appendix A} 

\label{A} 

\begin{landscape}
   \caption{name of the table} \begin{table} the table ... \end{tabular}
   \end{table} \end{landscape}

答案1

以下 MWE 应该会有所帮助。

% apptabprob.tex  SE 552919

\documentclass{report}

\begin{document}
\tableofcontents
\listoftables

\chapter{A chapter}
\begin{table}
\centering
\caption{name of the table} 
THE TABLE
\end{table}

\appendix

%\chapter*{Appendix A}
\chapter{An Appendix A}
\label{A}

%\begin{landscape}  % is undefined
\begin{table}
\caption{name of the table} 
THE TABLE
\end{table}
%\end{landscape}

\chapter{Another Appendix B}
\label{B}

%\begin{landscape}  % is undefined
\begin{table}
\caption{name of the table} 
THE TABLE
\end{table}
%\end{landscape}

\end{document}

但是,由于您没有提供 MWE(从\documentclass...展示\end{document}您所做的事情,我不得不猜测您可能做了什么。您在表格中显示的代码是完全错误的。

相关内容