Latex:多个 Table 内容

Latex: Multiple Table of Contents

我要找的是下面table的内容结构:

Table 个目录

1 首字母

2 你好

3 更弱

包含这些章节的文档,但在每一章的开头都有其特定的 table 内容:

1 首字母

----- 这里是子目录 -----

1.1 子目录

1.2 测试

----这里是部分测试的开始----

1.2 测试

然而,问题是,在这些不同的章节中,所有子目录都被组合在一起,例如在我的示例中:

\documentclass{scrbook}
\usepackage[latin1]{inputenc}
\usepackage[ngerman]{babel}
\usepackage[T1]{fontenc}
\usepackage{lmodern}
\usepackage{blindtext}% generiert Beispieltext
\usepackage{tocstyle}[2008/10/20]% experimentelles KOMA-Script-Paket
\usetocstyle{standard}

\newcounter{normaltocdepth}
\newcommand*{\startstory}[1]{%
  \newpage\chapter{#1}\addtocontents{toc}{\protect\startstory}%
}
\newcommand*{\afterstory}{%
  \addtocontents{toc}{\protect\afterstory}
}

\newcommand*{\maintoc}{%
  \begingroup
    \setcounter{normaltocdepth}{\value{tocdepth}}%
    \renewcommand*{\startstory}{%
      \setcounter{tocdepth}{1}%
    }%
    \renewcommand*{\afterstory}{%
      \setcounter{tocdepth}{\value{normaltocdepth}}%
    }%
    \tableofcontents
  \endgroup
}

 \newcommand*{\storytoc}{%
   \begingroup
     \setcounter{normaltocdepth}{\value{tocdepth}}%
     \setcounter{tocdepth}{-2}%
     \renewcommand*{\startstory}{%
       \setcounter{tocdepth}{\value{normaltocdepth}}%
     }%
     \renewcommand*{\afterstory}{%
       \setcounter{tocdepth}{-2}%
     }%
     \showtoc{toc}
     \setcounter{tocdepth}{\value{normaltocdepth}}% Hinzugefügt!
   \endgroup
 }

\newcommand{\neuestory}[3]{

                            \startstory{#3}
                            \vspace{10mm}

                            \section*{Abstract}
                            \small
                            \noindent #1
                            \section*{Personen}
                            \noindent #2
                            \normalsize

                            \vspace{10mm}

                            \section*{Inhalt}
                            \storytoc

                            %\cleardoublepage
                            }


\begin{document}

\maintoc

\newpage
\chapter{Vorwort}

blabla

\neuestory{ABC}{eine Frau}{Hallo}

\section{Test}
abc

\afterstory

\neuestory{DEF}{eine Mann}{Und so weiter}

\section{weiterheiter}
def

\afterstory


\end{document}

答案是 minitoc 包。

工作正常!