私は以下の要件に従って論文の章を準備しようとしています
章番号(アラビア語)は、ページの上部に、Candara 27 pt の斜体で右揃えで表示され、タイトルは最初の文字を大文字で使用します。章番号と章タイトルの間には、垂直方向の隙間を空けないでください。章の見出しと最初の段落の間には、5 行(11 pt の太さ)の隙間を空けてください。
章は、異なる概念を別々に提示するために、セクション、サブセクション、サブサブセクションに分割できます。セクションとサブセクションには、小数点を使用して番号を付けることができます。たとえば、第 2 章の 2 番目のセクションには 2.2、第 2 章の第 3 セクションの 4 番目のサブセクションには 2.3.4 を使用します。サブサブセクションには、「(a)」、「(b)」、... のように番号を付けます。この 3 番目のレベルを超えるサブセクションは作成しません。章、セクション、サブセクションは、ページ番号を右詰めにして目次に含めます。内側のサブセクションは目次に含めません。
章番号は 1 から始めます。
すべての章を 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
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}