Theses, Books, Title pages ⇒ Titlepage in latex
Titlepage in latex
Can you help me to create a title page for my thesis report in french (example attached)??
cordially.
- Attachments
-
- thesis.PNG (14.1 KiB) Viewed 34993 times
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
Titlepage in latex
The title page of the Msters-Doctoral-Thesis-Template has some similarities. But in general, i find the design of the shown example really really ugly. Universities that teach people great stuff should allow them to have their reports look great. :-/
Titlepage in latex
I do not know if there is a special method for creating a title page in latex, but I made a test that gives me some problems.
I created a page that i named it "title", and I call it in the latex source file but I do not know if I should include it before or after the begin{document}??
For the insertion of the two logos and the text. I tried the command of the table and it did not work. Later, I used the command of multicols, but things are not centered ??
Can you help me to fixe this problem ???
Code: Select all
\thispagestyle{empty}%
\begin{multicols}{3}
\includegraphics[width=4cm]{logo_1}
\begin{tabular}{c}
\large \textbf{University bla blala bla bla} \\
%\hline
\large \textbf{Institut xxxxxxxxxx} \\
\end{tabular}
\includegraphics[width=4cm]{logo_2}
\end{multicols}
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
Titlepage in latex
Have you read the linked material? It seems you have not.
Code: Select all
\documentclass{article}
\usepackage[showframe]{geometry}
\usepackage{tabularx}
\usepackage{graphicx}
\usepackage{booktabs}
\usepackage{mwe}% Provides example figures
\begin{document}
\begin{titlepage}
\begin{center}
\includegraphics[width=2cm]{example-image-1x1}
\hfill
\parbox{.5\linewidth}{%
\centering
Universit\'e de Canards\par
\vspace{.05\textheight}
\'Ecole doctorale\par
}
\hfill
\includegraphics[width=2cm]{example-image-1x1}
\par
\vspace{.05\textheight}
{\LARGE\scshape These\par}
\vspace{.05\textheight}
pour l'obtention de la grade du \par
{\itshape\large Docteur de Informatique\par}
\vspace{.05\textheight}
Pr\'esent\'e par \textsc{Walter Wombat}\par
\vspace{.05\textheight}
{\Huge\bfseries The friendship of ducks and
Capybaras\par}
\vspace{.05\textheight}
{\large Looking at it from a different angle\par}
\vfill
\noindent\begin{tabularx}{\textwidth}{XXXX}
\toprule
Nom & Grade & Ecole & Fonction \\
\midrule
Carl Capybara & PES & NYC & Pr\'esident \\
Lennard Lizard & PES & London, UK & Directeur \\
\bottomrule
\end{tabularx}
\end{center}
\end{titlepage}
\end{document}