如何用符号标记章节、部分、备注等

如何用符号标记章节、部分、备注等

我正在报告课上写一篇论文,我希望有类似以下格式的东西。

目录

第一部分:简介

第 1 章:一些历史

第 2 章:一些文献

第 3 章:更多无聊的东西

第 $\spadesuit$ 章:主要结果的陈述

第二部分:重要内容

第 4 章:定理 $\spadesuit$.1 的证明

等等等等

是否有人知道如何创建一个章节,其中的各个部分通过符号进行标记,例如 $\spadesuit$ 符号,因此章节 $\spadesuit$ 包含章节 $\spadesuit$.1、章节 $\spadesuit$.2 等,以及定理 $\spadesuit$.1 等,并让该章节在目录中以这种方式显示?

非常感谢!A.

答案1

您可以重新定义特殊章节中章节计数器的打印方式(即宏\thechapter),然后将其恢复。请注意,计数器本身仍然是数字,因此如果您想在上一个正常章节之后继续编号,则需要将章节计数器减一。

梅威瑟:

\documentclass{report}
\usepackage{amsthm}
\newtheorem{theorem}{Theorem}[chapter]
\begin{document}
\tableofcontents
\part{Introduction}
\chapter{Some history}
\chapter{Some literature}
\chapter{Some more waffly stuff}

\let\theoldchapter\thechapter
\def\thechapter{$\spadesuit$}
\chapter{Statement of the main results}
\section{Result section}
\begin{theorem}
Waffles are tasty
\label{thm:waffles}
\end{theorem}
\let\thechapter\theoldchapter
\addtocounter{chapter}{-1}

\part{The meaty stuff}
\chapter{Proof of Theorem \ref{thm:waffles}}
\end{document}

结果:

在此处输入图片描述 在此处输入图片描述

相关内容