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.
Page Layout ⇒ Help with formatting a document
-
- Posts: 2
- Joined: Sat Nov 14, 2009 9:21 am
Help with formatting a document
- 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.
NEW: TikZ book now 40% off at Amazon.com for a short time.
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Help with formatting a document
Explain what »up« means in this context.SeriousTyro wrote:[...] For example what command could I use to move the whole document up? [...]
Looking at your provided code there is list of things to be improved.SeriousTyro wrote:[...] Also any tips with how I can make my document better would be helpful. [...]
- 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.
[1] View topic: LaTeX Resources for Beginners
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: 2
- Joined: Sat Nov 14, 2009 9:21 am
Help with formatting a document
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: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.
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:Explain what »up« means in this context.
Yea, I had some lists in the document. I'll try using enumerate next time.localghost wrote:For enumerations use the enumerate environment. This and all other predefined list environments can be customized by the enumitem package.