将目录中的前言标题和页码格式化为单倍行距和罗马字体

将目录中的前言标题和页码格式化为单倍行距和罗马字体

我想要实现以下目标(忽略文物,它来自大学论文风格的参考),

在此处输入图片描述

我有以下 MWE,

\documentclass[12pt, a4paper, oneside, parskip=full]{memoir}

\setulmarginsandblock{2.5cm}{3cm}{*} % Upper-Lower margins
\setlrmarginsandblock{3.8cm}{2.5cm}{*} % Left-Right margins
\checkandfixthelayout

%******************************
%      Table of con../fig../tab..
%*************************
\renewcommand{\contentsname}{TABLE OF CONTENTS}
\renewcommand{\listfigurename}{LIST OF FIGURES}
\renewcommand{\listtablename}{LIST OF TABLES}
\renewcommand{\printtoctitle}[1]{\centering\Large\bfseries #1}
\renewcommand{\printloftitle}[1]{\centering\Large\bfseries #1}
\renewcommand{\printlottitle}[1]{\centering\Large\bfseries #1}
\renewcommand{\chapternumberline}[1]{\MakeTextUppercase{\chaptername\ 
\numtoName{#1}: }}

\setcounter{tocdepth}{3}
\renewcommand\cftchaptername{\chaptername~}
\renewcommand{\cftchapterdotsep}{\cftdotsep}% Chapters should use dots in ToC
\usepackage{times} % Use Times font

%******************************
%      Spacing
%*************************
\usepackage{parskip}
\setlength{\parindent}{1.2cm} % Paragraph indent
\frenchspacing % Use single space after end of sentence

%******************************
%      Others
%*************************
\usepackage{pdfpages}
\usepackage{lipsum}

\begin{document}
%******************************
\frontmatter
%*************************
\includepdf[addtotoc={1,chapter,1,First Page,First Page}]{SamplePage.pdf}
\includepdf[addtotoc={1,chapter,1,Second Page,Second Page}]{SamplePage.pdf}
\includepdf[addtotoc={1,chapter,1,Third Page,Third Page}]{SamplePage.pdf}

\tableofcontents*
\listoftables
\listoffigures

%******************************
\mainmatter
%*************************
\DoubleSpacing
\chapter{Introduction}
\lipsum[4-5]

%******************************
\backmatter
%*************************

\end{document}

代码如下SamplePage.tex

\documentclass{article}
\title{Sample Page}
\usepackage{lipsum}
\begin{document}
\maketitle
\lipsum[4-5]
\thispagestyle{empty}
\end{document}

到目前为止,我已经得到了以下内容,

我的输出

我已经读过了自定义前言和后文章节标题的目录外观但我不认为它适用于此,因为我正在使用memoir

我的问题:

  1. 如何使前言标题和相应的数字变成罗马字体(非粗体)?并且它们之间有尾随点?
  2. 如何才能使目录中的前言条目之间保持单倍行距?
  3. 我怎样才能在目录中有“图表列表”和“表格列表”,但在\title{}页面上却全是大写字母?
  4. 我怎样才能使章节标题及其标题全部大写?
  5. 并且使章节和所有节、小节等在其各自的页码后带有尾随点?

相关内容