Page Layout ⇒ Several questions on research paper format
-
- Posts: 3
- Joined: Sun Nov 08, 2009 12:47 am
Several questions on research paper format
Hi,
I'm a newbie trying to figure out how to double-space my entire research paper. What is the correct package to use? Also, how do I make the font 12 point? One last question, I would like to include my name at the top right of every page (in the header). How should I do this? Thanks!
-WC
I'm a newbie trying to figure out how to double-space my entire research paper. What is the correct package to use? Also, how do I make the font 12 point? One last question, I would like to include my name at the top right of every page (in the header). How should I do this? Thanks!
-WC
NEW: TikZ book now 40% off at Amazon.com for a short time.
Several questions on research paper format
Hi,
for the spacing issue, you can use the \doublespacing command provided by the setspace package.
You can use 12pt as a document class option; for example
For the header issue, you can use either the fancyhdr or the titlesec package.
for the spacing issue, you can use the \doublespacing command provided by the setspace package.
You can use 12pt as a document class option; for example
Code: Select all
\documentclass[12pt]{article}
1,1,2,3,5,8,13,21,34,55,89,144,233,...
-
- Posts: 3
- Joined: Sun Nov 08, 2009 12:47 am
Re: Several questions on research paper format
Thanks! It worked! Except the header thing. I want my name to be shown at the top right of every page. So how do I use this "fancyhdr" package?
I write "\fancyhdr{}" but what do I put in the {} ? And I tried putting my name, but the formatting is wrong. I would like my name at the top right, but I do not know how to do that. Can anyone help? Thanks again!
I write "\fancyhdr{}" but what do I put in the {} ? And I tried putting my name, but the formatting is wrong. I would like my name at the top right, but I do not know how to do that. Can anyone help? Thanks again!
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Several questions on research paper format
Read the fancyhdr manual and modify the given examples so that they match your ideas.wesleychang1463 wrote:[...] So how do I use this "fancyhdr" package? [...]
Best regards and welcome to the board
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
-
- Posts: 3
- Joined: Sun Nov 08, 2009 12:47 am
Re: Several questions on research paper format
Alright thanks! It worked
Now...is there a way to change the page numbers so that instead of starting on "1" it starts at "2" ? And would it be possible to remove the line separating the header/footer from the text? Thanks again!

Now...is there a way to change the page numbers so that instead of starting on "1" it starts at "2" ? And would it be possible to remove the line separating the header/footer from the text? Thanks again!
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Several questions on research paper format
Learn something about counters.wesleychang1463 wrote:[...] is there a way to change the page numbers so that instead of starting on "1" it starts at "2" ? [...]
Once again the reference to the fancyhdr manual.wesleychang1463 wrote:[...] And would it be possible to remove the line separating the header/footer from the text? Thanks again!
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
Several questions on research paper format
gmedina wrote:Hi,
for the spacing issue, you can use the \doublespacing command provided by the setspace package.
You can use 12pt as a document class option; for example
For the header issue, you can use either the fancyhdr or the titlesec package.Code: Select all
\documentclass[12pt]{article}
I have the same question. Is the following for our file header
\documentclass[12pt]{article}
sufficient for double-spacing? Or is there another line of code that we use?
Re: Several questions on research paper format
Also, how do we specify "wide margins"? This was a request from a journal. But I'm not sure if that is a class within the LaTex document template or what. Thank you!
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Several questions on research paper format
Specifying the font size is not enough to get double interline spacing. Use the setspace package.BMAcox wrote:[...] I have the same question. Is the following for our file header
\documentclass[12pt]{article}
sufficient for double-spacing? Or is there another line of code that we use?
The geometry package lets you customize the type area.BMAcox wrote:Also, how do we specify "wide margins"? This was a request from a journal. But I'm not sure if that is a class within the LaTex document template or what. [...]
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
Several questions on research paper format
After including the package in the header, what is the syntax to invoke double space?localghost wrote:Specifying the font size is not enough to get double interline spacing. Use the setspace package.BMAcox wrote:[...] I have the same question. Is the following for our file header
\documentclass[12pt]{article}
sufficient for double-spacing? Or is there another line of code that we use?The geometry package lets you customize the type area.BMAcox wrote:Also, how do we specify "wide margins"? This was a request from a journal. But I'm not sure if that is a class within the LaTex document template or what. [...]
Best regards
Thorsten