添加附录表

添加附录表

我的附录中有几张表格,但不确定如何创建附录表。到目前为止,附录中的表格显示在“表格列表”中,但我想将它们分开并命名为附录 1、附录 2 等。

附录的最终表格应如下所示:

List of Attachments

Appendix1: Your second table…………………………………………………………xi

我将非常感激任何对此提供的帮助!

MWE(见下文)

表格“您的第二张表格”应出现在附录表格中。表格列表中的表格“您的第一张表格”。

\documentclass{article}
\usepackage[utf8]{inputenc}

\begin{document}

\tableofcontents
\newpage

\listoftables

\clearpage

\section{Empirical Results}

\begin{table}[h!]
  \begin{center}
    \caption{Your first table.}
    \label{tab:table1}
    \begin{tabular}{l|c|r}
      \textbf{Value 1} & \textbf{Value 2} & \textbf{Value 3}\\
      $\alpha$ & $\beta$ & $\gamma$ \\
      \hline
      1 & 1110.1 & a\\
      2 & 10.1 & b\\
      3 & 23.113231 & c\\
    \end{tabular}
  \end{center}
\end{table}

\appendix
\section*{Appendix} \label{appendix}
\addcontentsline{toc}{section}{Appendix}

\begin{table}[h!]
  \begin{center}
    \caption{Your second table.}
    \label{tab:table1}
    \begin{tabular}{l|c|r}
      \textbf{Value 1} & \textbf{Value 2} & \textbf{Value 3}\\
      $\alpha$ & $\beta$ & $\gamma$ \\
      \hline
      1 & 1110.1 & a\\
      2 & 10.1 & b\\
      3 & 23.113231 & c\\
    \end{tabular}
  \end{center}
\end{table}

\end{document}

相关内容