我一直在想办法修复我的论文标题页,但这让我抓狂!!我需要生成一个完全像这样的输出(抱歉分割了整个图片):
第一个黑框中应显示大学徽标,第二个黑框中应显示大学名称。然后在“candidato”下方显示我的名字和学生编号,在“relatore”下方显示我老师的名字。我正在 report-ambient 中工作。任何帮助都非常好!!
\begin{titlepage}
\begin{center}
\includegraphics[width=0.42 \textwidth] {logo}\\
\vspace{7 em}
{ \text{University}}\\
\vspace{1 em}
{ \text{Faculty}}\\
{ \text{type of degree}}\\
\vspace{4em}
{\text{Thesis type}}\\
\vspace{4em}
{\huge \textbf{title}}\\
\vspace{4 em}
{\text{Candidate:}}\\
{\large\textbf{Myname}}\\
{\text{mynumber}}\\ \vspace{4 em}
{\text{teachername:}}\\
{\large\textbf{\textit{Prof.} name}}\\
\vspace{4em}
{\text{year}}\\
{\text{date}}\\
\end{center}
这与上面的完全不同。它必须与上面的完全一样:有两条线和相同的架构。我宁愿保留报告环境以避免其余部分出现其他问题。我也尝试了该frontespizio
程序包,但它不起作用。
答案1
有了这个包,frontespizio
一切都变得非常简单。
\documentclass[a4paper]{book}
\usepackage{frontespizio}
\begin{document}
\begin{frontespizio}
\Universita{Roccacannuccia}
\Facolta{Scienze Matematiche, Fisiche e Naturali}
\Corso[Laurea triennale]{Fisica}
\Titolo{La fase di Berry}
\Candidato[12345]{C. Andidato}
\Relatore{Prof.\ R. E. Latore}
\Annoaccademico{2014--2015}
\Logo{../duck}
\end{frontespizio}
\frontmatter
\tableofcontents
\mainmatter
\chapter{Introduzione}
Eccetera
\end{document}
如果此文档名为fasediberry.tex
,则在其上运行 LaTeX 还将生成一个名为 的文件fasediberry-frn.tex
。在此文件上运行 LaTeX,然后在主文档上重新运行 LaTeX。
没有必要fasediberry-frn.tex
每次都运行 LaTeX,只需在文件尚未创建或frontespizio
环境内容已发生变化时运行即可。
如果你知道并使用arara
,该指令
arara: frontespizio
将为您完成所有工作。
答案2
我使用了lualatex
,但您可以将其更改为pdflatex
( {fontspec}
-> [T1]{fontenc}
。标题页有另一种布局:
\documentclass[a4paper]{book}
\usepackage{fontspec}
\usepackage{libertine}
\begin{document}
\begin{titlepage}
\vspace*{-4cm}\enlargethispage{3cm}
\hspace*{-2cm}\begin{minipage}[c][\dimexpr\textheight+6cm]{17cm}\centering\sffamily
\includegraphics[width=1cm]{tiger}
\large\textbf{Università degli Sudi Roccacannuccia}
\rule{\textwidth}{0.5pt}
\MakeUppercase{Facolta Scienze Matematiche, Fisiche e Naturali}
Corso di Laurea triennale in Fisica
\vfill\huge\bfseries La fase di Berry
\vfill\normalsize\normalfont
\begin{tabular}[t]{@{}l}
Candidato:\\
C. Andidato\\
Matricola 12345
\end{tabular}
\hfill%
\begin{tabular}[t]{r@{}}
Relatore:\\
Prof. R.\,E. Latore
\end{tabular}
\vfill
\rule{\textwidth}{0.5pt}
Anno Accademico 2014--2015
\end{minipage}
\end{titlepage}
\frontmatter
\tableofcontents
\mainmatter
\chapter{Introduzione}
Eccetera
\end{document}