我正在嘗試按照以下要求準備論文中的章節
章節編號(阿拉伯文)應以 Candara 27 pt 斜體顯示在頁面頂部,右對齊,標題使用首字母大寫。章節編號和章節標題之間不得留有垂直間隙。章節標題和第一段之間應使用 5 行(11 磅粗)的間隙。
一章可以分為節、小節和子小節,以便分別呈現不同的概念。章節和小節可以使用十進制編號,例如,第 2 章第 2 節為 2.2,第 2 章第 3 節第 4 小節為 2.3.4。 ……在第三級之後不得再進行進一步的細分。內容中應包含章、節和小節,頁碼向右對齊;內部小節不應包含在內容中。
章節編號應從 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
我面臨以下問題。
它不會產生標題上方的章節號。
章節編號從 0 開始。
你能幫我相應地修復它們嗎?
答案1
這是初稿。我不得不Candara
用另一種字體替換,因為沒有可以使用它的包pdflatex
(但是,它可以與fontspec
and 一起使用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}