Page Layout ⇒ External Cover
External Cover
I need help with the external cover format of my university.
I attached the sample.
It is possible that someone can help me with that?
I think I need to change the line distance between two lines to have it done (see the distance between INSTITUTION and MASTER THEISIS, and the distance between SUPERVISOR Supervisor Name LASTNAME).
Thanks again.
bkarpuz
- Attachments
-
- ExternalCover.pdf
- External Cover Sample
- (90.29 KiB) Downloaded 460 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
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
External Cover
Best regards
Thorsten¹
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Re: External Cover
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
External Cover
Code: Select all
\documentclass[11pt,a4paper,english]{article}\usepackage[T1]{fontenc}\usepackage[latin1]{inputenc}\usepackage{babel}\usepackage[margin=2cm]{geometry}\usepackage{txfonts}\begin{document}\begin{titlepage}\centering~\vfill\begin{minipage}[t][6.5cm][t]{10cm}\centering\largeINSTITUTION \\[\baselineskip]MASTER THESIS \\[\baselineskip]Name LASTNAME \\[2\baselineskip]SUPERVISOR \\Supervisor Name LASTNAME \\[\baselineskip]DEPARTMENT \\[\baselineskip]DATE\end{minipage}\end{titlepage}\end{document}
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
External Cover
localghost many thanks for the help.localghost wrote:I assume the dashed frame box is only to show the dimension of the data field. Take this as example.If the page dimensions deviate from the general demands of your department, you should generate this single page with pdflatex and include it later with pdfpages in your final document.Code: Select all
Code, edit and compile here:\documentclass[11pt,a4paper,english]{article}\usepackage[T1]{fontenc}\usepackage[latin1]{inputenc}\usepackage{babel}\usepackage[margin=2cm]{geometry}\usepackage{txfonts}\begin{document}\begin{titlepage}\centering~\vfill\begin{minipage}[t][6.5cm][t]{10cm}\centering\largeINSTITUTION \\[\baselineskip]MASTER THESIS \\[\baselineskip]Name LASTNAME \\[2\baselineskip]SUPERVISOR \\Supervisor Name LASTNAME \\[\baselineskip]DEPARTMENT \\[\baselineskip]DATE\end{minipage}\end{titlepage}\end{document}
But when I put this into my file, it changes some parts.
I guess this is because of the following codes:
Code: Select all
\textwidth=15cm\textheight=23cm\oddsidemargin=0cm\evensidemargin=0cm\topskip=0cm\headheight=0cm\topmargin=0cm\parindent=0.3in\parskip=3pt plus 1pt minus 1pt\def\baselinestretch{1.25}\large\normalsize\hbadness=3000\vbadness=30000\sloppy

Can you give me one more hand?
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
External Cover
I think I made clear how to handle this title page.localghost wrote:If the page dimensions deviate from the general demands of your department, you should generate this single page with pdflatex and include it later with pdfpages in your final document.
Page dimensions should never be set this way. That's a job for the geometry package. Please take a look into l2tabu to avoid the biggest sins. Regarding the title page, I wonder how these settings correspond with the demands from your department.bkarpuz wrote:[...] But when I put this into my file, it changes some parts.
I guess this is because of the following codes:When I have this code I could not modify the one you gave. [...]Code: Select all
Code, edit and compile here:\textwidth=15cm\textheight=23cm\oddsidemargin=0cm\evensidemargin=0cm\topskip=0cm\headheight=0cm\topmargin=0cm\parindent=0.3in\parskip=3pt plus 1pt minus 1pt\def\baselinestretch{1.25}\large\normalsize\hbadness=3000\vbadness=30000\sloppy
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
External Cover
Thanks for your replies, localghost....
I think I made clear how to handle this title page.
...
Page dimensions should never be set this way. That's a job for the geometry package. Please take a look into l2tabu to avoid the biggest sins. Regarding the title page, I wonder how these settings correspond with the demands from your department.
I have to say that I am a newbie for LaTeX, and my department provides me some settings for my PhD thesis but not in LaTeX.
They just told me the settings for MS Word, but I want to type it in LaTeX because I think LaTeX is much more better when compared to MS Word.
I now see that geometry class is the one I need.
Code: Select all
\usepackage[top=46.9mm,bottom=30mm,left=30mm,right=30mm]{geometry} %(3cm spaces from each sides)
But while setting \baselinestretch to 1.5, I have problems.
I guess that I have to set this after the cover page you gave to me, but this time the command
Code: Select all
\renewcommand{\baselinestretch}{1.5}
Thanks, bests.
bkarpuz
- Stefan Kottwitz
- Site Admin
- Posts: 10324
- Joined: Mon Mar 10, 2008 9:44 pm
External Cover
perhaps use the setspace package instead of modifying \baselinestretch by yourself, its documentation is contained in setspace.sty itself.
Stefan
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
External Cover
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10