Theses, Books, Title pagesTitlepage in latex

Classicthesis, Bachelor and Master thesis, PhD, Doctoral degree
Post Reply
sindy
Posts: 2
Joined: Thu Oct 20, 2016 6:11 pm

Titlepage in latex

Post by sindy »

Hello everybody,
Can you help me to create a title page for my thesis report in french (example attached)??
cordially.
Attachments
thesis.PNG
thesis.PNG (14.1 KiB) Viewed 34993 times

Recommended reading 2024:

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

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

Post by Johannes_B »

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 smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
sindy
Posts: 2
Joined: Thu Oct 20, 2016 6:11 pm

Titlepage in latex

Post by sindy »

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 ???

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}
User avatar
Johannes_B
Site Moderator
Posts: 4182
Joined: Thu Nov 01, 2012 4:08 pm

Titlepage in latex

Post by Johannes_B »

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.

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.
Post Reply