Theses, Books, Title pagesAcademic Title Page: minipage

Classicthesis, Bachelor and Master thesis, PhD, Doctoral degree
Post Reply
EstherN
Posts: 2
Joined: Tue Nov 14, 2017 5:06 pm

Academic Title Page: minipage

Post by EstherN »

If I use the script below, the line 'author' and the line 'supervisor' are not at the same height on the page. How can I fix this?

Code: Select all

Code, edit and compile here:
\begin{titlepage} % Suppresses displaying the page number on the title page and the subsequent page counts as page 1
\newcommand{\HRule}{\rule{\linewidth}{0.5mm}} % Defines a new command for horizontal lines, change thickness here
\center % Centre everything on the page
%------------------------------------------------
% Headings
%------------------------------------------------
\textsc{\LARGE Institution Name}\\[1.5cm] % Main heading such as the name of your university/college
\textsc{\Large Major Heading}\\[0.5cm] % Major heading such as course name
\textsc{\large Minor Heading}\\[0.5cm] % Minor heading such as course title
%------------------------------------------------
% Title
%------------------------------------------------
\HRule\\[0.4cm]
{\huge\bfseries Title
}\\[0.4cm] % Title of your document
\HRule\\[1.5cm]
%------------------------------------------------
% Author(s)
%------------------------------------------------
\begin{minipage}{0.4\textwidth}
\begin{flushleft}
\large
\textit{Author}\\
B.J. \textsc{Blazkowicz} \\
B.J. \textsc{Blazkowicz} \\
B.J. \textsc{Blazkowicz} % Your name
\end{flushleft}
\end{minipage}
~
\begin{minipage}{0.4\textwidth}
 
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

Stefan Kottwitz
Site Admin
Posts: 10345
Joined: Mon Mar 10, 2008 9:44 pm

Academic Title Page: minipage

Post by Stefan Kottwitz »

Hi Esther,

welcome to the forum!

To get the minipages top-aligned, simply add the [t] option for top alignment:

\begin{minipage}[t]{0.4\textwidth}

Stefan
LaTeX.org admin
EstherN
Posts: 2
Joined: Tue Nov 14, 2017 5:06 pm

Academic Title Page: minipage

Post by EstherN »

Hi Stefan,

Thanks for the answer. I already tried to add a [t], but i forgot to add this in both minipage lines. :idea:

Esther
Post Reply