文章类别中的附录标题更改

文章类别中的附录标题更改

我确实搜索了大约 20-30 分钟,但没有找到我想要的东西。这很简单。

我正在使用文章类,我希望这样我的附录的标题

附录 A:{插入标题}

现在我正在使用

 \documentclass[a4,12pt]{article}
 \usepackage[titletoc,toc,title]{appendix}
 \begin{document}

 <main body of text>

 \begin{appendices}
 \section{Magnetic flux tubes}
 Bunch of text
 \end{appendices}

但我一直将其作为附录标题。

A.磁通管。

我怎样才能让它说出附录 A:磁通管。

理想情况下,我想改变附录标题的大小。

编辑:我的问题是,我的文件序言中有这个

\usepackage{titlesec}
\usepackage{secdot}\sectiondot{subsection}\sectiondot{subsubsection}


%\renewcommand{\thesubsection}{\normalfont\arabic{section}.\arabic{subsection}}
\titleformat{\section}{\bf}{\thesection .}{0.5em}{}
\titleformat{\subsection}{\normalfont \it}{\thesubsection .}{0.5em}{}
\titleformat{\subsubsection}{\normalfont \it}{\thesubsubsection .}{0.6em}{}

我使用它来让文档标题看起来符合我的要求,但不幸的是这些新命令会传到附录部分。有没有办法只针对附录撤消标题格式?

答案1

您可以\titleformat在附录之前再次使用以获得所需的格式:

\documentclass{article}
\usepackage{titlesec}
\usepackage[titletoc,toc,title]{appendix}

\titleformat{\section}{\bfseries}{\thesection.}{0.5em}{}
\titleformat{\subsection}{\normalfont\itshape}{\thesubsection.}{0.5em}{}
\titleformat{\subsubsection}{\normalfont\itshape}{\thesubsubsection.}{0.6em}{}

\begin{document}

\section{A regular section}

\titleformat{\section}{\large\bfseries}{\appendixname~\thesection .}{0.5em}{}
\begin{appendices}
\section{Magnetic flux tubes}
Bunch of text
\end{appendices}

\end{document}

在此处输入图片描述

要恢复各节的原始格式,但要在数字后添加单词“附录”和点,您需要

\titleformat{\section}{\normalfont\Large\bfseries}{\appendixname~\thesection.}{1em}{}

两个字母的字体命令(\it,\bf和类似命令)是旧的 TeX 命令,在现代 LaTeX 文档中不应再使用;请改用\itshape, \bfseries

答案2

我认为这应该可以解决问题。我的主代码如下所示:

\documentclass[10pt,twoside,a4paper]{report}
\usepackage[pdftex]{graphicx}

\begin{document}

\include{Introduction} 

\include{Theory}

\renewcommand{\chaptername}{Appendix} % To change title from chapter to Appendix
\appendix
\renewcommand{\thepage}{\thechapter.\arabic{page}}  % This to change the page numebering format for the Appendices
\setcounter{page}{1}
\include{FluxCalc}

\include{ForceFieldCalc}

\end{document}

我习惯于\include{}为我的章节和附录调用单独的 .tex 文件。我更喜欢这种方式,因为它使我的主要代码看起来更加整洁。这里我调用了 4 个 .tex 文件 - 简介、理论、FluxCalc(本例中为附录 A)和 ForceFieldCalc(本例中为附录 B)。输出的 pdf 有 4 页,如下图所示。

第 1 页

第2页

第 A.1 页

第 B.1 页

相关内容