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:
parent
b3529028f7
commit
d113a4df49
2 changed files with 16 additions and 0 deletions
8
documents/minimal-document/Makefile
Normal file
8
documents/minimal-document/Makefile
Normal 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
|
8
documents/minimal-document/minimal-document.tex
Normal file
8
documents/minimal-document/minimal-document.tex
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
\documentclass[a4paper]{scrartcl}
|
||||||
|
\usepackage[ngerman]{babel}
|
||||||
|
\usepackage[utf8]{inputenc}
|
||||||
|
\usepackage{amssymb,amsmath}
|
||||||
|
|
||||||
|
\begin{document}
|
||||||
|
Whatever
|
||||||
|
\end{document}
|
Loading…
Add table
Add a link
Reference in a new issue