Page LayoutHelp with formatting a document

Information and discussion about page layout specific issues (e.g. header and footer lines, page formats, page numbers).
Post Reply
SeriousTyro
Posts: 2
Joined: Sat Nov 14, 2009 9:21 am

Help with formatting a document

Post by SeriousTyro »

Recently started learning Latex and thought it would be good practice to rewrite my math notes in latex. I got most of it down but I have trouble with formatting bits and pieces of the document. For example what command could I use to move the whole document up?
Also on the second page, the line "so dim Pn = n + 1" I want to make it stay on the first page. At first it was all on one page then after I added more, that line went to the second page.
Also any tips with how I can make my document better would be helpful.
Much obliged.
Attachments
4.5 dimension of a vector space.tex
source code
(4.08 KiB) Downloaded 220 times
Last edited by SeriousTyro on Sun Nov 15, 2009 10:41 pm, edited 1 time in total.

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

Help with formatting a document

Post by localghost »

SeriousTyro wrote:[...] For example what command could I use to move the whole document up? [...]
Explain what »up« means in this context.
SeriousTyro wrote:[...] Also any tips with how I can make my document better would be helpful. [...]
Looking at your provided code there is list of things to be improved.
  • typeset your document more LaTeX-like and less Word-like. Do not add so much line breaks but let the program typeset some paragraphs. See log file for warnings regarding »Underfull hboxes« (horizontal boxes).
  • Since you are loading the amsmath package, you should use its environments (proof, cases, ...). Take a look at its manual.
  • Theorems can be setup with the amsthm package.
  • For enumerations use the enumerate environment. This and all other predefined list environments can be customized by the enumitem package.
  • Page and paper dimensions can be set up with geometry.
For further useful resources take a look at our list for beginners [1]. You can find information about all packages as well as their documentations on CTAN.

[1] View topic: LaTeX Resources for Beginners


Best regards and welcome to the board
Thorsten¹
SeriousTyro
Posts: 2
Joined: Sat Nov 14, 2009 9:21 am

Help with formatting a document

Post by SeriousTyro »

localghost wrote:Since you are loading the amsmath package, you should use its environments (proof, cases, ...). Take a look at its manual.
Theorems can be setup with the amsthm package.
Thanks for the reply. After I finished typesetting this I continued with lshort and got to the part of amsthm, proof, and cases. So I'll definitely be integrating those next time.
localghost wrote:Explain what »up« means in this context.
When I said move the whole document up, I meant having the header space on the first page shrink. It looks nice with the spacing Latex did from the top of the page to the title but just wondering what I could do to shrink it.
localghost wrote:For enumerations use the enumerate environment. This and all other predefined list environments can be customized by the enumitem package.
Yea, I had some lists in the document. I'll try using enumerate next time.
Post Reply