Page Layout ⇒ Several questions on research paper format
-
- Posts: 3
- Joined: Sun Nov 08, 2009 12:47 am
Several questions on research paper format
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.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
Several questions on research paper format
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}
-
- Posts: 3
- Joined: Sun Nov 08, 2009 12:47 am
Re: Several questions on research paper format
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¹
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

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!
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
- 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
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