mirror of
https://github.com/chubin/cheat.sheets
synced 2024-11-01 21:40:24 +00:00
18 lines
368 B
Plaintext
18 lines
368 B
Plaintext
|
# Basic document structure
|
||
|
\documentclass[a4paper,12pt]{article}
|
||
|
\begin{document}
|
||
|
A sentence of text.
|
||
|
\end{document}
|
||
|
|
||
|
# Document comments
|
||
|
% this text is a comment because the line begins with a %
|
||
|
|
||
|
# Comment blocks
|
||
|
\usepackage{comment}
|
||
|
\begin{comment}
|
||
|
This is a larger block of commented text
|
||
|
that can span multiple lines and is ignored
|
||
|
by the compiler.
|
||
|
\end{comment}
|
||
|
|