2
0
mirror of https://github.com/chubin/cheat.sheets synced 2024-11-01 21:40:24 +00:00
cheat.sheets/sheets/_latex/Basics

18 lines
368 B
Plaintext
Raw Normal View History

2019-08-02 12:45:00 +00:00
# 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}