How can I get this Cover Page/ Title Page to work in my LaTeX file?












0















I am making my very first LaTeX typeset thesis. I am planning on printing two versions of this thesis (Onesided for corrections and two-sided for final submission).



I want to incorporate this exact format for Cover Page and Title Page which I found on Page 6 of the document 'Writing a Thesis with LaTeX' by Lapo F. Mori'.



I've given this a go -



``



documentclass[a4paper,12pt,titlepage,oneside]{book}
usepackage[DIV=14,BCOR=2mm,headinclude=true,footinclude=false]{typearea}
usepackage{setspace}
setstretch{1.1}
KOMAoptions{DIV=last}

makeatletter
if@twoside
newlength{myoffset}
setlength{myoffset}{12mm}
addtolength{hoffset}{myoffset}
addtolength{evensidemargin}{-2.0myoffset}
fi
makeatother


usepackage{babel}
usepackage{csquotes}
usepackage[T1]{fontenc}
usepackage{charter}
usepackage{eso-pic}
usepackage{graphicx}
%graphicspath{{images/}}
usepackage{xcolor}

definecolor{tcdblue}{RGB}{14,115,185}
definecolor{tcdgrey}{RGB}{83,86,90}

begin{document}

AddToShipoutPictureBG*{includegraphics[width=paperwidth]{logo1}}

centering
textbf{Firstname Surname}
vspace{5cm}
textbf{LARGE{NAME of THESIS IN ALL CAPITAL LETTERS}}
vspace{0.5cm}
textbf{A Thesis in Doctor of Philosophy}
vspace{11cm}
textbf{Name of University}
vspace{1cm}
Month 2019
begin{titlepage}
begin{center}
% vspace*{1cm}
includegraphics[width=0.2textwidth]{logo1} \

textcolor{tcdgrey}{textrm{textbf{textsc{Name of University}}}} \
textcolor{tcdgrey}{Name of University in Local Language} \
textcolor{tcdblue}{Department/Faculty Name} \

hrulefillpar

textrm{A dissertation submitted in partial fulfillment of the requirements for the degree of Doctor of Philosophy in Biochemistry & Immunology}

vspace{1.5cm}
NAME of THESIS IN ALL CAPITAL LETTERS
vspace{1.5cm}

Thesis/Dissertation by \
vspace{0.2cm}
textbf{Author Name}
vspace{1.5cm}

begin{flushleft}
Examiners \
vspace{0.2cm}
Prof 1 Firstname SURNAME dotfill \
Prof 2 Firstname SURNAME dotfill \
vspace{0.5cm}
Candidate \
vspace{0.2cm}
Firstname SURNAME
end{flushleft}
vfill
hrulefillpar
Academic Year 2019/2012 \
Country \
Date
end{center}
end{titlepage}
end{document}


``



And this is the output that I get -



Cover Page



Title Page



How can I make my output exactly similar to the one in the linked PDF (while implementing my own fonts which is CharterBT and not CMR)? I have colour logos and I want these to show up in Greyed out Watermark style (only for the cover page background). I am unsure how to implement the code shown on page 6 of the linked pdf.



The rest of my thesis is showing up correctly with the code in the preamble (especially when I implement the twosided option in the document class). I want the Cover Page, Title Page to show up correctly (even when the twosided option is chosen and with an empty page after the Title Page) so that when it is sent out to print, it comes out as intended.



This is one of the last bits of my thesis I am trying to figure out. Any help is greatly appreciated.










share|improve this question







New contributor




CornBlitz is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





















  • Welcome to TeX.SX! Easiest solution: Use an image editor to change the logo. A bit more difficult (but TeXy): Have a look at the decodearray option of graphicx.

    – TeXnician
    16 mins ago
















0















I am making my very first LaTeX typeset thesis. I am planning on printing two versions of this thesis (Onesided for corrections and two-sided for final submission).



I want to incorporate this exact format for Cover Page and Title Page which I found on Page 6 of the document 'Writing a Thesis with LaTeX' by Lapo F. Mori'.



I've given this a go -



``



