Hello everybody,
Can you help me to create a title page for my thesis report in french (example attached)??
cordially.
Theses, Books, Title pages ⇒ Titlepage in latex
Titlepage in latex
- Attachments
-
- thesis.PNG (14.1 KiB) Viewed 35030 times
NEW: TikZ book now 40% off at Amazon.com for a short time.

- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
Titlepage in latex
Hi and welcome, maybe Create a titlepage or How to customize my titlepage? can give you a hint where to start. We can help with the stuff you are stuck with.
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. :-/
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. :-/
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
Titlepage in latex
Hello,
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 ???
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
Creating a titlepage really is a piece of cake as long as you read an introduction to LaTeX. Obviously, you haven't, and that will get you in trouble later on.
Have you read the linked material? It seems you have not.
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}
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.