制作目录和页码并放在适当的位置

制作目录和页码并放在适当的位置

我正在写论文。我有两个问题。

  1. 内容应该和照片上显示的一样。我标记了遇到困难的地方。

a) 凡事不能大胆。

b) “内容”必须是

  • 在页面中间
  • 距顶部 3 厘米
  • 不大胆
  • 用不同的语言编写的只是说添加了 ABCDEF 图像描述。

c) 数字上应写上“页数”。

d) “章节”与“数字”之间必须有一些要点。

e) 章节之前的数字后必须有一个点,例如在“1”之后:“1. A.................33”

f)\frontmatter像这样的材料必须用不同的语言来表示,就像说 A、B \listoffigures\listoftables

  1. 论文写作规则之一,“页面布局”应该如图所示。没有头也没有脚。将使用 A4 纸(210mm x 297mm)。正文将放在矩形内。除了放置页码外,其余我都使用以下命令完成。
\documentclass[12pt,twoside,openright]{book}
\usepackage{geometry}
\geometry{
  a4paper,
  total={210mm,297mm},
  left=27.5mm,
  top=0mm, right=27.5mm, bottom=20mm}

但我没有把页码放在正确的位置。

数字

答案1

这里的一般规则是,你一次只能问一个问题,但你问了七个!除了你的\geometry规范之外,你没有提供 MWE 来显示你已经尝试过什么,这会导致警告,我认为你没有尝试消除这些警告。

使用该tocloft包进行 ToC(LoF 和 LoT)布局。

% thesistocprob.tex  SE 576459

%%% this is your MWE

\documentclass[12pt,twoside,openright]{book}
\usepackage{geometry}
\geometry{
      a4paper,
      total={210mm,297mm},
      left=27.5mm,
      top=0mm, right=27.5mm, bottom=20mm}

%%%% and so ends your MWE (which gives warnings about your geometry specification)

\usepackage{tocloft}
% change the tableofcontents title, new name, center and Pages
\renewcommand{\contentsname}{ABCDEF}
\renewcommand{\cfttoctitlefont}{\hfill\Large} 
\renewcommand{\cftaftertoctitle}{\hfill\mbox{}\\ \mbox{}\hfill Pages}
% Don't bold chapter titles
\renewcommand{\cftchapfont}{}
% add a dot after chapter number
\renewcommand{\cftchapaftersnum}{.}
% use a dotted leader for chapter entries
\renewcommand{\cftchapdotsep}{\cftdotsep}

\begin{document}

\tableofcontents

\listoffigures

\chapter{First}
\section{First section}

\begin{figure}
\centering
ILLUSTRATION
\caption{An illustration}
\end{figure}

\end{document}

我不使用该geometry包,因此修复文档布局由您决定。该类book默认假定twoside,openright您已这样做,因此请删除这些内容\documentclass[...]{book}

在我的 MWE 中,我展示了如何让 ToC 看起来像我认为你想要的那样。我让你自己调整你的 LoF 和 LoT。我必须承认,我有一种感觉,你是在请别人为你写论文。--- GOM

相关内容