documentclass[a4paper,12pt,titlepage,oneside]{book}
usepackage[DIV=14,BCOR=2mm,headinclude=true,footinclude=false]{typearea}
usepackage{setspace}
setstretch{1.1}
KOMAoptions{DIV=last}

makeatletter
if@twoside
newlength{myoffset}
setlength{myoffset}{12mm}
addtolength{hoffset}{myoffset}
addtolength{evensidemargin}{-2.0myoffset}
fi
makeatother


usepackage{babel}
usepackage{csquotes}
usepackage[T1]{fontenc}
usepackage{charter}
usepackage{eso-pic}
usepackage{graphicx}
%graphicspath{{images/}}
usepackage{xcolor}

definecolor{tcdblue}{RGB}{14,115,185}
definecolor{tcdgrey}{RGB}{83,86,90}

begin{document}

AddToShipoutPictureBG*{includegraphics[width=paperwidth]{logo1}}

centering
textbf{Firstname Surname}
vspace{5cm}
textbf{LARGE{NAME of THESIS IN ALL CAPITAL LETTERS}}
vspace{0.5cm}
textbf{A Thesis in Doctor of Philosophy}
vspace{11cm}
textbf{Name of University}
vspace{1cm}
Month 2019
begin{titlepage}
begin{center}
% vspace*{1cm}
includegraphics[width=0.2textwidth]{logo1} \

textcolor{tcdgrey}{textrm{textbf{textsc{Name of University}}}} \
textcolor{tcdgrey}{Name of University in Local Language} \
textcolor{tcdblue}{Department/Faculty Name} \

hrulefillpar

textrm{A dissertation submitted in partial fulfillment of the requirements for the degree of Doctor of Philosophy in Biochemistry & Immunology}

vspace{1.5cm}
NAME of THESIS IN ALL CAPITAL LETTERS
vspace{1.5cm}

Thesis/Dissertation by \
vspace{0.2cm}
textbf{Author Name}
vspace{1.5cm}

begin{flushleft}
Examiners \
vspace{0.2cm}
Prof 1 Firstname SURNAME dotfill \
Prof 2 Firstname SURNAME dotfill \
vspace{0.5cm}
Candidate \
vspace{0.2cm}
Firstname SURNAME
end{flushleft}
vfill
hrulefillpar
Academic Year 2019/2012 \
Country \
Date
end{center}
end{titlepage}
end{document}


``



And this is the output that I get -



Cover Page



Title Page



How can I make my output exactly similar to the one in the linked PDF (while implementing my own fonts which is CharterBT and not CMR)? I have colour logos and I want these to show up in Greyed out Watermark style (only for the cover page background). I am unsure how to implement the code shown on page 6 of the linked pdf.



The rest of my thesis is showing up correctly with the code in the preamble (especially when I implement the twosided option in the document class). I want the Cover Page, Title Page to show up correctly (even when the twosided option is chosen and with an empty page after the Title Page) so that when it is sent out to print, it comes out as intended.



This is one of the last bits of my thesis I am trying to figure out. Any help is greatly appreciated.










share|improve this question







New contributor




CornBlitz is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





















  • Welcome to TeX.SX! Easiest solution: Use an image editor to change the logo. A bit more difficult (but TeXy): Have a look at the decodearray option of graphicx.

    – TeXnician
    16 mins ago














0












0








0








I am making my very first LaTeX typeset thesis. I am planning on printing two versions of this thesis (Onesided for corrections and two-sided for final submission).



I want to incorporate this exact format for Cover Page and Title Page which I found on Page 6 of the document 'Writing a Thesis with LaTeX' by Lapo F. Mori'.



I've given this a go -



``



documentclass[a4paper,12pt,titlepage,oneside]{book}
usepackage[DIV=14,BCOR=2mm,headinclude=true,footinclude=false]{typearea}
usepackage{setspace}
setstretch{1.1}
KOMAoptions{DIV=last}

makeatletter
if@twoside
newlength{myoffset}
setlength{myoffset}{12mm}
addtolength{hoffset}{myoffset}
addtolength{evensidemargin}{-2.0myoffset}
fi
makeatother


