乳胶:多个目录

时间:2016-05-17 14:00:11

标签: latex multiple-tables tableofcontents

我正在寻找的是以下目录结构:

目录

1 Vorwort

2你好

3 Und so weiter

使用这些章节进行记录,但在每章的开头,其具体目录:

1 Vorwort

-----这里是子集-----

1.1 suboc

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}

1 个答案:

答案 0 :(得分:0)

答案是minitoc包。

工作正常!