章节旁边的迷你目录

章节旁边的迷你目录

我想在章节旁边直接放置一个上下文小表,如下所示。

在此处输入图片描述

titletoc出于兼容性原因,应使用此处建议的方式创建目录回答。MWEtcolorbox中的 不是必须的。

\documentclass{book}

\usepackage{titletoc}
\usepackage{lipsum}
\usepackage{tcolorbox}

\setcounter{secnumdepth}{4}
\setcounter{tocdepth}{3}
\begin{document}
    \tableofcontents
    \chapter{A chapter}
    \startcontents[chapters]
    \begin{tcolorbox}[width=.5\linewidth]
            \printcontents[chapters]{}{1}{}
    \end{tcolorbox}

    \section{Section}
    \lipsum[1]
    \section{Section 2}
    \lipsum
    \chapter{Second chapter}
    \startcontents[chapters]
    \printcontents[chapters]{}{1}{}
    \section{Section}
    \lipsum[2]
    \section{Another section}
    \lipsum
\end{document}

答案1

尝试这个:

\documentclass{book}

\usepackage{titletoc}
\usepackage{lipsum}
\usepackage{tcolorbox}
\usepackage{picture}

\setcounter{secnumdepth}{4}
\setcounter{tocdepth}{3}
\begin{document}
    \tableofcontents
    \chapter{A chapter}
    \startcontents[chapters]
  \begin{picture}(0,0)
    \put(.4\linewidth,2.5cm){\begin{tcolorbox}[width=.5\linewidth]
               \printcontents[chapters]{}{1}{}
              \end{tcolorbox}}
  \end{picture}
    \section{Section}
    \lipsum[1]
    \section{Section 2}
    \lipsum
    \chapter{Second chapter}
    \startcontents[chapters]
    \printcontents[chapters]{}{1}{}
    \section{Section}
    \lipsum[2]
    \section{Another section}
    \lipsum
\end{document}

输出:

在此处输入图片描述

相关内容