usepackage{babel}
usepackage{csquotes}
usepackage[T1]{fontenc}
usepackage{charter}
usepackage{eso-pic}
usepackage{graphicx}
%graphicspath{{images/}}
usepackage{xcolor}

definecolor{tcdblue}{RGB}{14,115,185}
definecolor{tcdgrey}{RGB}{83,86,90}

begin{document}

AddToShipoutPictureBG*{includegraphics[width=paperwidth]{logo1}}

centering
textbf{Firstname Surname}
vspace{5cm}
textbf{LARGE{NAME of THESIS IN ALL CAPITAL LETTERS}}
vspace{0.5cm}
textbf{A Thesis in Doctor of Philosophy}
vspace{11cm}
textbf{Name of University}
vspace{1cm}
Month 2019
begin{titlepage}
begin{center}
% vspace*{1cm}
includegraphics[width=0.2textwidth]{logo1} \

textcolor{tcdgrey}{textrm{textbf{textsc{Name of University}}}} \
textcolor{tcdgrey}{Name of University in Local Language} \
textcolor{tcdblue}{Department/Faculty Name} \

hrulefillpar

textrm{A dissertation submitted in partial fulfillment of the requirements for the degree of Doctor of Philosophy in Biochemistry & Immunology}

vspace{1.5cm}
NAME of THESIS IN ALL CAPITAL LETTERS
vspace{1.5cm}

Thesis/Dissertation by \
vspace{0.2cm}
textbf{Author Name}
vspace{1.5cm}

begin{flushleft}
Examiners \
vspace{0.2cm}
Prof 1 Firstname SURNAME dotfill \
Prof 2 Firstname SURNAME dotfill \
vspace{0.5cm}
Candidate \
vspace{0.2cm}
Firstname SURNAME
end{flushleft}
vfill
hrulefillpar
Academic Year 2019/2012 \
Country \
Date
end{center}
end{titlepage}
end{document}


``



And this is the output that I get -



Cover Page



Title Page



How can I make my output exactly similar to the one in the linked PDF (while implementing my own fonts which is CharterBT and not CMR)? I have colour logos and I want these to show up in Greyed out Watermark style (only for the cover page background). I am unsure how to implement the code shown on page 6 of the linked pdf.



The rest of my thesis is showing up correctly with the code in the preamble (especially when I implement the twosided option in the document class). I want the Cover Page, Title Page to show up correctly (even when the twosided option is chosen and with an empty page after the Title Page) so that when it is sent out to print, it comes out as intended.



This is one of the last bits of my thesis I am trying to figure out. Any help is greatly appreciated.










share|improve this question







New contributor




CornBlitz is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.












I am making my very first LaTeX typeset thesis. I am planning on printing two versions of this thesis (Onesided for corrections and two-sided for final submission).



I want to incorporate this exact format for Cover Page and Title Page which I found on Page 6 of the document 'Writing a Thesis with LaTeX' by Lapo F. Mori'.



I've given this a go -



``



documentclass[a4paper,12pt,titlepage,oneside]{book}
usepackage[DIV=14,BCOR=2mm,headinclude=true,footinclude=false]{typearea}
usepackage{setspace}
setstretch{1.1}
KOMAoptions{DIV=last}

makeatletter
if@twoside
newlength{myoffset}
setlength{myoffset}{12mm}
addtolength{hoffset}{myoffset}
addtolength{evensidemargin}{-2.0myoffset}
fi
makeatother


usepackage{babel}
usepackage{csquotes}
usepackage[T1]{fontenc}
usepackage{charter}
usepackage{eso-pic}
usepackage{graphicx}
%graphicspath{{images/}}
usepackage{xcolor}

definecolor{tcdblue}{RGB}{14,115,185}
definecolor{tcdgrey}{RGB}{83,86,90}

begin{document}

AddToShipoutPictureBG*{includegraphics[width=paperwidth]{logo1}}

