\chapter 和 \section 改变文本的外观

\chapter 和 \section 改变文本的外观

我想为我的书创建一个目录。因此,我使用 \chapter 和 \section 命令将一些章节和节放入文本中。这会导致文本的显示发生变化。有没有办法不改变原始格式并同时使用目录?

编辑:我正在寻找两件事:1. 在文本和内容中使用不同的章节名称。2. \chapter 和 \section 命令不会更改文本的原始形式。只需保持与我发布的第一个代码中显示的完全相同即可。

\documentclass[a4paper,11pt]{book}
\usepackage{tcolorbox}

\begin{document}
\tableofcontents

\begin{center}
\begin{Large}
\begin{tcolorbox}[colbacktitle=red,colback=white!80!black , text width=10cm, title=\begin{center}
Chapter 1
\end{center}] \begin{LARGE}\begin{center}
\textbf{ Section 1.1 }
\end{center}
\end{LARGE}\end{tcolorbox}
\end{Large}
\end{center}


\begin{center}
\begin{Large}
\begin{tcolorbox}[colbacktitle=red,colback=white!80!black , text width=10cm, title=\begin{center}   
\chapter{Chapter 1}
\end{center}] \begin{LARGE}\begin{center}
\section{\textbf{ Section 1.1 }}
\end{center}
\end{LARGE}\end{tcolorbox}
\end{Large}
\end{center}

\end{document}

答案1

根据讨论:

实际上\addcontentsline是解决主要问题和tocloft其余问题的解决方案!

相关内容