生成章节标题

生成章节标题

我正在尝试按照以下要求准备论文中的章节

  1. 章节编号(阿拉伯语)应以 Candara 27 pt 斜体显示在页面顶部右对齐位置,标题使用首字母大写。章节编号和章节标题之间不应留有垂直间隙。章节标题和第一段之间应留有 5 行(11pt 粗细)的间隙。

  2. 章节可分为节、小节和小节,以分别介绍不同的概念。节和小节可使用十进制编号,例如,第 2 章第二节的编号为 2.2,第 2 章第三节的第四小节的编号为 2.3.4。小节的编号应为“(a)”、“(b)”……在此第三级之后,不得再进行小节划分。章节、节和小节应包含在正文中,页码向右对齐;内部小节不应包含在正文中。

  3. 章节编号应从 1 开始。

我准备了一个main.tex文件,将所有章节逐一包含在内。我的部分代码如下:

\documentclass[twoside, 11pt]{book}
\usepackage[top = 1.25cm, bottom = 1.25cm, left = 3.5cm, right = 1.25cm]{geometry}
\pagestyle{plain}
\usepackage{palatino, amsmath, amssymb, amsthm, bookmark}
\usepackage{graphicx}
\graphicspath{{figures/}}

\begin{document}

\frontmatter
    \include{frontpage/frontpage}

\tableofcontents
\include{toc}

\pagenumbering{arabic}\setcounter{page}{1}

\mainmatter
    \include{chapter2/chapter2}

\backmatter
\pagenumbering{roman}\setcounter{page}{1}
\bibliographystyle{plain}
\bibliography{library}
\end{document} 

第 2 章开头如下:

\chapter{Review of Literature} 

\section{Preliminaries of Graph theory}

    A graph $G = (V(G), E(G))$ is a

我面临以下问题。

  1. 它不会生成标题上方的章节编号。

  2. 章节编号从 0 开始。

你能帮助我修复这些问题吗?

答案1

这是初稿。我不得不Candara用另一种字体替换它,因为没有可以使用它的包pdflatex(但是,它可以与fontspec和一起 使用xe/lualatex):

\documentclass[twoside, 11pt]{book}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[vmargin= 1.25cm, left = 3.5cm, right = 1.25cm, showframe]{geometry}
\usepackage{titlecaps}
\setcounter{secnumdepth} {3}
\pagestyle{plain}
\usepackage{amsmath, amsthm, bookmark}%
\usepackage{newpxtext, newpxmath}
\usepackage{graphicx}
\graphicspath{{figures/}}
%
\usepackage[explicit]{titlesec} 
\usepackage{titletoc}
\titleformat{\chapter}[block]{\fontfamily{verdana}\fontsize{27pt}{34pt}\selectfont\filleft}{\thechapter.}{0.5em}{#1}
\titleformat{name=\chapter, numberless}[block]{\fontfamily{verdana}\fontsize{27pt}{34pt}\selectfont\filleft}{}{0em}{#1}
\titlespacing{\chapter}{0pt}{12pt plus 2pt minus 2pt}{36pt}

\titleformat{\section}{\fontfamily{verdana}\Large}{\thesection}{0.5em}{#1}
\titleformat{name=\section, numberless}{\fontfamily{verdana}\Large}{}{0em}{\addcontentsline{toc}{section}{#1}#1}

\titleformat{\subsection}{\fontfamily{verdana}\large}{\thesubsection}{0.5em}{#1}
 \titleformat{name=\subsection, numberless}{\fontfamily{verdana}\large}{}{0em}{\addcontentsline{toc}{subsection}{#1}#1}

 \titleformat{\subsubsection}{\fontfamily{verdana}\large}{\thesubsubsection}{0.5em}{#1}
\renewcommand\thesubsubsection{(\alph{subsubsection})}

\titlecontents{chapter} [0em] %
{\bigskip\fontfamily{verdana}\selectfont \bfseries}
{\thecontentslabel\quad}%\thecontentslabel
{}% numberless
{\hfill\contentspage}[\smallskip] %

\titlecontents{section} [1.667em] %
{\medskip\fontfamily{verdana}\selectfont}
{\thecontentslabel\enspace}%\thecontentslabel
{\hspace*{2.12em}}%numberless
{\titlerule*[1pc]{.}\contentspage}[\smallskip]%

\titlecontents{subsection} [3.76em] %
{\medskip\fontfamily{verdana}\selectfont}
{\thecontentslabel\enspace}%\thecontentslabel
{\hspace*{3.12em}}%numberless
{\titlerule*[1pc]{.}\contentspage}[\smallskip]%

\begin{document}

\tableofcontents

\chapter{Review of Literature}

\section{Preliminaries of Graph theory}

    A graph $G = (V(G), E(G))$ is a

\section*{An unnumbered section}

\subsection{Different Kinds of Graphs}

\subsection*{Other Kinds of Graphs}

\subsubsection{A test subsub}

\end{document} 

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

相关内容