2
0
Fork 0
mirror of https://github.com/MartinThoma/LaTeX-examples.git synced 2025-04-19 11:38:05 +02:00
This commit is contained in:
Martin Thoma 2014-03-07 12:20:36 +01:00
parent 575de5f3d1
commit 7efffcec0c
2 changed files with 19 additions and 0 deletions

8
math/sizes/Makefile Normal file
View file

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

11
math/sizes/sizes.tex Normal file
View file

@ -0,0 +1,11 @@
\documentclass[a4paper,9pt]{scrartcl}
\usepackage[ngerman]{babel}
\usepackage[utf8]{inputenc}
\usepackage{amssymb,amsmath}
\usepackage{geometry}
\geometry{a4paper,left=18mm,right=18mm, top=2cm, bottom=2cm}
\begin{document}
\section{braces}
\[-1+x ( x \big( 1+ x\Big(2 + x \bigg(3+ x\Bigg(4+x \Bigg) \bigg) \Big) \big) ) \]
\end{document}