commit 6f968eacdbd12bc8ae44fac0223dea518c4b639d
parent 3915485779832037ce774ce1ac549e9213938e96
Author: krasjet
Date: 2020-07-25 10:08Z
add test pdf
Diffstat:
3 files changed, 55 insertions(+), 0 deletions(-)
diff --git a/.gitignore b/.gitignore
@@ -1,3 +1,9 @@
poetry.lock
dist
__pycache__
+*.aux
+*.dvi
+*.fdb_latexmk
+*.fls
+*.log
+*.pdf
diff --git a/pdfgen/Makefile b/pdfgen/Makefile
@@ -0,0 +1,9 @@
+.PHONY: all clean
+
+all: level2.pdf
+
+%.pdf: %.tex
+ latexmk $<
+
+clean:
+ rm -f *.aux *.dvi *.fdb_latexmk *.fls *.log *.pdf
diff --git a/pdfgen/level2.tex b/pdfgen/level2.tex
@@ -0,0 +1,40 @@
+\documentclass{article}
+
+\usepackage{lipsum}
+
+\title{2 Level Heading Test}
+\author{krasjet}
+\date{}
+
+\begin{document}
+\maketitle
+
+\section{Section One}
+
+\lipsum[2-4]
+
+\section{Section Two}
+
+\lipsum[2-5]
+
+\subsection{Subsection Two.One}
+\lipsum[2-5]
+
+\section{Section Three, with looong loooong looong title}
+
+\lipsum[1-2]
+
+\subsection{Subsection Three.One, with even loooooooooooonger title, and probably even more}
+\lipsum[2-5]
+
+\subsection{Subsection Three.Two}
+\lipsum[1-1]
+
+\subsubsection{Subsection Three.Two}
+\lipsum[2-3]
+
+\section{The End}
+
+\lipsum[2-5]
+
+\end{document}