Journal Archive — Page 3
Line Spacing & Double Spacing in LaTeX (setspace)
To double-space a LaTeX document, load the setspace package and use \doublespacing, or \onehalfspacing for 1.5. Apply spacing to the whole document or a section.
Numbered & Bulleted Lists in LaTeX (enumitem)
Make lists in LaTeX with the itemize and enumerate environments; use the enumitem package to customize labels, spacing, and numbering. Copy-paste examples inside.
LaTeX Page Layout: Margins with geometry
To set margins in LaTeX, load the geometry package and specify them, e.g. \usepackage[margin=1in]{geometry}. Control paper size, binding offset, and more.
How to Add an Appendix in LaTeX
To add an appendix in LaTeX, use the \appendix command before your appendix sections — it switches numbering to A, B, C automatically. Full setup inside.
hyperref: Clickable Links, Bookmarks & PDF Metadata
Load the hyperref package last to make every \ref, \cite, and URL clickable in the PDF, add bookmarks, and set document metadata. Setup and options inside.
How to Add Footnotes & Margin Notes in LaTeX
To add a footnote in LaTeX, use \footnote{text} where the mark should appear. Use \marginpar or the marginnote package for notes in the margin.