Add A4 layout

latex-old
David Holland 2020-05-22 00:42:07 +02:00
parent c247ffd28c
commit 7156e9efd1
Signed by: DustVoice
GPG Key ID: 47068995A14EDCA9
5 changed files with 14 additions and 0 deletions

3
.gitignore vendored
View File

@ -3,5 +3,8 @@
!/.gitignore
!/dustdoc.cls
!/generate-pdfs
!/Documentation.tex
!/Documentation.pdf
!/print_a4.tex
!/print_a4.pdf

Binary file not shown.

4
generate-pdfs Executable file
View File

@ -0,0 +1,4 @@
#!/usr/bin/env bash
lualatex -shell-escape Documentation.tex
lualatex -shell-escape Documentation.tex
lualatex print_a4.tex

BIN
print_a4.pdf Normal file

Binary file not shown.

7
print_a4.tex Normal file
View File

@ -0,0 +1,7 @@
\documentclass[a4paper]{report}
\usepackage[final]{pdfpages}
\begin{document}
\includepdf[pages=-,nup=1x2,landscape]{Documentation.pdf}
\end{document}