Add keywords at the bottom of a document
up vote
3
down vote
favorite
I want to use documentclass[12pt,a4paper]{article}
in the place of documentclass[12pt,reqno]{amsart}
. However I want to add the following in the bottom of the first page
This is my codes
documentclass[12pt,a4paper]{report}
usepackage{geometry}
geometry{left=3cm,right=2cm,top=2.5cm,bottom=2cm}
usepackage{setspace}
onehalfspacing
begin{document}
footnte{2010 Mathematics Subject Classification. Primary ..; Secondary ...}
end{document}
footnotes sourcecode
add a comment |
up vote
3
down vote
favorite
I want to use documentclass[12pt,a4paper]{article}
in the place of documentclass[12pt,reqno]{amsart}
. However I want to add the following in the bottom of the first page
This is my codes
documentclass[12pt,a4paper]{report}
usepackage{geometry}
geometry{left=3cm,right=2cm,top=2.5cm,bottom=2cm}
usepackage{setspace}
onehalfspacing
begin{document}
footnte{2010 Mathematics Subject Classification. Primary ..; Secondary ...}
end{document}
footnotes sourcecode
add a comment |
up vote
3
down vote
favorite
up vote
3
down vote
favorite
I want to use documentclass[12pt,a4paper]{article}
in the place of documentclass[12pt,reqno]{amsart}
. However I want to add the following in the bottom of the first page
This is my codes
documentclass[12pt,a4paper]{report}
usepackage{geometry}
geometry{left=3cm,right=2cm,top=2.5cm,bottom=2cm}
usepackage{setspace}
onehalfspacing
begin{document}
footnte{2010 Mathematics Subject Classification. Primary ..; Secondary ...}
end{document}
footnotes sourcecode
I want to use documentclass[12pt,a4paper]{article}
in the place of documentclass[12pt,reqno]{amsart}
. However I want to add the following in the bottom of the first page
This is my codes
documentclass[12pt,a4paper]{report}
usepackage{geometry}
geometry{left=3cm,right=2cm,top=2.5cm,bottom=2cm}
usepackage{setspace}
onehalfspacing
begin{document}
footnte{2010 Mathematics Subject Classification. Primary ..; Secondary ...}
end{document}
footnotes sourcecode
footnotes sourcecode
asked Nov 29 at 18:46
Schüler
1585
1585
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
up vote
4
down vote
Without using a package:
documentclass[12pt,a4paper]{report}
usepackage{geometry}
geometry{left=3cm,right=2cm,top=2.5cm,bottom=2cm}
usepackage{setspace}
onehalfspacing
% -------------
makeatletter
defkeywords{xdef@thefnmark{}@footnotetext}
makeatother
begin{document}
Hello world.%
keywords{2010 emph{Mathematics Subject Classification.} Primary ..; Secondary dots}%
keywords{emph{Key words and phrases.} Positive Operator dots}%
footnote{Normal footnote}
Some text here.
end{document}
add a comment |
up vote
2
down vote
With the titlefoot
package:
documentclass[12pt,a4paper]{report}
usepackage{geometry}
geometry{left=3cm,right=2cm,top=2.5cm,bottom=2cm}
usepackage{setspace}
onehalfspacing
usepackage{titlefoot}
begin{document}
unmarkedfntext{2010 Mathematics Subject Classification. Primary ..; Secondary ...newlinehspace*{2em}Keywords:}
end{document}
New contributor
Thank you but what about key words and phrases?
– Schüler
Nov 29 at 18:51
@Schüler Just added
– book
Nov 29 at 18:51
Thank you for your help.
– Schüler
Nov 29 at 18:59
@Schüler Was my pleasure to help!
– book
Nov 29 at 20:10
add a comment |
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
4
down vote
Without using a package:
documentclass[12pt,a4paper]{report}
usepackage{geometry}
geometry{left=3cm,right=2cm,top=2.5cm,bottom=2cm}
usepackage{setspace}
onehalfspacing
% -------------
makeatletter
defkeywords{xdef@thefnmark{}@footnotetext}
makeatother
begin{document}
Hello world.%
keywords{2010 emph{Mathematics Subject Classification.} Primary ..; Secondary dots}%
keywords{emph{Key words and phrases.} Positive Operator dots}%
footnote{Normal footnote}
Some text here.
end{document}
add a comment |
up vote
4
down vote
Without using a package:
documentclass[12pt,a4paper]{report}
usepackage{geometry}
geometry{left=3cm,right=2cm,top=2.5cm,bottom=2cm}
usepackage{setspace}
onehalfspacing
% -------------
makeatletter
defkeywords{xdef@thefnmark{}@footnotetext}
makeatother
begin{document}
Hello world.%
keywords{2010 emph{Mathematics Subject Classification.} Primary ..; Secondary dots}%
keywords{emph{Key words and phrases.} Positive Operator dots}%
footnote{Normal footnote}
Some text here.
end{document}
add a comment |
up vote
4
down vote
up vote
4
down vote
Without using a package:
documentclass[12pt,a4paper]{report}
usepackage{geometry}
geometry{left=3cm,right=2cm,top=2.5cm,bottom=2cm}
usepackage{setspace}
onehalfspacing
% -------------
makeatletter
defkeywords{xdef@thefnmark{}@footnotetext}
makeatother
begin{document}
Hello world.%
keywords{2010 emph{Mathematics Subject Classification.} Primary ..; Secondary dots}%
keywords{emph{Key words and phrases.} Positive Operator dots}%
footnote{Normal footnote}
Some text here.
end{document}
Without using a package:
documentclass[12pt,a4paper]{report}
usepackage{geometry}
geometry{left=3cm,right=2cm,top=2.5cm,bottom=2cm}
usepackage{setspace}
onehalfspacing
% -------------
makeatletter
defkeywords{xdef@thefnmark{}@footnotetext}
makeatother
begin{document}
Hello world.%
keywords{2010 emph{Mathematics Subject Classification.} Primary ..; Secondary dots}%
keywords{emph{Key words and phrases.} Positive Operator dots}%
footnote{Normal footnote}
Some text here.
end{document}
answered Nov 29 at 19:00
Troy
10.4k62265
10.4k62265
add a comment |
add a comment |
up vote
2
down vote
With the titlefoot
package:
documentclass[12pt,a4paper]{report}
usepackage{geometry}
geometry{left=3cm,right=2cm,top=2.5cm,bottom=2cm}
usepackage{setspace}
onehalfspacing
usepackage{titlefoot}
begin{document}
unmarkedfntext{2010 Mathematics Subject Classification. Primary ..; Secondary ...newlinehspace*{2em}Keywords:}
end{document}
New contributor
Thank you but what about key words and phrases?
– Schüler
Nov 29 at 18:51
@Schüler Just added
– book
Nov 29 at 18:51
Thank you for your help.
– Schüler
Nov 29 at 18:59
@Schüler Was my pleasure to help!
– book
Nov 29 at 20:10
add a comment |
up vote
2
down vote
With the titlefoot
package:
documentclass[12pt,a4paper]{report}
usepackage{geometry}
geometry{left=3cm,right=2cm,top=2.5cm,bottom=2cm}
usepackage{setspace}
onehalfspacing
usepackage{titlefoot}
begin{document}
unmarkedfntext{2010 Mathematics Subject Classification. Primary ..; Secondary ...newlinehspace*{2em}Keywords:}
end{document}
New contributor
Thank you but what about key words and phrases?
– Schüler
Nov 29 at 18:51
@Schüler Just added
– book
Nov 29 at 18:51
Thank you for your help.
– Schüler
Nov 29 at 18:59
@Schüler Was my pleasure to help!
– book
Nov 29 at 20:10
add a comment |
up vote
2
down vote
up vote
2
down vote
With the titlefoot
package:
documentclass[12pt,a4paper]{report}
usepackage{geometry}
geometry{left=3cm,right=2cm,top=2.5cm,bottom=2cm}
usepackage{setspace}
onehalfspacing
usepackage{titlefoot}
begin{document}
unmarkedfntext{2010 Mathematics Subject Classification. Primary ..; Secondary ...newlinehspace*{2em}Keywords:}
end{document}
New contributor
With the titlefoot
package:
documentclass[12pt,a4paper]{report}
usepackage{geometry}
geometry{left=3cm,right=2cm,top=2.5cm,bottom=2cm}
usepackage{setspace}
onehalfspacing
usepackage{titlefoot}
begin{document}
unmarkedfntext{2010 Mathematics Subject Classification. Primary ..; Secondary ...newlinehspace*{2em}Keywords:}
end{document}
New contributor
edited Nov 29 at 18:51
New contributor
answered Nov 29 at 18:49
book
323110
323110
New contributor
New contributor
Thank you but what about key words and phrases?
– Schüler
Nov 29 at 18:51
@Schüler Just added
– book
Nov 29 at 18:51
Thank you for your help.
– Schüler
Nov 29 at 18:59
@Schüler Was my pleasure to help!
– book
Nov 29 at 20:10
add a comment |
Thank you but what about key words and phrases?
– Schüler
Nov 29 at 18:51
@Schüler Just added
– book
Nov 29 at 18:51
Thank you for your help.
– Schüler
Nov 29 at 18:59
@Schüler Was my pleasure to help!
– book
Nov 29 at 20:10
Thank you but what about key words and phrases?
– Schüler
Nov 29 at 18:51
Thank you but what about key words and phrases?
– Schüler
Nov 29 at 18:51
@Schüler Just added
– book
Nov 29 at 18:51
@Schüler Just added
– book
Nov 29 at 18:51
Thank you for your help.
– Schüler
Nov 29 at 18:59
Thank you for your help.
– Schüler
Nov 29 at 18:59
@Schüler Was my pleasure to help!
– book
Nov 29 at 20:10
@Schüler Was my pleasure to help!
– book
Nov 29 at 20:10
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%2f462440%2fadd-keywords-at-the-bottom-of-a-document%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