次のように、章のすぐ横にコンテキストのミニ テーブルを配置したいと思います。
互換性の理由から、tocはtitletoc
ここで提案されているように作成する必要があります。答えMWE のはtcolorbox
必須ではありません。
\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}
出力: