Page Layout ⇒ External Cover
External Cover
Dear friends,
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
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 456 times
Last edited by bkarpuz on Thu Apr 09, 2009 8:32 pm, edited 1 time in total.
NEW: TikZ book now 40% off at Amazon.com for a short time.
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
External Cover
The general layout of the page is no problem. But the "X" on the bottom of the page suggests me that there is a page number and this page may be inside the document. Concerning this there is some more information necessary because this page can be typeset in a titlepage environment or as a normal page. An external cover page would not need a page number. That's what irritates me a little bit.
Best regards
Thorsten¹
Best regards
Thorsten¹
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Re: External Cover
localghost, thanks for the comment, please ignore the page number.
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
External Cover
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
\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
\large
INSTITUTION \\[\baselineskip]
MASTER THESIS \\[\baselineskip]
Name LASTNAME \\[2\baselineskip]
SUPERVISOR \\
Supervisor Name LASTNAME \\[\baselineskip]
DEPARTMENT \\[\baselineskip]
DATE
\end{minipage}
\end{titlepage}
\end{document}
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
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
\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 \large INSTITUTION \\[\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
\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
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
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: 10319
- Joined: Mon Mar 10, 2008 9:44 pm
External Cover
Hi bkarpuz,
perhaps use the setspace package instead of modifying \baselinestretch by yourself, its documentation is contained in setspace.sty itself.
Stefan
perhaps use the setspace package instead of modifying \baselinestretch by yourself, its documentation is contained in setspace.sty itself.
Stefan
LaTeX.org admin
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
External Cover
Stefan already mentioned the setspace package which provides the \onehalfspacing command. Insert this command right after the title page you created according to my earlier suggestions.
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10