1 % The UCW Macro Collection (a successor of mjmac.tex)
2 % Written by Martin Mares <mj@ucw.cz> in 2010 and placed into public domain
3 % -------------------------------------------------------------------------
7 % We'll use internal macros of plain TeX
10 %%% PDF output detection %%%
15 \ifx\pdfoutput\undefined
16 \else\ifnum\pdfoutput>0
20 %%% Page size and margins %%%
22 % If you modify these registers, call \setuppage afterwards
28 \newdimen\bottommargin
29 \newdimen\evenpageshift
33 \advance\hsize by -\leftmargin
34 \advance\hsize by -\rightmargin
36 \advance\vsize by -\topmargin
37 \advance\vsize by -\bottommargin
39 \advance\hoffset by -1truein
41 \advance\voffset by -1truein
43 \pdfpagewidth=\pagewidth
44 \pdfpageheight=\pageheight
48 % Set multiple margins to the same value
49 \def\sethmargins#1{\leftmargin=#1\relax\rightmargin=#1\relax\evenpageshift=0pt\relax}
50 \def\setvmargins#1{\topmargin=#1\relax\bottommargin=#1\relax}
51 \def\setmargins#1{\sethmargins{#1}\setvmargins{#1}}
53 % Define inner/outer margin instead of left/right
54 \def\setinneroutermargin#1#2{\sethmargins{#1}{#2}\evenpageshift=\rightmargin\advance\evenpageshift by -\leftmargin}
56 % Use a predefined paper format, calls \setuppage automagically
58 \expandafter\let\expandafter\currentpaper\csname paper-#1\endcsname
59 \ifx\currentpaper\relax
60 \errmessage{Undefined paper format #1}
65 % Switch to landscape orientation, calls \setuppage automagically
68 \pageheight=\pagewidth
74 \def\defpaper#1#2#3{\expandafter\def\csname paper-#1\endcsname{\pagewidth=#2\pageheight=#3\setuppage}}
75 \defpaper{a3}{297truemm}{420truemm}
76 \defpaper{a4}{210truemm}{297truemm}
77 \defpaper{a5}{148truemm}{210truemm}
78 \defpaper{a6}{105truemm}{148truemm}
79 \defpaper{letter}{8.5truein}{11truein}
80 \defpaper{legal}{8.5truein}{14truein}
82 % Default page parameters
86 %%% Placing material at specified coordinates %%%
88 % Set all dimensions of a given box register to zero
89 \def\smashbox#1{\ht#1=0pt \dp#1=0pt \wd#1=0pt}
90 \def\smashedhbox#1{{\setbox0=\hbox{#1}\smashbox0\box0}}
91 \def\smashedvbox#1{{\setbox0=\vbox{#1}\smashbox0\box0}}
93 % Variants of \llap and \rlap working equally on both sides and/or vertically
94 \def\hlap#1{\hbox to 0pt{\hss #1\hss}}
95 \def\vlap#1{\vbox to 0pt{\vss #1\vss}}
96 \def\clap#1{\vlap{\hlap{#1}}}
98 % \placeat{right}{down}{hmaterial} places <hmaterial>, so that its
99 % reference point lies at the given position wrt. the current ref point
100 \long\def\placeat#1#2#3{\smashedhbox{\hskip #1\lower #2\hbox{#3}}}
102 % Like \vbox, but with reference point in the upper left corner
103 \def\vhang#1{\vtop{\hrule height 0pt\relax #1}}
105 % Like \vhang, but respecting interline skips
106 \def\vhanglines#1{\vtop{\hbox to 0pt{}#1}}
108 % Crosshair with reference point in its center
109 \def\crosshair#1{\clap{\vrule height 0.2pt width #1}\clap{\vrule height #1 width 0.2pt}}
111 %%% Output routine %%%
113 \newbox\pageunderlays
115 \newbox\commonunderlays
116 \newbox\commonoverlays
118 % In addition to the normal page contents, you can define page overlays
119 % and underlays, which are zero-size vboxes positioned absolutely in the
120 % front / in the back of the normal material. Also, there are global
121 % versions of both which are not reset after every page.
122 \def\addlay#1#2{\setbox#1=\vbox{\ifvbox#1\box#1\fi\smashedvbox{#2}}}
123 \def\pageunderlay{\addlay\pageunderlays}
124 \def\pageoverlay{\addlay\pageoverlays}
125 \def\commonunderlay{\addlay\commonoverlays}
126 \def\commonoverlay{\addlay\commonoverlays}
128 % Our variation on \plainoutput, which manages inner/outer margins and overlays
130 \def\ucwoutput{\wigglepage\shipout\vbox{%
132 \ifvbox\commonunderlays\copy\commonunderlays\nointerlineskip\fi
133 \ifvbox\pageunderlays\box\pageunderlays\nointerlineskip\fi
135 \ifvbox\commonoverlays\vbox to 0pt{\vskip -\vsize\copy\commonoverlays}\fi
136 \ifvbox\pageoverlays\vbox to 0pt{\vskip -\vsize\box\pageoverlays}\fi
139 \ifnum\outputpenalty>-\@MM \else\dosupereject\fi}
141 \def\wigglepage{\ifodd\pageno\else\advance\hoffset by \evenpageshift\fi}
145 % Let's hide all internal macros