summaryrefslogtreecommitdiff
path: root/macros/latex/contrib/blowup/blowup-ex4.tex
blob: d7c12f9677b0804b78f8943d09dfe73e7154e578 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
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}
%---------------------------