2
0
Fork 0
mirror of https://github.com/MartinThoma/LaTeX-examples.git synced 2025-04-19 11:38:05 +02:00

Add minimal document

This commit is contained in:
Martin Thoma 2016-02-29 12:33:06 +01:00
parent b3529028f7
commit d113a4df49
2 changed files with 16 additions and 0 deletions

View file

@ -0,0 +1,8 @@
SOURCE=minimal-document
make:
pdflatex $(SOURCE).tex -output-format=pdf
make clean
clean:
rm -rf $(TARGET) *.class *.html *.log *.aux *.out

View file

@ -0,0 +1,8 @@
\documentclass[a4paper]{scrartcl}
\usepackage[ngerman]{babel}
\usepackage[utf8]{inputenc}
\usepackage{amssymb,amsmath}
\begin{document}
Whatever
\end{document}