带有图片/背景的目录设计

带有图片/背景的目录设计

我想在目录中放置一个左对齐的背景图像,就像这个例子一样,并将页码放在更靠近章节名称的位置:一个从中心向右对齐,另一个向左对齐。

我在这里的论坛上找到了一些东西,但这不是我想要的:

例子

...

我找到了这个解决方案:

使用背景图像格式化多页目录

但它并不是我想要的设计。

我需要帮助

答案1

解决方案:

$ 序言:

% remove header in table of contents
\addtocontents{toc}{\protect\thispagestyle{empty}}

$ 配置目录:

    \backgroundsetup{
    placement = center,
    contents = {\includegraphics[width=\paperwidth]{frame-contents.png}},
    scale = 1, % 15 is default for placement "center"
    angle = 0, % 60 is default for placement "center"
    opacity = 100,
    }

\begin{tabular}{cp{4.5cm}p{5cm}}
 &  & \renewcommand\contentsname{Sumário} % Rename 'Contents'
\small{\tableofcontents}
\clearpage
\ifodd\value{page}\else
  \thispagestyle{empty}
\fi\\
\end{tabular}

相关内容