Page LayoutSeveral questions on research paper format

Information and discussion about page layout specific issues (e.g. header and footer lines, page formats, page numbers).
wesleychang1463
Posts: 3
Joined: Sun Nov 08, 2009 12:47 am

Several questions on research paper format

Post by wesleychang1463 »

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

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

User avatar
gmedina
Posts: 2313
Joined: Wed Jul 11, 2007 11:45 pm

Several questions on research paper format

Post by gmedina »

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

Code: Select all

\documentclass[12pt]{article}
For the header issue, you can use either the fancyhdr or the titlesec package.
1,1,2,3,5,8,13,21,34,55,89,144,233,...
wesleychang1463
Posts: 3
Joined: Sun Nov 08, 2009 12:47 am

Re: Several questions on research paper format

Post by wesleychang1463 »

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!
User avatar
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

Several questions on research paper format

Post by localghost »

wesleychang1463 wrote:[...] So how do I use this "fancyhdr" package? [...]
Read the fancyhdr manual and modify the given examples so that they match your ideas.


Best regards and welcome to the board
Thorsten¹
wesleychang1463
Posts: 3
Joined: Sun Nov 08, 2009 12:47 am

Re: Several questions on research paper format

Post by wesleychang1463 »

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!
User avatar
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

Several questions on research paper format

Post by localghost »

wesleychang1463 wrote:[...] is there a way to change the page numbers so that instead of starting on "1" it starts at "2" ? [...]
Learn something about counters.
wesleychang1463 wrote:[...] And would it be possible to remove the line separating the header/footer from the text? Thanks again!
Once again the reference to the fancyhdr manual.
BMAcox
Posts: 40
Joined: Sun Dec 23, 2007 12:07 am

Several questions on research paper format

Post by BMAcox »

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

Code: Select all

\documentclass[12pt]{article}
For the header issue, you can use either the fancyhdr or the titlesec package.

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?
BMAcox
Posts: 40
Joined: Sun Dec 23, 2007 12:07 am

Re: Several questions on research paper format

Post by BMAcox »

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!
User avatar
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

Several questions on research paper format

Post by localghost »

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?
Specifying the font size is not enough to get double interline spacing. Use the setspace package.
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. [...]
The geometry package lets you customize the type area.


Best regards
Thorsten
BMAcox
Posts: 40
Joined: Sun Dec 23, 2007 12:07 am

Several questions on research paper format

Post by BMAcox »

localghost wrote:
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?
Specifying the font size is not enough to get double interline spacing. Use the setspace package.
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. [...]
The geometry package lets you customize the type area.
Best regards
Thorsten
After including the package in the header, what is the syntax to invoke double space?
Post Reply