2
0
mirror of https://github.com/chubin/cheat.sheets synced 2024-11-19 03:25:44 +00:00

Merge pull request #62 from sullivant/latex

added latex and basic information.
This commit is contained in:
Igor Chubin 2019-08-02 14:51:54 +02:00 committed by GitHub
commit 60833be60a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

17
sheets/_latex/Basics Normal file
View File

@ -0,0 +1,17 @@
# 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}