Omitting the date when using maketitle
up vote
216
down vote
favorite
I'm using the author
and title
commands to produce a title with maketitle
. I also know that there is a date
command to specify the date of my work. However, if I omit date
, maketitle
will produce the current date. How do I achieve that no date is displayed at all?
documentclass{article}
author{Author, A.}
title{Alpha}
begin{document}
maketitle
Some text.
end{document}
titles datetime
add a comment |
up vote
216
down vote
favorite
I'm using the author
and title
commands to produce a title with maketitle
. I also know that there is a date
command to specify the date of my work. However, if I omit date
, maketitle
will produce the current date. How do I achieve that no date is displayed at all?
documentclass{article}
author{Author, A.}
title{Alpha}
begin{document}
maketitle
Some text.
end{document}
titles datetime
add a comment |
up vote
216
down vote
favorite
up vote
216
down vote
favorite
I'm using the author
and title
commands to produce a title with maketitle
. I also know that there is a date
command to specify the date of my work. However, if I omit date
, maketitle
will produce the current date. How do I achieve that no date is displayed at all?
documentclass{article}
author{Author, A.}
title{Alpha}
begin{document}
maketitle
Some text.
end{document}
titles datetime
I'm using the author
and title
commands to produce a title with maketitle
. I also know that there is a date
command to specify the date of my work. However, if I omit date
, maketitle
will produce the current date. How do I achieve that no date is displayed at all?
documentclass{article}
author{Author, A.}
title{Alpha}
begin{document}
maketitle
Some text.
end{document}
titles datetime
titles datetime
edited Aug 2 '15 at 12:09
asked Sep 5 '10 at 16:08
lockstep
188k51584717
188k51584717
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
up vote
203
down vote
accepted
If you want a blank date, just use date{}
.
If you want to remove the spacing altogether where the date usually goes, look into using the titling
package, or else the mechanisms provided by your document class, depending on what it is.
5
If I usedate{}
with thearticle
class (instead of simply omitting the date), the vertical alignment of any following text will change as if the spacing was removed.
– lockstep
Sep 5 '10 at 16:24
3
@lockstep long time post, but testing today (with TexStudio), thedate{}
it works fine.
– Tom Brito
Dec 8 '12 at 23:56
6
For future reference: if you want to use thetitling
package to remove space, you can dopredate{}
andpostdate{}
and thendate{}
(as above). The same can be done for author (preauthor{}
,postauthor{}
, andauthor{}
) and title. To remove the space after the title line itself, doposttitle{parend{center}}
, which is the same as the defaultposttitle
except with thevskip 0.5em
omitted (seetexdoc titling
, page 2).
– Reid
Feb 24 '14 at 13:52
Today the spacing seems to be gone already, so it should be fine.
– xji
Jun 11 '16 at 4:05
add a comment |
up vote
124
down vote
For a cheap and easy solution to removing the spacing without delving into the titling
package that frabjous mentions, try:
documentclass{article}
author{Me}
title{Foo}
date{vspace{-5ex}}
%date{} % Toggle commenting to test
begin{document}
maketitle
Bar
end{document}
add a comment |
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
203
down vote
accepted
If you want a blank date, just use date{}
.
If you want to remove the spacing altogether where the date usually goes, look into using the titling
package, or else the mechanisms provided by your document class, depending on what it is.
5
If I usedate{}
with thearticle
class (instead of simply omitting the date), the vertical alignment of any following text will change as if the spacing was removed.
– lockstep
Sep 5 '10 at 16:24
3
@lockstep long time post, but testing today (with TexStudio), thedate{}
it works fine.
– Tom Brito
Dec 8 '12 at 23:56
6
For future reference: if you want to use thetitling
package to remove space, you can dopredate{}
andpostdate{}
and thendate{}
(as above). The same can be done for author (preauthor{}
,postauthor{}
, andauthor{}
) and title. To remove the space after the title line itself, doposttitle{parend{center}}
, which is the same as the defaultposttitle
except with thevskip 0.5em
omitted (seetexdoc titling
, page 2).
– Reid
Feb 24 '14 at 13:52
Today the spacing seems to be gone already, so it should be fine.
– xji
Jun 11 '16 at 4:05
add a comment |
up vote
203
down vote
accepted
If you want a blank date, just use date{}
.
If you want to remove the spacing altogether where the date usually goes, look into using the titling
package, or else the mechanisms provided by your document class, depending on what it is.
5
If I usedate{}
with thearticle
class (instead of simply omitting the date), the vertical alignment of any following text will change as if the spacing was removed.
– lockstep
Sep 5 '10 at 16:24
3
@lockstep long time post, but testing today (with TexStudio), thedate{}
it works fine.
– Tom Brito
Dec 8 '12 at 23:56
6
For future reference: if you want to use thetitling
package to remove space, you can dopredate{}
andpostdate{}
and thendate{}
(as above). The same can be done for author (preauthor{}
,postauthor{}
, andauthor{}
) and title. To remove the space after the title line itself, doposttitle{parend{center}}
, which is the same as the defaultposttitle
except with thevskip 0.5em
omitted (seetexdoc titling
, page 2).
– Reid
Feb 24 '14 at 13:52
Today the spacing seems to be gone already, so it should be fine.
– xji
Jun 11 '16 at 4:05
add a comment |
up vote
203
down vote
accepted
up vote
203
down vote
accepted
If you want a blank date, just use date{}
.
If you want to remove the spacing altogether where the date usually goes, look into using the titling
package, or else the mechanisms provided by your document class, depending on what it is.
If you want a blank date, just use date{}
.
If you want to remove the spacing altogether where the date usually goes, look into using the titling
package, or else the mechanisms provided by your document class, depending on what it is.
edited Jul 29 '12 at 21:04
lockstep
188k51584717
188k51584717
answered Sep 5 '10 at 16:14
frabjous
24.6k68282
24.6k68282
5
If I usedate{}
with thearticle
class (instead of simply omitting the date), the vertical alignment of any following text will change as if the spacing was removed.
– lockstep
Sep 5 '10 at 16:24
3
@lockstep long time post, but testing today (with TexStudio), thedate{}
it works fine.
– Tom Brito
Dec 8 '12 at 23:56
6
For future reference: if you want to use thetitling
package to remove space, you can dopredate{}
andpostdate{}
and thendate{}
(as above). The same can be done for author (preauthor{}
,postauthor{}
, andauthor{}
) and title. To remove the space after the title line itself, doposttitle{parend{center}}
, which is the same as the defaultposttitle
except with thevskip 0.5em
omitted (seetexdoc titling
, page 2).
– Reid
Feb 24 '14 at 13:52
Today the spacing seems to be gone already, so it should be fine.
– xji
Jun 11 '16 at 4:05
add a comment |
5
If I usedate{}
with thearticle
class (instead of simply omitting the date), the vertical alignment of any following text will change as if the spacing was removed.
– lockstep
Sep 5 '10 at 16:24
3
@lockstep long time post, but testing today (with TexStudio), thedate{}
it works fine.
– Tom Brito
Dec 8 '12 at 23:56
6
For future reference: if you want to use thetitling
package to remove space, you can dopredate{}
andpostdate{}
and thendate{}
(as above). The same can be done for author (preauthor{}
,postauthor{}
, andauthor{}
) and title. To remove the space after the title line itself, doposttitle{parend{center}}
, which is the same as the defaultposttitle
except with thevskip 0.5em
omitted (seetexdoc titling
, page 2).
– Reid
Feb 24 '14 at 13:52
Today the spacing seems to be gone already, so it should be fine.
– xji
Jun 11 '16 at 4:05
5
5
If I use
date{}
with the article
class (instead of simply omitting the date), the vertical alignment of any following text will change as if the spacing was removed.– lockstep
Sep 5 '10 at 16:24
If I use
date{}
with the article
class (instead of simply omitting the date), the vertical alignment of any following text will change as if the spacing was removed.– lockstep
Sep 5 '10 at 16:24
3
3
@lockstep long time post, but testing today (with TexStudio), the
date{}
it works fine.– Tom Brito
Dec 8 '12 at 23:56
@lockstep long time post, but testing today (with TexStudio), the
date{}
it works fine.– Tom Brito
Dec 8 '12 at 23:56
6
6
For future reference: if you want to use the
titling
package to remove space, you can do predate{}
and postdate{}
and then date{}
(as above). The same can be done for author (preauthor{}
, postauthor{}
, and author{}
) and title. To remove the space after the title line itself, do posttitle{parend{center}}
, which is the same as the default posttitle
except with the vskip 0.5em
omitted (see texdoc titling
, page 2).– Reid
Feb 24 '14 at 13:52
For future reference: if you want to use the
titling
package to remove space, you can do predate{}
and postdate{}
and then date{}
(as above). The same can be done for author (preauthor{}
, postauthor{}
, and author{}
) and title. To remove the space after the title line itself, do posttitle{parend{center}}
, which is the same as the default posttitle
except with the vskip 0.5em
omitted (see texdoc titling
, page 2).– Reid
Feb 24 '14 at 13:52
Today the spacing seems to be gone already, so it should be fine.
– xji
Jun 11 '16 at 4:05
Today the spacing seems to be gone already, so it should be fine.
– xji
Jun 11 '16 at 4:05
add a comment |
up vote
124
down vote
For a cheap and easy solution to removing the spacing without delving into the titling
package that frabjous mentions, try:
documentclass{article}
author{Me}
title{Foo}
date{vspace{-5ex}}
%date{} % Toggle commenting to test
begin{document}
maketitle
Bar
end{document}
add a comment |
up vote
124
down vote
For a cheap and easy solution to removing the spacing without delving into the titling
package that frabjous mentions, try:
documentclass{article}
author{Me}
title{Foo}
date{vspace{-5ex}}
%date{} % Toggle commenting to test
begin{document}
maketitle
Bar
end{document}
add a comment |
up vote
124
down vote
up vote
124
down vote
For a cheap and easy solution to removing the spacing without delving into the titling
package that frabjous mentions, try:
documentclass{article}
author{Me}
title{Foo}
date{vspace{-5ex}}
%date{} % Toggle commenting to test
begin{document}
maketitle
Bar
end{document}
For a cheap and easy solution to removing the spacing without delving into the titling
package that frabjous mentions, try:
documentclass{article}
author{Me}
title{Foo}
date{vspace{-5ex}}
%date{} % Toggle commenting to test
begin{document}
maketitle
Bar
end{document}
edited Jul 29 '12 at 21:04
lockstep
188k51584717
188k51584717
answered Sep 6 '10 at 16:02
vanden
15.9k185984
15.9k185984
add a comment |
add a comment |
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
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f2760%2fomitting-the-date-when-using-maketitle%23new-answer', 'question_page');
}
);
Post as a guest
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
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
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