我怎样才能使这个封面/标题页在我的 LaTeX 文件中发挥作用?

我怎样才能使这个封面/标题页在我的 LaTeX 文件中发挥作用?

我正在制作我的第一篇 LaTeX 排版论文。我计划打印这篇论文的两个版本(单面用于修改,双面用于最终提交)。

我想将我在文档第 6 页找到的这种精确格式纳入封面和标题页'Lapo F. Mori 撰写“使用 LaTeX 撰写论文”“”。

我已经尝试过了 -

``

\documentclass[a4paper,12pt,titlepage,oneside]{book}
 \usepackage[DIV=14,BCOR=2mm,headinclude=true,footinclude=false]{typearea}
 \usepackage{setspace}
 \setstretch{1.1}
 \KOMAoptions{DIV=last}

\makeatletter
\if@twoside
   \newlength{\myoffset}
   \setlength{\myoffset}{12mm}
   \addtolength{\hoffset}{\myoffset}
   \addtolength{\evensidemargin}{-2.0\myoffset}
\fi
\makeatother


\usepackage{babel}
\usepackage{csquotes}
\usepackage[T1]{fontenc}
\usepackage{charter} 
\usepackage{eso-pic}        
\usepackage{graphicx}
%\graphicspath{{images/}}   
\usepackage{xcolor} 

\definecolor{tcdblue}{RGB}{14,115,185} 
\definecolor{tcdgrey}{RGB}{83,86,90}

\begin{document}

\AddToShipoutPictureBG*{\includegraphics[width=\paperwidth]{logo1}}

\centering
\textbf{Firstname Surname}
\vspace{5cm}
\textbf{\LARGE{NAME of THESIS IN ALL CAPITAL LETTERS}}
\vspace{0.5cm}
\textbf{A Thesis in Doctor of Philosophy}
\vspace{11cm}
\textbf{Name of University}
\vspace{1cm}
Month 2019
\begin{titlepage}
\begin{center}
% \vspace*{1cm}
\includegraphics[width=0.2\textwidth]{logo1} \\

\textcolor{tcdgrey}{\textrm{\textbf{\textsc{Name of University}}}} \\
\textcolor{tcdgrey}{Name of University in Local Language} \\         
\textcolor{tcdblue}{Department/Faculty Name} \\

\hrulefill\par

\textrm{A dissertation submitted in partial fulfillment of the requirements for the degree of Doctor of Philosophy in Biochemistry \& Immunology}

\vspace{1.5cm}
NAME of THESIS IN ALL CAPITAL LETTERS 
\vspace{1.5cm}

Thesis/Dissertation by \\
\vspace{0.2cm} 
\textbf{Author Name}
\vspace{1.5cm}

\begin{flushleft}     
Examiners \\
\vspace{0.2cm}
Prof 1 Firstname SURNAME \dotfill \\
Prof 2 Firstname SURNAME \dotfill \\
\vspace{0.5cm}
Candidate \\
\vspace{0.2cm}
Firstname SURNAME     
\end{flushleft}
\vfill
\hrulefill\par
Academic Year 2019/2012 \\
Country \\
Date
\end{center}
\end{titlepage}
\end{document}

``

这是我得到的输出 -

封面

封面

我怎样才能使我的输出与链接 PDF 中的输出完全相似(同时实现我自己的字体,即 CharterBT 而不是 CMR)?我有彩色徽标,我希望它们以灰色水印样式显示(仅适用于封面背景)。我不确定如何实现链接 PDF 第 6 页上显示的代码。

我的论文的其余部分与序言中的代码一起正确显示(特别是当我在文档类中实现双面选项时)。我希望封面、标题页能够正确显示(即使选择了双面选项,标题页后面还有一张空白页),这样当它被送去打印时,它就能按预期显示出来。

这是我正在努力弄清楚的论文的最后部分之一。任何帮助都将不胜感激。

相关内容