每章末尾的简单 LOT

每章末尾的简单 LOT

我写了一份包含 2 章的文档。在每章末尾,我想添加一个简短的附录,主要包含表格和/或图表。文档的结构应如下:

第1章

第 1.1 节

第 1.2 节

附录 A

第2章

第 2.1 节

第 2.2 节

附录 B

附录中的表格应当标记为:第一章的表格为表A.1、表A.2等,第二章的表格为表B.1、表B.2等。

在两个附录的开头,我想添加一个简短的 LOT,其中列出了相关表格。如果可能的话,也请提供一些图表,但目前附录中没有图表。

以下是我目前得到的信息:

\documentclass{scrreprt}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{csquotes}
\usepackage{lipsum}
\usepackage{afterpage}
\usepackage{geometry}
\usepackage{setspace}
\usepackage{caption}
\usepackage{babel}

\doublespacing

\begin{document}
    \tableofcontents
    
    \chapter{Trees in the forest}
    \section{Trees are green}
    \lipsum[1]
    \section{Trees produce O2}
    \lipsum[1]
    
    \section{Appendix A: Additional infos on trees}\label{appendix:x1}
    \renewcommand{\thetable}{\Alph{section}\arabic{table}}
    \renewcommand{\thesubsection}{\Alph{subsection}}
    \setcounter{table}{0}
    \setcounter{section}{1}
    
    \begin{table}
        \caption{This is a table}
        \begin{tabular}{lc}
            121212121 & 121212121 \\
            121212121 & 121212121 \\
            121212121 & 121212121
        \end{tabular}
    \end{table}

    \chapter{Dolphins in the ocean}
    \section{Types of dolphins}
    \lipsum[1]
    \section{Appendix B: Additional infos on dolphins}\label{appendix:x2}
    \renewcommand{\thetable}{\Alph{section}\arabic{table}}
    \renewcommand{\thesubsection}{\Alph{subsection}}
    \setcounter{table}{0}
    \setcounter{section}{2}
    
    \begin{table}
        \caption{This is a second table}
        \begin{tabular}{lc}
            121212121 & 121212121 \\
            121212121 & 121212121 \\
            121212121 & 121212121
        \end{tabular}
    \end{table}
     
\end{document}

另一种结构如下(第 1 章的示例):

第1章

第 1.1 节

第 1.2 节

1.3 节 附录

因此,将附录移到一个简单的部分。如果替代方案太复杂,这可能会让事情变得更容易。谢谢任何提示。

相关内容