Category Archive
STRUCTURE
·2 min read
Cross-Referencing in LaTeX with \label and \ref
To cross-reference in LaTeX, mark targets with \label{key} and cite with \ref{key} for the number or \pageref{key} for the page. cleveref adds the type word.
latexcross-reference
Open →·2 min read
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.
latexappendix
Open →·2 min read
Multi-File LaTeX Projects: \input vs \include
Use \input{file} to insert content inline and \include{file} for chapters on a new page with selective compilation via \includeonly. Here's when to use each.
latexstructure
Open →·2 min read
Add a Table of Contents, List of Figures in LaTeX
To add a table of contents in LaTeX, place \tableofcontents after your title and compile twice. Add \listoffigures and \listoftables the same way.
latexstructure
Open →