目录中的“第 1 章”及其名称“实用哲学”均采用大写字母。

目录中的“第 1 章”及其名称“实用哲学”均采用大写字母。

我找不到任何地方来澄清这一点或给我正确的指导。在章节和目录中,开头都是“第 1 章”,需要是“第 1 章”,后面要有两个空格。然后我的标题全部大写,这是自动发生的。我在目录中或章节本身中找不到目录命令在哪里获取“第 1 章”。

我对如何更改样式文件了解不多,这些样式文件是我从大学获得的。但它是为 EE 设计的,而我是人文科学专业的学生,​​正在尝试使其适用于 Turabian 样式、芝加哥样式。

这是文件的相关部分utdallas.sty。它包含除章节本身之外的所有内容的条目,但由于需要,因此添加了附录等addcontentsline

\def\appendixname{APPENDIX}

\def\appendix{\clearpage
    \typeout{APPENDIX.}
    \thispagestyle{empty}
    \vspace*{\fill}
    \centerline{\normalsize APPENDIX}
    \vspace*{\fill}
    \nopage@addcontentsline{toc}{chapter}{APPENDIX}
    \setcounter{chapter}{0}
    \setcounter{section}{0}
    \def\@chapapp{\appendixname}
    \chap@or@app=2
    \def\thechapter{\Alph{chapter}}}

\def\appendices{\clearpage
    \typeout{APPENDICES.}
    \thispagestyle{empty}
    \vspace*{\fill}
    \centerline{\normalsize APPENDICES}
    \vspace*{\fill}
    \nopage@addcontentsline{toc}{chapter}{APPENDICES}
    \setcounter{chapter}{0}
    \setcounter{section}{0}
    \def\@chapapp{\appendixname}
    \chap@or@app=2
    \def\thechapter{\Alph{chapter}}}

\def\@chapter[#1]#2{\ifnum \c@secnumdepth >\m@ne
    \refstepcounter{chapter}
    \typeout{\@chapapp\space\thechapter.}
    \addcontentsline{toc}{chapter}{\@chapapp\space\thechapter.\hspace*{1em}\uppercase{#1}}\else
    \addcontentsline{toc}{chapter}{\uppercase{CHAPTER}}\fi
    \chaptermark{#1}
    \addtocontents{lof}{\protect\addvspace{10pt}}
    \addtocontents{lot}{\protect\addvspace{10pt}}
    \@makechapterhead{#2} \@afterheading
    \ifnum\chap@or@app=1\ifnum\value{chapter}=1     % if Chapter 1
        \markboth{}{}\pagestyle{myheadings}
        \pagenumbering{arabic}\fi\fi
    \thispagestyle{plain}}

\def\@schapter#1{\thispagestyle{plain}
    \@makeschapterhead{#1} \@afterheading}

%%% Stolen from latex.tex (to unindent the first para of (sub)sections)
\def\@startsection#1#2#3#4#5#6{\if@noskipsec \leavevmode \fi
   \par \@tempskipa #4\relax
   \@afterindentfalse
   \if@nobreak \everypar{}
   \else\addpenalty{\@secpenalty}\addvspace{\@tempskipa}\fi
   \@ifstar{\@ssect{#3}{#4}{#5}{#6}}%
           {\@dblarg{\@sect{#1}{#2}{#3}{#4}{#5}{#6}}}}

\def\section{\@startsection{section}{1}{\z@}%
    {4.6ex plus -1ex minus -.2ex}{.3ex plus .2ex}{\normalsize\it}} % Moh
\def\subsection{\@startsection{subsection}{2}{\z@}%
    {3.9ex plus -1ex minus -.2ex}{.2ex plus .2ex}{\normalsize\it}} % Moh
\def\subsubsection{\@startsection{subsubsection}{3}{\z@}%
    {3.25ex plus -1ex minus -.2ex}{.1ex plus .2ex}{\normalsize\it}}

\def\thebibliography#1{\chapter*{REFERENCES}
    \addcontentsline{toc}{chapter}{REFERENCES}

答案1

我会尝试插入命令

\renewcommand\chaptername{CHAPTER}

在该文件的序言中。

相关内容