Initial commit

This commit is contained in:
Kenneth John Odle 2021-11-21 12:17:04 -05:00
parent 4c86b65241
commit 45d7c7aa0b
7 changed files with 29 additions and 0 deletions

4
.gitignore vendored Normal file
View File

@ -0,0 +1,4 @@
*.aux
*.log
*.gz
*.toc

BIN
build/integral.pdf Normal file

Binary file not shown.

BIN
build/new-page-width.pdf Normal file

Binary file not shown.

BIN
build/pythagorean.pdf Normal file

Binary file not shown.

7
integral.tex Normal file
View File

@ -0,0 +1,7 @@
\documentclass{standalone}
\begin{document}
\begin{math}
\int_{a}^{b} x^2 \,dx
\end{math}
\end{document}

14
new-page-width.tex Normal file
View File

@ -0,0 +1,14 @@
\documentclass{article}
\usepackage[
left=0.1cm,
right=0.1cm,
top=0.1cm,
bottom=0.1cm]
{geometry}
\begin{document}
\pdfpagewidth=2.3cm \pdfpageheight=0.7cm
\noindent $ x^n + y^n = z^n $
\newpage
\pdfpagewidth=10cm \pdfpageheight=6cm
\parbox[bottom][6cm][c]{10cm}{$ x^n + y^n = z^n $ \\ Plus some additional text.}
\end{document}

4
pythagorean.tex Normal file
View File

@ -0,0 +1,4 @@
\documentclass{standalone}
\begin{document}
$ x^n + y^n = z^n $
\end{document}