自定义标题页:所有内容居中,除了

自定义标题页:所有内容居中,除了

我是 Latex 新手,我应该制作如下页面标题:

例子

我的问题是如何做到这一点?我尝试了几个模板:最接近的是:https://www.latextemplates.com/template/university-assignment-title-page 但我不认为这是最好的方法。

你能帮助我吗 ?

谢谢

答案1

为了完整起见,[wikibook 标题创建页面] 链接的存储库中有一个类似的例子。当然字体和大小不同,更重要的是内容不同,但这是一个起点。

最终的单面文件可以包含在真正的论文中。这样更容易实现标题页的自定义边距。

海蜇

\documentclass{article}
%https://github.com/johannesbottcher/titlepageExamples/blob/master/jellyfish.tex
\begin{document}
\pagestyle{empty}
\begin{center}
    \LARGE
    {\bfseries University of Water World\par}
    School of Atlantis\par
    \vspace{4cm}
    {\huge\bfseries Jellyfish -- Who needs them?\par}
    {\small Seriously}
    \vspace{3cm}
    \par
\end{center}
    \hfill\begin{minipage}{.5\linewidth}
        \normalsize
        a funny thesis paper brought to you by\par
        \textsc{Carlos Pilkerton}\par
        Enjoy reading
    \end{minipage}
    \vfill

    \centering
    \today
\end{document}

答案2

这是你想要的吗?

\documentclass[11pt,a4paper, openany,twoside]{report}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{microtype}
\usepackage{Gillius2}
\usepackage[showframe, nomarginpar]{geometry}
\usepackage{graphicx, eqparbox, moresize}

\usepackage{titling}
\title{TITRE DU MÉMOIRE}
\author{NOM, PRÉNOM}
\predate{\vfill}
\date{Année académique 2016-2017}
\postdate{\clearpage}
%\renewcommand\maketitlehookd{\newpage}
\newcommand{\diploma}[1]{\gdef\Dip{#1}}
\newcommand{\Dip}{}%
\diploma{Bachelier(ère) en informatique de}
\newcommand\institution[1]{%
\renewcommand\arraystretch{1.333}
\begin{tabular}{@{}c@{}}
#1
\end{tabular}}

\setlength\droptitle {-26mm}
%
\renewcommand\maketitlehooka{\centering\sffamily\large \institution{%
\resizebox{\eqboxwidth{IPL}}{!}{Haute École \MakeUppercase{Léonard de Vinci}}\\[0.2ex] %
\eqmakebox[IPL]{\Large\bfseries\lsstyle\MakeUppercase{Institut Paul Lambin}} \\%
Section Informatique\\[3ex]%
Université catholique de Louvain}\vspace{6cm}}
\pretitle{\begin{center}\HUGE\bfseries\lsstyle}
\posttitle{\end{center}\vskip5cm}
\preauthor{\begin{flushright}\begin{tabular}{@{}l@{}}%
\large Mémoire présenté par\\\bfseries}
\postauthor{\\en vue de l’obtention du diplôme de\\ \Dip\end{tabular}
\end{flushright}}
\usepackage{lipsum}
\begin{document}

\newgeometry{margin=3cm, noheadfoot, nomarginpar}
\maketitle
\restoregeometry

\end{document} 

在此处输入图片描述

相关内容