\documentclass[a4paper,12pt]{report}
\usepackage{amssymb}
\usepackage{amsmath}
\usepackage{latexsym}
\usepackage{amsthm}
\usepackage{eucal}
\usepackage{eufrak}
\usepackage{graphicx}
\graphicspath{{Pictures/}}
\usepackage[square, numbers, comma, sort&compress]{natbib}
\title{\ttitle}
\linespread{1.375}
\graphicspath{ {images/} }
\usepackage[utf8]{inputenc}
\graphicspath{ {images/} }
\begin{document}
\centerline{ \textbf{Universit\`{a} degli studi di xxxx}}
\vspace{4cm}
\centerline{\textbf{Ph.D thesis}}
\vspace{2cm}
\centerline{ \textbf{XXVII CICLO}}
\vspace{2cm}
\bigskip
\centerline{ \textbf{Italy is a beautiful country Applications}}
\vspace{4cm}
\centerline{\textbf{NSA}}
\vspace{2cm}
\centerline{\textbf{Academic years : 2011-2014 }}
\newpage
\chapter*{Declaration}
This thesis has been submitted to the university of xxx in fullfilment of the
requirements for the Doctoral degree in Economics, Applied Mathematics and
Operational Research.
\chapter*{Dedication}
To my friends
\newpage
\chapter*{Acknowledgements}
\author{Author Name}
\date{Day Month Year}
\let\cleardoublepage\clearpage
\newpage
\tableofcontents
\newpage
\listoftables
\end{document}
我正在写博士论文,上面的封面就是这个。通常,正如您所看到的,整篇论文的字体大小为 12,但我需要帮助将标题“意大利是一个美丽的国家应用”的字体大小增加到 14。请问您能告诉我如何将标题的大小增加到 14?以及我的大学名称“Universit`{a} delgi studi di xxx?”的字体大小相同(14)。
进一步的问题:我如何删除页码?如您所见,它从第一页开始。我想从目录页(这里是第 5 页)开始编号(数字 1)。我想获取与目录相关的页面上的页码 1。谢谢
答案1
这使用titlepage
环境,这确实是这里的一个更好的选择。我已将其替换\centerline
为\centering
。由于您需要额外的内容\par
来获取字体大小,并且由于字体已更改了两行的大小,因此您可能需要在此处重新调整间距。
\thispagestyle{empty}
我在目录之前的章节前使用了。\pagenumbering{arabic}
从 1 开始编号。我使用\clearpage
而不是以\newpage
避免意外创建不需要的空白页。在某些情况下,不需要任何内容 - 无论如何,新章节都会从新页面开始。
我也使您的示例更加简洁,尽管它可以进一步减少。
\documentclass[a4paper,12pt]{report}
\title{\ttitle}
\linespread{1.375}
\usepackage[utf8]{inputenc}
\begin{document}
\begin{titlepage}
\centering\bfseries
\fontsize{14}{16}\selectfont
Universit\`{a} degli studi di xxxx
\normalsize
\vspace{4cm}
Ph.D thesis
\vspace{2cm}
XXVII CICLO
\vspace{2cm}
\bigskip\par
\fontsize{14pt}{16pt}\selectfont
Italy is a beautiful country Applications\par
\normalsize
\vspace{4cm}
NSA
\vspace{2cm}\par
Academic years : 2011-2014
\end{titlepage}
\chapter*{Declaration}\thispagestyle{empty}
This thesis has been submitted to the university of xxx in fulfilment of the
requirements for the Doctoral degree in Economics, Applied Mathematics and
Operational Research.
\chapter*{Dedication}\thispagestyle{empty}
To my friends
\chapter*{Acknowledgements}\thispagestyle{empty}
\author{Author Name}
\date{Day Month Year}
\let\cleardoublepage\clearpage
\clearpage
\pagenumbering{arabic}
\tableofcontents
\clearpage
\listoftables
\end{document}