章节标题和目录中显示的章节符号

章节标题和目录中显示的章节符号

我开始编辑书籍文档类,现在我们想从目录中删除章节符号和章节标题。我不明白为什么它们会出现在那里。无论如何,如何才能删除它们?

我认为以下内容是相关的。

从样式文件中:

\renewcommand{\thesection}{\textsection\thechapter\alph{section}}
\renewcommand{\thesubsection}{\thesection(\roman{subsection})}

使用的软件包:

\usepackage{fancyhdr}
\renewcommand{\chaptermark}[1]{\markboth{#1}{}}
\renewcommand{\sectionmark}[1]{\markright{\thesection\ #1}}
\usepackage{geometry}
\usepackage{bookman}
\usepackage{parskip}
\usepackage{array}
\usepackage{sectsty}
\usepackage{ifthen}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{amsthm}
\usepackage{chngcntr}
\usepackage{graphicx}
\usepackage{alltt}
\usepackage{url}

答案1

\renewcommand{\thesection}{\textsection\thechapter\alph{section}} 

\textsection在数字前面放置一个分节标记 ( )

相关内容