如何使用回忆录类将章节编号添加到章节标题中?

如何使用回忆录类将章节编号添加到章节标题中?

我想将章​​节编号添加到章节名称中。

拥有这样的东西

我使用这些命令删除了单词 chapter 和数字:

\renewcommand\printchaptername{\chapnamefont} 
\renewcommand\printchapternum{\chapnumfont}

[编辑]这是完整的代码:

\documentclass[11pt,a4paper,oldfontcommands]{memoir}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{microtype}
\usepackage[dvips]{graphicx}
\usepackage{xcolor}
\usepackage{times}

\usepackage[frenchb]{babel} %français

\usepackage[
breaklinks=true,colorlinks=true,
%linkcolor=blue,urlcolor=blue,citecolor=blue,% PDF VIEW
linkcolor=black,urlcolor=black,citecolor=black,% PRINT
bookmarks=true,bookmarksopenlevel=2]{hyperref}

\usepackage{geometry}
% PDF VIEW
% \geometry{total={210mm,297mm},
% left=25mm,right=25mm,%
% bindingoffset=0mm, top=25mm,bottom=25mm}
% PRINT
\geometry{total={210mm,297mm},
left=20mm,right=20mm,
bindingoffset=10mm, top=25mm,bottom=25mm}

\OnehalfSpacing
%\linespread{1.3}

%%% CHAPTER'S STYLE
\chapterstyle{bianchi}

%%% STYLE OF SECTIONS, SUBSECTIONS, AND SUBSUBSECTIONS


\renewcommand\printchaptername{\chapnamefont}
\renewcommand\printchapternum{\chapnumfont}

%%% STYLE OF PAGES NUMBERING
%\pagestyle{companion}\nouppercaseheads 
%\pagestyle{headings}
%\pagestyle{Ruled}
\pagestyle{plain}
\makepagestyle{plain}
\makeevenfoot{plain}{\thepage}{}{}
\makeoddfoot{plain}{}{}{\thepage}
% Possibilité de choisir ou se trouve le numéro de page, sur les pages pairs et impairs
\makeevenhead{plain}{}{}{}
\makeoddhead{plain}{}{}{}


\maxsecnumdepth{subsection} % chapters, sections, and subsections are numbered
\maxtocdepth{subsection} % chapters, sections, and subsections are in the Table of Contents


%%%---%%%---%%%---%%%---%%%---%%%---%%%---%%%---%%%---%%%---%%%---%%%---%%%
\usepackage[nosectionbib]{apacite}
\begin{document}

%%%---%%%---%%%---%%%---%%%---%%%---%%%---%%%---%%%---%%%---%%%---%%%---%%%
%   TITLEPAGE
%
%   due to variety of titlepage schemes it is probably better to make titlepage manually
%
%%%---%%%---%%%---%%%---%%%---%%%---%%%---%%%---%%%---%%%---%%%---%%%---%%%
\thispagestyle{empty}

{%%%
\sffamily
\centering
\large

~\vspace{\fill}

{\huge 
 \textbf{Thesis title: may be long or short}
}

\vspace{2.5cm}

{\Large
Mathieu
}

\vspace{3.5cm}
\textit{
Mémoire présenté pour l'obtention du titre de \\
\emph{blablablabalbalbalab}} \\
~\\
Universitéy liege \\
Faculté des sciences\\
Département


\vspace{3.5cm}

Promoteur: Prof. Joe Doe\\

Lecteurs : ...

\vspace{\fill}

Année académique 20XX - 20XX

%%%
}%%%

\cleardoublepage
%%%---%%%---%%%---%%%---%%%---%%%---%%%---%%%---%%%---%%%---%%%---%%%---%%%
%%%---%%%---%%%---%%%---%%%---%%%---%%%---%%%---%%%---%%%---%%%---%%%---%%%

\tableofcontents*

\clearpage

%%%---%%%---%%%---%%%---%%%---%%%---%%%---%%%---%%%---%%%---%%%---%%%---%%%
%%%---%%%---%%%---%%%---%%%---%%%---%%%---%%%---%%%---%%%---%%%---%%%---%%%

\chapter{Introduction}

\section{First section}

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

Citation of Einstein paper~\cite{Alshehhi2017}.

\section{Second section}
Lorem ipsum.

Lorem ipsum.

\subsection{First subsection}

Lorem ipsum.

\subsection{Second subsection}

Lorem ipsum.

\chapter{Results}

\section{Third section}
Lorem ipsum.

\section{Fourth section}
Lorem ipsum.

\bibliographystyle{apacite}
\bibliography{sample}

\appendix

\chapter{Annexes}*
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod.


\end{document}

谢谢

答案1

\documentclass...如果您能提供从到 的完整 MWE,那将会有所帮助\end{document}。看起来您可能已经使用了比安奇chapterstyle 由memoir为您的第一个示例提供的。memoir该类提供韦尔维尔chapterstyle 接近您想要的示例(但没有任何颜色);阅读第 6 章文件部门在手册中(> texdoc memoir)。检查代码memoir.cls(它将在您的计算机上的某个地方 --- 尝试> kpsewich memoir.cls找出在哪里)以了解定义的编码韦尔维尔 风格。如果你不喜欢,可以创建自己的风格。

答案2

以下简短的修改应该足够了:

在此处输入图片描述

\documentclass{memoir}

\usepackage{lipsum}

\chapterstyle{bianchi}

\renewcommand{\printchaptername}[3]{\printchapternonum}
\renewcommand*{\printchaptertitle}[1]{%
  \hrule\vskip\onelineskip \centering \chaptitlefont\textbf{\thechapter\quad#1}\par}

\maxsecnumdepth{subsection} % chapters, sections, and subsections are numbered
\maxtocdepth{subsection} % chapters, sections, and subsections are in the Table of Contents

\begin{document}

\tableofcontents*

\chapter{Introduction}

\section{First section}\lipsum[1]
\section{Second section}\lipsum[2]
\subsection{First subsection}\lipsum[3]
\subsection{Second subsection}\lipsum[4]

\chapter{Results}
\section{Third section}\lipsum[5]
\section{Fourth section}\lipsum[6]

\appendix

\chapter*{Annexes}
\lipsum[5-10]

\end{document}

这个想法是使\printchaptername等同于 ,\printchapternonum它被 调用\chapter*;重新定义吞噬了章节样式\printchaptername定义中后面的 3 个参数bianchi,并且只调用\printchapternonum。此外,我们在打印实际标题之前将其更改\printchaptertitle为 include 。\thechapter\quad

相关内容