summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/blowup/blowup-ex4.tex
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2018-01-04 23:45:00 +0000
committerKarl Berry <karl@freefriends.org>2018-01-04 23:45:00 +0000
commit9c69fe52ff1acb0639831fa85ba6e9723f5fd56a (patch)
tree309a0ea2d956ced37d400bb7433d370a929132ed /Master/texmf-dist/doc/latex/blowup/blowup-ex4.tex
parent937c0c0c07db3420b384d8d613edd9dfed1d13e5 (diff)
blowup (4jan18)
git-svn-id: svn://tug.org/texlive/trunk@46213 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex/blowup/blowup-ex4.tex')
-rw-r--r--Master/texmf-dist/doc/latex/blowup/blowup-ex4.tex64
1 files changed, 64 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/blowup/blowup-ex4.tex b/Master/texmf-dist/doc/latex/blowup/blowup-ex4.tex
new file mode 100644
index 00000000000..d7c12f9677b
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/blowup/blowup-ex4.tex
@@ -0,0 +1,64 @@
+
+%---------------------------
+% Rolf Niepraschk, Rolf.Niepraschk@gmx.de, 2017-07-28
+
+% lualatex blowup-test.tex
+% or
+% pdflatex blowup-test.tex
+% or
+% latex blowup-test.tex ; dvips blowup-test ; ps2pdf blowup-test.ps
+% or
+% vlatex blowup-test.tex
+%
+% pdfinfo blowup-test.pdf
+
+\listfiles
+\documentclass[paper=a4,landscape]{scrartcl}
+\usepackage{array,xcolor}
+
+% Only to show the source page size.
+\usepackage{eso-pic}
+\AddToShipoutPicture{%
+ \AtPageLowerLeft{\textcolor{green!30}{\rule{\paperwidth}{\paperheight}}}%
+}
+
+\renewcommand\familydefault{\sfdefault}
+\setlength\parindent{0pt}
+\pagestyle{empty}
+
+\usepackage{blowup}% Load "blowup" as last package!
+\blowUp{target=a0,landscape,onepage}
+
+\begin{document}
+
+\null\vfill
+
+\Large\centering
+
+The first page of a multipage A4-size document scaled to \mbox{A0-size paper}
+(useful for poster)
+
+\vfill
+
+\setlength\extrarowheight{.5ex}
+\begin{tabular}{|>{\bfseries}l<{:}r<{\,mm}!{$\times$}r<{\,mm}|} \hline
+ letter & 216 & 279 \\
+ legal & 216 & 356 \\
+ executive & 184 & 267 \\
+ A8 & 52 & 74 \\
+ A7 & 74 & 105 \\
+ A6 & 105 & 148 \\
+ A5 & 148 & 210 \\
+ A4 & 210 & 297 \\
+ A3 & 297 & 420 \\
+ A2 & 420 & 594 \\
+ A1 & 594 & 841 \\
+ A0 & 841 & 1189 \\ \hline
+\end{tabular}
+
+\vfill
+
+\newpage\null 2nd page\,\dots
+
+\end{document}
+%---------------------------