centering
textbf{Firstname Surname}
vspace{5cm}
textbf{LARGE{NAME of THESIS IN ALL CAPITAL LETTERS}}
vspace{0.5cm}
textbf{A Thesis in Doctor of Philosophy}
vspace{11cm}
textbf{Name of University}
vspace{1cm}
Month 2019
begin{titlepage}
begin{center}
% vspace*{1cm}
includegraphics[width=0.2textwidth]{logo1} \

textcolor{tcdgrey}{textrm{textbf{textsc{Name of University}}}} \
textcolor{tcdgrey}{Name of University in Local Language} \
textcolor{tcdblue}{Department/Faculty Name} \

hrulefillpar

textrm{A dissertation submitted in partial fulfillment of the requirements for the degree of Doctor of Philosophy in Biochemistry & Immunology}

vspace{1.5cm}
NAME of THESIS IN ALL CAPITAL LETTERS
vspace{1.5cm}

Thesis/Dissertation by \
vspace{0.2cm}
textbf{Author Name}
vspace{1.5cm}

begin{flushleft}
Examiners \
vspace{0.2cm}
Prof 1 Firstname SURNAME dotfill \
Prof 2 Firstname SURNAME dotfill \
vspace{0.5cm}
Candidate \
vspace{0.2cm}
Firstname SURNAME
end{flushleft}
vfill
hrulefillpar
Academic Year 2019/2012 \
Country \
Date
end{center}
end{titlepage}
end{document}


``



And this is the output that I get -



Cover Page



Title Page



How can I make my output exactly similar to the one in the linked PDF (while implementing my own fonts which is CharterBT and not CMR)? I have colour logos and I want these to show up in Greyed out Watermark style (only for the cover page background). I am unsure how to implement the code shown on page 6 of the linked pdf.



The rest of my thesis is showing up correctly with the code in the preamble (especially when I implement the twosided option in the document class). I want the Cover Page, Title Page to show up correctly (even when the twosided option is chosen and with an empty page after the Title Page) so that when it is sent out to print, it comes out as intended.



This is one of the last bits of my thesis I am trying to figure out. Any help is greatly appreciated.







titles double-sided bookcover






share|improve this question







New contributor




CornBlitz is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.











share|improve this question







New contributor




CornBlitz is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









share|improve this question




share|improve this question






New contributor




CornBlitz is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









asked 25 mins ago









CornBlitzCornBlitz

11




11




New contributor




CornBlitz is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





New contributor





CornBlitz is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.






CornBlitz is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.













  • Welcome to TeX.SX! Easiest solution: Use an image editor to change the logo. A bit more difficult (but TeXy): Have a look at the decodearray option of graphicx.

    – TeXnician
    16 mins ago



















  • Welcome to TeX.SX! Easiest solution: Use an image editor to change the logo. A bit more difficult (but TeXy): Have a look at the decodearray option of graphicx.

    – TeXnician
    16 mins ago

















Welcome to TeX.SX! Easiest solution: Use an image editor to change the logo. A bit more difficult (but TeXy): Have a look at the decodearray option of graphicx.

– TeXnician
16 mins ago





Welcome to TeX.SX! Easiest solution: Use an image editor to change the logo. A bit more difficult (but TeXy): Have a look at the decodearray option of graphicx.

– TeXnician
16 mins ago










0






active

oldest

votes











Your Answer








StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "85"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});






CornBlitz is a new contributor. Be nice, and check out our Code of Conduct.










draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f472065%2fhow-can-i-get-this-cover-page-title-page-to-work-in-my-latex-file%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes








CornBlitz is a new contributor. Be nice, and check out our Code of Conduct.










draft saved

draft discarded


















CornBlitz is a new contributor. Be nice, and check out our Code of Conduct.













CornBlitz is a new contributor. Be nice, and check out our Code of Conduct.












CornBlitz is a new contributor. Be nice, and check out our Code of Conduct.
















Thanks for contributing an answer to TeX - LaTeX Stack Exchange!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f472065%2fhow-can-i-get-this-cover-page-title-page-to-work-in-my-latex-file%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

A CLEAN and SIMPLE way to add appendices to Table of Contents and bookmarks

Calculate evaluation metrics using cross_val_predict sklearn

Insert data from modal to MySQL (multiple modal on website)