我正在为我的论文工作学习 LateX,并且已经使用以下代码实现了它的前端框架:
%%%% Frontespizio Tesi
\documentclass[a4paper,titlepage,twoside]{book}
\usepackage[swapnames]{frontespizio}
\begin{document}
\begin{frontespizio}
%\begin{Preambolo*}
%\usepackage{fourier}
%\newcommand{\VOF}{\textsc{vof}}
%\end{Preambolo*}
\Universita{della Campania Luigi Vanvitelli
SCUOLA POLITECNICA E DELLE SCIENZE DI BASE}
\Logo[2cm]{Logo-Uni-Vanvitelli.png}
\Dipartimento{Ingegneria Civile Industiale e dell'Informazione \rule{\textwidth}{0.4pt} \par Ingegneria dell'Informazione}
\Corso[Laurea Magistrale]{Ingegneria Informatica}
\Titoletto{Tesi di laurea Magistrale}
\Titolo{Object Tracking and Detection
}\
\Candidato[A18000132]{Michele~Belladonna}
\Relatore{Ch.mo Prof.~Palmieri Francesco A.N.}
%\NRelatore{Coordinatore}{}
%\Correlatore{Ch.mo Prof.~Adalberto Orsatti}
%\NCorrelatore{Supervisore della ricerca}{}
\Annoaccademico{2017-2018}
\end{frontespizio}
...
\end{document}
得出的结果为:
实际上,正如我的大学所建议的,我想要这样的东西:
这可行吗?我该怎么做?谢谢。
答案1
准备以下文件frontispiece.tex
并使用 XeLaTeX 或 LuaLaTeX 进行编译。根据需要调整长度。
\documentclass{article}
\usepackage[
a4paper,
top=2cm,
left=5cm,
right=2cm,
bottom=2cm,
]{geometry}
\usepackage{graphicx}
\usepackage[export]{adjustbox}
\usepackage{fontspec}
\newfontfamily{\baskerville}{Baskervaldx}
\newfontfamily{\titillium}{DejaVu Sans} % what's Titillium?
\setlength{\parindent}{0pt}
\pagestyle{empty}
\begin{document}
\baskerville
\raggedright
\makebox[\textwidth][s]{%
\makebox[0pt][r]{%
\includegraphics[height=2cm,width=2cm,valign=t]{example-image}%
}
\small
\begin{tabular}[t]{@{}l@{}}
Universit\`a\\
degli Studi\\
della Campania\\
\itshape Luigi Vanvitelli
\end{tabular}\hfill
\begin{tabular}[t]{@{}l@{}}
Scuola Politecnica\\
e delle Scienze di Base
\end{tabular}\qquad
\begin{tabular}[t]{@{}l@{}}
Dipartimento di Ingegneria\\
Industriale e dell'Informazione\\
Ingegneria dell'Informazione
\end{tabular}%
}
\vspace{\stretch{1}}
{\fontsize{14}{24}\itshape Corso di Laurea Magistrale in\par}
{\fontsize{18}{24}\bfseries Ingegneria Informatica\par}
\vspace{2cm}
{\fontsize{14}{24}\bfseries\titillium Tesi di Laurea in Xyz\par}
{\fontsize{23}{32}\titillium Object Tracking and Detection\par}
\vspace{\stretch{2}}
\begin{tabular}[t]{@{}l@{}}
Candidato\\
\itshape Nome Cognome
\end{tabular}\hfill
\begin{tabular}[t]{@{}l@{}}
Relatore\\
\itshape Nome Cognome
\end{tabular}\hfill
\begin{tabular}[t]{@{}l@{}}
Correlatore\\
\itshape Nome Cognome
\end{tabular}\hfill
A. A. 2017/2018
\end{document}
然后,您可以将 PDF 包含在\includepdf
包中的论文中pdfpages
。