Setting the position of date on title page
I am new using LaTeX and am therefore copy pasting a lot of packages and template into my LaTex. I am having an issue with the year on my title page. I need it to be below the department and not at the bottom.
documentclass[letterpaper,12pt]{article}
usepackage{tabularx} % extra features for tabular environment
usepackage{amsmath} % improve math presentation
usepackage{graphicx} % takes care of graphic including machinery
usepackage[margin=1in,letterpaper]{geometry} % decreases margins
usepackage[final]{hyperref} % adds hyper links inside the generated pdf file
usepackage[numbers]{natbib} % Endnote references
usepackage{fancyhdr}% Footer & Header
usepackage{lastpage}% Add last page
linespread{1.25} %Line spread of 1,5 in word
usepackage{xcolor,colortbl} %colour for the tables
usepackage{booktabs} %for table design
usepackage{gensymb} % for degree symbol
usepackage[toc,page]{appendix} % For appendix
title{ normalsize textsc{Individual Study Activity}
\ [2.0cm]
LARGE textbf{title of project}
HRule \ [2 cm]leavevmode\}
date{January 31, 2019}
author{
My name\
Student ID: XXXX\
University of Southern Denmark\
Department of Biochemistry and Molecular Biology\
date{January 31, 2019}
\
\
\
\
\
small {Supervised by:\
small Supervisor: XXX\
small Co-supervisor: XXX}
}
begin{document}
maketitle
end{document}
titles date
add a comment |
I am new using LaTeX and am therefore copy pasting a lot of packages and template into my LaTex. I am having an issue with the year on my title page. I need it to be below the department and not at the bottom.
documentclass[letterpaper,12pt]{article}
usepackage{tabularx} % extra features for tabular environment
usepackage{amsmath} % improve math presentation
usepackage{graphicx} % takes care of graphic including machinery
usepackage[margin=1in,letterpaper]{geometry} % decreases margins
usepackage[final]{hyperref} % adds hyper links inside the generated pdf file
usepackage[numbers]{natbib} % Endnote references
usepackage{fancyhdr}% Footer & Header
usepackage{lastpage}% Add last page
linespread{1.25} %Line spread of 1,5 in word
usepackage{xcolor,colortbl} %colour for the tables
usepackage{booktabs} %for table design
usepackage{gensymb} % for degree symbol
usepackage[toc,page]{appendix} % For appendix
title{ normalsize textsc{Individual Study Activity}
\ [2.0cm]
LARGE textbf{title of project}
HRule \ [2 cm]leavevmode\}
date{January 31, 2019}
author{
My name\
Student ID: XXXX\
University of Southern Denmark\
Department of Biochemistry and Molecular Biology\
date{January 31, 2019}
\
\
\
\
\
small {Supervised by:\
small Supervisor: XXX\
small Co-supervisor: XXX}
}
begin{document}
maketitle
end{document}
titles date
1
Welcome to TeX.SX! Please make your code compilable (if possible), or at least complete it withdocumentclass{...}
, the requiredusepackage
's,begin{document}
, andend{document}
. That may seem tedious to you, but think of the extra work it represents for TeX.SX users willing to give you a hand. Help them help you: remove that one hurdle between you and a solution to your problem.
– Stefan Pinnow
Dec 13 '18 at 16:36
Of course. Sorry. I think it is done now.
– Bluebell12345
Dec 13 '18 at 17:00
add a comment |
I am new using LaTeX and am therefore copy pasting a lot of packages and template into my LaTex. I am having an issue with the year on my title page. I need it to be below the department and not at the bottom.
documentclass[letterpaper,12pt]{article}
usepackage{tabularx} % extra features for tabular environment
usepackage{amsmath} % improve math presentation
usepackage{graphicx} % takes care of graphic including machinery
usepackage[margin=1in,letterpaper]{geometry} % decreases margins
usepackage[final]{hyperref} % adds hyper links inside the generated pdf file
usepackage[numbers]{natbib} % Endnote references
usepackage{fancyhdr}% Footer & Header
usepackage{lastpage}% Add last page
linespread{1.25} %Line spread of 1,5 in word
usepackage{xcolor,colortbl} %colour for the tables
usepackage{booktabs} %for table design
usepackage{gensymb} % for degree symbol
usepackage[toc,page]{appendix} % For appendix
title{ normalsize textsc{Individual Study Activity}
\ [2.0cm]
LARGE textbf{title of project}
HRule \ [2 cm]leavevmode\}
date{January 31, 2019}
author{
My name\
Student ID: XXXX\
University of Southern Denmark\
Department of Biochemistry and Molecular Biology\
date{January 31, 2019}
\
\
\
\
\
small {Supervised by:\
small Supervisor: XXX\
small Co-supervisor: XXX}
}
begin{document}
maketitle
end{document}
titles date
I am new using LaTeX and am therefore copy pasting a lot of packages and template into my LaTex. I am having an issue with the year on my title page. I need it to be below the department and not at the bottom.
documentclass[letterpaper,12pt]{article}
usepackage{tabularx} % extra features for tabular environment
usepackage{amsmath} % improve math presentation
usepackage{graphicx} % takes care of graphic including machinery
usepackage[margin=1in,letterpaper]{geometry} % decreases margins
usepackage[final]{hyperref} % adds hyper links inside the generated pdf file
usepackage[numbers]{natbib} % Endnote references
usepackage{fancyhdr}% Footer & Header
usepackage{lastpage}% Add last page
linespread{1.25} %Line spread of 1,5 in word
usepackage{xcolor,colortbl} %colour for the tables
usepackage{booktabs} %for table design
usepackage{gensymb} % for degree symbol
usepackage[toc,page]{appendix} % For appendix
title{ normalsize textsc{Individual Study Activity}
\ [2.0cm]
LARGE textbf{title of project}
HRule \ [2 cm]leavevmode\}
date{January 31, 2019}
author{
My name\
Student ID: XXXX\
University of Southern Denmark\
Department of Biochemistry and Molecular Biology\
date{January 31, 2019}
\
\
\
\
\
small {Supervised by:\
small Supervisor: XXX\
small Co-supervisor: XXX}
}
begin{document}
maketitle
end{document}
titles date
titles date
edited Dec 13 '18 at 16:58
asked Dec 13 '18 at 16:20
Bluebell12345
162
162
1
Welcome to TeX.SX! Please make your code compilable (if possible), or at least complete it withdocumentclass{...}
, the requiredusepackage
's,begin{document}
, andend{document}
. That may seem tedious to you, but think of the extra work it represents for TeX.SX users willing to give you a hand. Help them help you: remove that one hurdle between you and a solution to your problem.
– Stefan Pinnow
Dec 13 '18 at 16:36
Of course. Sorry. I think it is done now.
– Bluebell12345
Dec 13 '18 at 17:00
add a comment |
1
Welcome to TeX.SX! Please make your code compilable (if possible), or at least complete it withdocumentclass{...}
, the requiredusepackage
's,begin{document}
, andend{document}
. That may seem tedious to you, but think of the extra work it represents for TeX.SX users willing to give you a hand. Help them help you: remove that one hurdle between you and a solution to your problem.
– Stefan Pinnow
Dec 13 '18 at 16:36
Of course. Sorry. I think it is done now.
– Bluebell12345
Dec 13 '18 at 17:00
1
1
Welcome to TeX.SX! Please make your code compilable (if possible), or at least complete it with
documentclass{...}
, the required usepackage
's, begin{document}
, and end{document}
. That may seem tedious to you, but think of the extra work it represents for TeX.SX users willing to give you a hand. Help them help you: remove that one hurdle between you and a solution to your problem.– Stefan Pinnow
Dec 13 '18 at 16:36
Welcome to TeX.SX! Please make your code compilable (if possible), or at least complete it with
documentclass{...}
, the required usepackage
's, begin{document}
, and end{document}
. That may seem tedious to you, but think of the extra work it represents for TeX.SX users willing to give you a hand. Help them help you: remove that one hurdle between you and a solution to your problem.– Stefan Pinnow
Dec 13 '18 at 16:36
Of course. Sorry. I think it is done now.
– Bluebell12345
Dec 13 '18 at 17:00
Of course. Sorry. I think it is done now.
– Bluebell12345
Dec 13 '18 at 17:00
add a comment |
1 Answer
1
active
oldest
votes
Just add the date without the date
command. But it's much better using titlepage
:
documentclass[letterpaper,12pt]{article}
usepackage[margin=1in,letterpaper]{geometry} % decreases margins
begin{document}
begin{titlepage}
centering
textsc{Individual Study Activity}
vspace{stretch{1}}
{LARGEbfseries title of project\}
rule{3in}{0.4pt}
vspace{stretch{1}}
My name\
Student ID: XXXX\
University of Southern Denmark\
Department of Biochemistry and Molecular Biology\
January 31, 2019
vspace{stretch{1}}
{small
Supervised by:\
Supervisor: XXX\
Co-supervisor: XXX}
vspace*{stretch{1}}
end{titlepage}
end{document}
add a comment |
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
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f464730%2fsetting-the-position-of-date-on-title-page%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Just add the date without the date
command. But it's much better using titlepage
:
documentclass[letterpaper,12pt]{article}
usepackage[margin=1in,letterpaper]{geometry} % decreases margins
begin{document}
begin{titlepage}
centering
textsc{Individual Study Activity}
vspace{stretch{1}}
{LARGEbfseries title of project\}
rule{3in}{0.4pt}
vspace{stretch{1}}
My name\
Student ID: XXXX\
University of Southern Denmark\
Department of Biochemistry and Molecular Biology\
January 31, 2019
vspace{stretch{1}}
{small
Supervised by:\
Supervisor: XXX\
Co-supervisor: XXX}
vspace*{stretch{1}}
end{titlepage}
end{document}
add a comment |
Just add the date without the date
command. But it's much better using titlepage
:
documentclass[letterpaper,12pt]{article}
usepackage[margin=1in,letterpaper]{geometry} % decreases margins
begin{document}
begin{titlepage}
centering
textsc{Individual Study Activity}
vspace{stretch{1}}
{LARGEbfseries title of project\}
rule{3in}{0.4pt}
vspace{stretch{1}}
My name\
Student ID: XXXX\
University of Southern Denmark\
Department of Biochemistry and Molecular Biology\
January 31, 2019
vspace{stretch{1}}
{small
Supervised by:\
Supervisor: XXX\
Co-supervisor: XXX}
vspace*{stretch{1}}
end{titlepage}
end{document}
add a comment |
Just add the date without the date
command. But it's much better using titlepage
:
documentclass[letterpaper,12pt]{article}
usepackage[margin=1in,letterpaper]{geometry} % decreases margins
begin{document}
begin{titlepage}
centering
textsc{Individual Study Activity}
vspace{stretch{1}}
{LARGEbfseries title of project\}
rule{3in}{0.4pt}
vspace{stretch{1}}
My name\
Student ID: XXXX\
University of Southern Denmark\
Department of Biochemistry and Molecular Biology\
January 31, 2019
vspace{stretch{1}}
{small
Supervised by:\
Supervisor: XXX\
Co-supervisor: XXX}
vspace*{stretch{1}}
end{titlepage}
end{document}
Just add the date without the date
command. But it's much better using titlepage
:
documentclass[letterpaper,12pt]{article}
usepackage[margin=1in,letterpaper]{geometry} % decreases margins
begin{document}
begin{titlepage}
centering
textsc{Individual Study Activity}
vspace{stretch{1}}
{LARGEbfseries title of project\}
rule{3in}{0.4pt}
vspace{stretch{1}}
My name\
Student ID: XXXX\
University of Southern Denmark\
Department of Biochemistry and Molecular Biology\
January 31, 2019
vspace{stretch{1}}
{small
Supervised by:\
Supervisor: XXX\
Co-supervisor: XXX}
vspace*{stretch{1}}
end{titlepage}
end{document}
answered Dec 13 '18 at 17:07
egreg
709k8618843167
709k8618843167
add a comment |
add a comment |
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.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- 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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f464730%2fsetting-the-position-of-date-on-title-page%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
1
Welcome to TeX.SX! Please make your code compilable (if possible), or at least complete it with
documentclass{...}
, the requiredusepackage
's,begin{document}
, andend{document}
. That may seem tedious to you, but think of the extra work it represents for TeX.SX users willing to give you a hand. Help them help you: remove that one hurdle between you and a solution to your problem.– Stefan Pinnow
Dec 13 '18 at 16:36
Of course. Sorry. I think it is done now.
– Bluebell12345
Dec 13 '18 at 17:00