2
0
mirror of https://github.com/chubin/cheat.sheets synced 2024-11-17 09:25:32 +00:00
cheat.sheets/sheets/_latex/Basics
Thomas Sullivan cb468a8080 added latex
2019-08-02 07:45:00 -05:00

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}