Initial Windows agent repository
This commit is contained in:
commit
a0db0c2e5b
10589 changed files with 3844063 additions and 0 deletions
709
OGP64/usr/share/doc/groff-1.24.1/examples/hdtbl/chess_board.ps
Normal file
709
OGP64/usr/share/doc/groff-1.24.1/examples/hdtbl/chess_board.ps
Normal file
|
|
@ -0,0 +1,709 @@
|
|||
%!PS-Adobe-3.0
|
||||
%%Creator: groff version 1.24.1
|
||||
%%CreationDate: Mon Mar 16 21:27:47 2026
|
||||
%%DocumentNeededResources: font Times-Bold
|
||||
%%+ font Times-Roman
|
||||
%%DocumentSuppliedResources: procset grops 1.24 1
|
||||
%%Pages: 1
|
||||
%%PageOrder: Ascend
|
||||
%%DocumentMedia: Default 612 792 0 () ()
|
||||
%%Orientation: Portrait
|
||||
%%EndComments
|
||||
%%BeginDefaults
|
||||
%%PageMedia: Default
|
||||
%%EndDefaults
|
||||
%%BeginProlog
|
||||
%%BeginResource: procset grops 1.24 1
|
||||
%!PS-Adobe-3.0 Resource-ProcSet
|
||||
/setpacking where{
|
||||
pop
|
||||
currentpacking
|
||||
true setpacking
|
||||
}if
|
||||
/grops 120 dict dup begin
|
||||
% The ASCII code of the space character.
|
||||
/SC 32 def
|
||||
/A/show load def
|
||||
/B{0 SC 3 -1 roll widthshow}bind def
|
||||
/C{0 exch ashow}bind def
|
||||
/D{0 exch 0 SC 5 2 roll awidthshow}bind def
|
||||
/E{0 rmoveto show}bind def
|
||||
/F{0 rmoveto 0 SC 3 -1 roll widthshow}bind def
|
||||
/G{0 rmoveto 0 exch ashow}bind def
|
||||
/H{0 rmoveto 0 exch 0 SC 5 2 roll awidthshow}bind def
|
||||
/I{0 exch rmoveto show}bind def
|
||||
/J{0 exch rmoveto 0 SC 3 -1 roll widthshow}bind def
|
||||
/K{0 exch rmoveto 0 exch ashow}bind def
|
||||
/L{0 exch rmoveto 0 exch 0 SC 5 2 roll awidthshow}bind def
|
||||
/M{rmoveto show}bind def
|
||||
/N{rmoveto 0 SC 3 -1 roll widthshow}bind def
|
||||
/O{rmoveto 0 exch ashow}bind def
|
||||
/P{rmoveto 0 exch 0 SC 5 2 roll awidthshow}bind def
|
||||
/Q{moveto show}bind def
|
||||
/R{moveto 0 SC 3 -1 roll widthshow}bind def
|
||||
/S{moveto 0 exch ashow}bind def
|
||||
/T{moveto 0 exch 0 SC 5 2 roll awidthshow}bind def
|
||||
% name size font SF -
|
||||
/SF{
|
||||
findfont exch
|
||||
[exch dup 0 exch 0 exch neg 0 0]makefont
|
||||
dup setfont
|
||||
[exch/setfont cvx]cvx bind def
|
||||
}bind def
|
||||
% name a c d font MF -
|
||||
/MF{
|
||||
findfont
|
||||
[5 2 roll
|
||||
0 3 1 roll % b
|
||||
neg 0 0]makefont
|
||||
dup setfont
|
||||
[exch/setfont cvx]cvx bind def
|
||||
}bind def
|
||||
/level0 0 def
|
||||
/RES 0 def
|
||||
/PL 0 def
|
||||
/LS 0 def
|
||||
% Enable manual feed.
|
||||
% MANUAL -
|
||||
/MANUAL{
|
||||
statusdict begin/manualfeed true store end
|
||||
}bind def
|
||||
% Guess the page length.
|
||||
% This assumes that the imageable area is vertically centered on the page.
|
||||
% PLG - length
|
||||
/PLG{
|
||||
gsave newpath clippath pathbbox grestore
|
||||
exch pop add exch pop
|
||||
}bind def
|
||||
% BP -
|
||||
/BP{
|
||||
/level0 save def
|
||||
1 setlinecap
|
||||
1 setlinejoin
|
||||
DEFS/BPhook known{DEFS begin BPhook end}if
|
||||
72 RES div dup scale
|
||||
LS{
|
||||
90 rotate
|
||||
}{
|
||||
0 PL translate
|
||||
}ifelse
|
||||
1 -1 scale
|
||||
}bind def
|
||||
/EP{
|
||||
level0 restore
|
||||
showpage
|
||||
}def
|
||||
% centerx centery radius startangle endangle DA -
|
||||
/DA{
|
||||
newpath arcn stroke
|
||||
}bind def
|
||||
% x y SN - x' y'
|
||||
% round a position to nearest (pixel + (.25,.25))
|
||||
/SN{
|
||||
transform
|
||||
.25 sub exch .25 sub exch
|
||||
round .25 add exch round .25 add exch
|
||||
itransform
|
||||
}bind def
|
||||
% endx endy startx starty DL -
|
||||
% we round the endpoints of the line, so that parallel horizontal
|
||||
% and vertical lines will appear even
|
||||
/DL{
|
||||
SN
|
||||
moveto
|
||||
SN
|
||||
lineto stroke
|
||||
}bind def
|
||||
% centerx centery radius DC -
|
||||
/DC{
|
||||
newpath 0 360 arc closepath
|
||||
}bind def
|
||||
/TM matrix def
|
||||
% width height centerx centery DE -
|
||||
/DE{
|
||||
TM currentmatrix pop
|
||||
translate scale newpath 0 0 .5 0 360 arc closepath
|
||||
TM setmatrix
|
||||
}bind def
|
||||
% these are for splines
|
||||
/RC/rcurveto load def
|
||||
/RL/rlineto load def
|
||||
/ST/stroke load def
|
||||
/MT/moveto load def
|
||||
/CL/closepath load def
|
||||
% fill the last path
|
||||
% r g b Fr -
|
||||
/Fr{
|
||||
setrgbcolor fill
|
||||
}bind def
|
||||
% c m y k Fk -
|
||||
/setcmykcolor where{
|
||||
pop
|
||||
/Fk{
|
||||
setcmykcolor fill
|
||||
}bind def
|
||||
}if
|
||||
% g Fg -
|
||||
/Fg{
|
||||
setgray fill
|
||||
}bind def
|
||||
% fill with the "current color"
|
||||
/FL/fill load def
|
||||
/LW/setlinewidth load def
|
||||
/Cr/setrgbcolor load def
|
||||
/setcmykcolor where{
|
||||
pop
|
||||
/Ck/setcmykcolor load def
|
||||
}if
|
||||
/Cg/setgray load def
|
||||
% new_font_name encoding_vector old_font_name RE -
|
||||
/RE{
|
||||
findfont
|
||||
dup maxlength 1 index/FontName known not{1 add}if dict begin
|
||||
{
|
||||
1 index/FID ne
|
||||
2 index/UniqueID ne
|
||||
and
|
||||
{def}{pop pop}ifelse
|
||||
}forall
|
||||
/Encoding exch def
|
||||
dup/FontName exch def
|
||||
currentdict end definefont pop
|
||||
}bind def
|
||||
/DEFS 0 def
|
||||
% hpos vpos EBEGIN -
|
||||
/EBEGIN{
|
||||
moveto
|
||||
DEFS begin
|
||||
}bind def
|
||||
/EEND/end load def
|
||||
/CNT 0 def
|
||||
/level1 0 def
|
||||
% llx lly newwid wid newht ht newllx newlly PBEGIN -
|
||||
/PBEGIN{
|
||||
/level1 save def
|
||||
translate
|
||||
div 3 1 roll div exch scale
|
||||
neg exch neg exch translate
|
||||
% set the graphics state to default values
|
||||
0 setgray
|
||||
0 setlinecap
|
||||
1 setlinewidth
|
||||
0 setlinejoin
|
||||
10 setmiterlimit
|
||||
[]0 setdash
|
||||
/setstrokeadjust where{
|
||||
pop
|
||||
false setstrokeadjust
|
||||
}if
|
||||
/setoverprint where{
|
||||
pop
|
||||
false setoverprint
|
||||
}if
|
||||
newpath
|
||||
/CNT countdictstack def
|
||||
userdict begin
|
||||
/showpage{}def
|
||||
%
|
||||
% Any included setpagedevice should be ignored.
|
||||
% See: http://www.w-beer.de/doc/ps/.
|
||||
%
|
||||
/setpagedevice{}def
|
||||
mark
|
||||
}bind def
|
||||
/PEND{
|
||||
cleartomark
|
||||
countdictstack CNT sub{end}repeat
|
||||
level1 restore
|
||||
}bind def
|
||||
end def
|
||||
/setpacking where{
|
||||
pop
|
||||
setpacking
|
||||
}if
|
||||
%%EndResource
|
||||
%%EndProlog
|
||||
%%BeginSetup
|
||||
%%BeginFeature: *PageSize Default
|
||||
<< /PageSize [ 612 792 ] /ImagingBBox null >> setpagedevice
|
||||
%%EndFeature
|
||||
%%IncludeResource: font Times-Bold
|
||||
%%IncludeResource: font Times-Roman
|
||||
grops begin/DEFS 52 dict def DEFS begin/u{.001 mul}bind def end/RES 72
|
||||
def/PL 792 def/LS false def/ENC0[/asciicircum/asciitilde/Scaron/Zcaron
|
||||
/scaron/zcaron/Ydieresis/trademark/quotesingle/Euro/.notdef/.notdef
|
||||
/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef
|
||||
/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef
|
||||
/.notdef/.notdef/space/exclam/quotedbl/numbersign/dollar/percent
|
||||
/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen
|
||||
/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon
|
||||
/semicolon/less/equal/greater/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O
|
||||
/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/backslash/bracketright/circumflex
|
||||
/underscore/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y
|
||||
/z/braceleft/bar/braceright/tilde/.notdef/quotesinglbase/guillemotleft
|
||||
/guillemotright/bullet/florin/fraction/perthousand/dagger/daggerdbl
|
||||
/endash/emdash/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/hungarumlaut
|
||||
/dotaccent/breve/caron/ring/ogonek/quotedblleft/quotedblright/oe/lslash
|
||||
/quotedblbase/OE/Lslash/.notdef/exclamdown/cent/sterling/currency/yen
|
||||
/brokenbar/section/dieresis/copyright/ordfeminine/guilsinglleft
|
||||
/logicalnot/minus/registered/macron/degree/plusminus/twosuperior
|
||||
/threesuperior/acute/mu/paragraph/periodcentered/cedilla/onesuperior
|
||||
/ordmasculine/guilsinglright/onequarter/onehalf/threequarters
|
||||
/questiondown/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE
|
||||
/Ccedilla/Egrave/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex
|
||||
/Idieresis/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis
|
||||
/multiply/Oslash/Ugrave/Uacute/Ucircumflex/Udieresis/Yacute/Thorn
|
||||
/germandbls/agrave/aacute/acircumflex/atilde/adieresis/aring/ae/ccedilla
|
||||
/egrave/eacute/ecircumflex/edieresis/igrave/iacute/icircumflex/idieresis
|
||||
/eth/ntilde/ograve/oacute/ocircumflex/otilde/odieresis/divide/oslash
|
||||
/ugrave/uacute/ucircumflex/udieresis/yacute/thorn/ydieresis]def
|
||||
/Times-Roman@0 ENC0/Times-Roman RE/Times-Bold@0 ENC0/Times-Bold RE
|
||||
%%EndSetup
|
||||
%%Page: 1 1
|
||||
%%BeginPageSetup
|
||||
BP
|
||||
%%EndPageSetup
|
||||
236.031 87.74 MT 109.322 0 RL 0 23 RL -109.322 0 RL CL 0.545 0 0 Fr 1 1
|
||||
0 Cr/F0 17/Times-Bold@0 SF(Chessboard)247.716 102.3 Q 231.031 97.3
|
||||
EBEGIN
|
||||
0 setlinejoin 2 setlinecap
|
||||
EEND 5 LW 347.853 85.24 233.531 85.24 DL 347.853 113.24 347.853 85.24 DL
|
||||
233.531 113.24 347.853 113.24 DL 233.531 85.24 233.531 113.24 DL 0.545 0
|
||||
0 Cr 112.026 162.35 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 154.63 157.06 109.276 157.06 DL/F0 10/Times-Roman@0 SF(a)
|
||||
129.733 150.35 Q 157.38 162.35 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 199.984 157.06 154.63 157.06 DL/F0 10/Times-Roman@0 SF(b)
|
||||
174.807 150.35 Q 202.734 162.35 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 245.338 157.06 199.984 157.06 DL/F0 10/Times-Roman@0 SF(c)
|
||||
220.441 150.35 Q 248.088 162.35 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 290.692 157.06 245.338 157.06 DL/F0 10/Times-Roman@0 SF(d)
|
||||
265.515 150.35 Q 293.442 162.35 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 336.046 157.06 290.692 157.06 DL/F0 10/Times-Roman@0 SF(e)
|
||||
311.149 150.35 Q 338.796 162.35 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 381.4 157.06 336.046 157.06 DL/F0 10/Times-Roman@0 SF(f)
|
||||
357.058 150.35 Q 384.15 162.35 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 426.754 157.06 381.4 157.06 DL/F0 10/Times-Roman@0 SF(g)
|
||||
401.577 150.35 Q 429.504 162.35 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 472.108 157.06 426.754 157.06 DL/F0 10/Times-Roman@0 SF(h)
|
||||
446.931 150.35 Q 66.672 167.85 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 109.276 202.664 109.276 157.06 DL/F0 10/Times-Roman@0 SF(8)
|
||||
101.526 181.777 Q 109.526 157.31 MT 44.854 0 RL 0 44.854 RL -44.854 0 RL
|
||||
CL 0.961 0.871 0.702 Fr 0.545 0 0 Cr 112.026 207.704 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 154.63 202.414 109.276 202.414 DL 112.026 167.85 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 154.63 202.664 154.63 157.06 DL 154.88 157.31 MT 44.854 0 RL
|
||||
0 44.854 RL -44.854 0 RL CL 0.804 0.522 0.247 Fr 0.545 0 0 Cr 157.38
|
||||
207.704 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 199.984 202.414 154.63 202.414 DL 157.38 167.85 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 199.984 202.664 199.984 157.06 DL 200.234 157.31 MT 44.854 0
|
||||
RL 0 44.854 RL -44.854 0 RL CL 0.961 0.871 0.702 Fr 0.545 0 0 Cr 202.734
|
||||
207.704 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 245.338 202.414 199.984 202.414 DL 202.734 167.85 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 245.338 202.664 245.338 157.06 DL 245.588 157.31 MT 44.854 0
|
||||
RL 0 44.854 RL -44.854 0 RL CL 0.804 0.522 0.247 Fr 0.545 0 0 Cr 248.088
|
||||
207.704 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 290.692 202.414 245.338 202.414 DL 248.088 167.85 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 290.692 202.664 290.692 157.06 DL 290.942 157.31 MT 44.854 0
|
||||
RL 0 44.854 RL -44.854 0 RL CL 0.961 0.871 0.702 Fr 0.545 0 0 Cr 293.442
|
||||
207.704 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 336.046 202.414 290.692 202.414 DL 293.442 167.85 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 336.046 202.664 336.046 157.06 DL 336.296 157.31 MT 44.854 0
|
||||
RL 0 44.854 RL -44.854 0 RL CL 0.804 0.522 0.247 Fr 0.545 0 0 Cr 338.796
|
||||
207.704 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 381.4 202.414 336.046 202.414 DL 338.796 167.85 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 381.4 202.664 381.4 157.06 DL 381.65 157.31 MT 44.854 0 RL 0
|
||||
44.854 RL -44.854 0 RL CL 0.961 0.871 0.702 Fr 0.545 0 0 Cr 384.15
|
||||
207.704 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 426.754 202.414 381.4 202.414 DL 384.15 167.85 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 426.754 202.664 426.754 157.06 DL 427.004 157.31 MT 44.854 0
|
||||
RL 0 44.854 RL -44.854 0 RL CL 0.804 0.522 0.247 Fr 0.545 0 0 Cr 429.504
|
||||
207.704 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 472.108 202.414 426.754 202.414 DL 429.504 167.85 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 472.108 202.664 472.108 157.06 DL/F0 10/Times-Roman@0 SF(8)
|
||||
474.858 181.777 Q 66.672 213.204 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 109.276 248.018 109.276 202.414 DL/F0 10/Times-Roman@0 SF(7)
|
||||
101.526 227.131 Q 109.526 202.664 MT 44.854 0 RL 0 44.854 RL -44.854 0
|
||||
RL CL 0.804 0.522 0.247 Fr 0.545 0 0 Cr 112.026 253.058 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 154.63 247.768 109.276 247.768 DL 112.026 213.204 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 154.63 248.018 154.63 202.414 DL 154.88 202.664 MT 44.854 0
|
||||
RL 0 44.854 RL -44.854 0 RL CL 0.961 0.871 0.702 Fr 0.545 0 0 Cr 157.38
|
||||
253.058 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 199.984 247.768 154.63 247.768 DL 157.38 213.204 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 199.984 248.018 199.984 202.414 DL 200.234 202.664 MT 44.854
|
||||
0 RL 0 44.854 RL -44.854 0 RL CL 0.804 0.522 0.247 Fr 0.545 0 0 Cr
|
||||
202.734 253.058 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 245.338 247.768 199.984 247.768 DL 202.734 213.204 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 245.338 248.018 245.338 202.414 DL 245.588 202.664 MT 44.854
|
||||
0 RL 0 44.854 RL -44.854 0 RL CL 0.961 0.871 0.702 Fr 0.545 0 0 Cr
|
||||
248.088 253.058 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 290.692 247.768 245.338 247.768 DL 248.088 213.204 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 290.692 248.018 290.692 202.414 DL 290.942 202.664 MT 44.854
|
||||
0 RL 0 44.854 RL -44.854 0 RL CL 0.804 0.522 0.247 Fr 0.545 0 0 Cr
|
||||
293.442 253.058 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 336.046 247.768 290.692 247.768 DL 293.442 213.204 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 336.046 248.018 336.046 202.414 DL 336.296 202.664 MT 44.854
|
||||
0 RL 0 44.854 RL -44.854 0 RL CL 0.961 0.871 0.702 Fr 0.545 0 0 Cr
|
||||
338.796 253.058 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 381.4 247.768 336.046 247.768 DL 338.796 213.204 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 381.4 248.018 381.4 202.414 DL 381.65 202.664 MT 44.854 0 RL
|
||||
0 44.854 RL -44.854 0 RL CL 0.804 0.522 0.247 Fr 0.545 0 0 Cr 384.15
|
||||
253.058 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 426.754 247.768 381.4 247.768 DL 384.15 213.204 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 426.754 248.018 426.754 202.414 DL 427.004 202.664 MT 44.854
|
||||
0 RL 0 44.854 RL -44.854 0 RL CL 0.961 0.871 0.702 Fr 0.545 0 0 Cr
|
||||
429.504 253.058 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 472.108 247.768 426.754 247.768 DL 429.504 213.204 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 472.108 248.018 472.108 202.414 DL/F0 10/Times-Roman@0 SF(7)
|
||||
474.858 227.131 Q 66.672 258.558 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 109.276 293.372 109.276 247.768 DL/F0 10/Times-Roman@0 SF(6)
|
||||
101.526 272.485 Q 109.526 248.018 MT 44.854 0 RL 0 44.854 RL -44.854 0
|
||||
RL CL 0.961 0.871 0.702 Fr 0.545 0 0 Cr 112.026 298.412 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 154.63 293.122 109.276 293.122 DL 112.026 258.558 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 154.63 293.372 154.63 247.768 DL 154.88 248.018 MT 44.854 0
|
||||
RL 0 44.854 RL -44.854 0 RL CL 0.804 0.522 0.247 Fr 0.545 0 0 Cr 157.38
|
||||
298.412 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 199.984 293.122 154.63 293.122 DL 157.38 258.558 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 199.984 293.372 199.984 247.768 DL 200.234 248.018 MT 44.854
|
||||
0 RL 0 44.854 RL -44.854 0 RL CL 0.961 0.871 0.702 Fr 0.545 0 0 Cr
|
||||
202.734 298.412 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 245.338 293.122 199.984 293.122 DL 202.734 258.558 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 245.338 293.372 245.338 247.768 DL 245.588 248.018 MT 44.854
|
||||
0 RL 0 44.854 RL -44.854 0 RL CL 0.804 0.522 0.247 Fr 0.545 0 0 Cr
|
||||
248.088 298.412 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 290.692 293.122 245.338 293.122 DL 248.088 258.558 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 290.692 293.372 290.692 247.768 DL 290.942 248.018 MT 44.854
|
||||
0 RL 0 44.854 RL -44.854 0 RL CL 0.961 0.871 0.702 Fr 0.545 0 0 Cr
|
||||
293.442 298.412 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 336.046 293.122 290.692 293.122 DL 293.442 258.558 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 336.046 293.372 336.046 247.768 DL 336.296 248.018 MT 44.854
|
||||
0 RL 0 44.854 RL -44.854 0 RL CL 0.804 0.522 0.247 Fr 0.545 0 0 Cr
|
||||
338.796 298.412 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 381.4 293.122 336.046 293.122 DL 338.796 258.558 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 381.4 293.372 381.4 247.768 DL 381.65 248.018 MT 44.854 0 RL
|
||||
0 44.854 RL -44.854 0 RL CL 0.961 0.871 0.702 Fr 0.545 0 0 Cr 384.15
|
||||
298.412 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 426.754 293.122 381.4 293.122 DL 384.15 258.558 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 426.754 293.372 426.754 247.768 DL 427.004 248.018 MT 44.854
|
||||
0 RL 0 44.854 RL -44.854 0 RL CL 0.804 0.522 0.247 Fr 0.545 0 0 Cr
|
||||
429.504 298.412 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 472.108 293.122 426.754 293.122 DL 429.504 258.558 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 472.108 293.372 472.108 247.768 DL/F0 10/Times-Roman@0 SF(6)
|
||||
474.858 272.485 Q 66.672 303.912 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 109.276 338.726 109.276 293.122 DL/F0 10/Times-Roman@0 SF(5)
|
||||
101.526 317.839 Q 109.526 293.372 MT 44.854 0 RL 0 44.854 RL -44.854 0
|
||||
RL CL 0.804 0.522 0.247 Fr 0.545 0 0 Cr 112.026 343.766 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 154.63 338.476 109.276 338.476 DL 112.026 303.912 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 154.63 338.726 154.63 293.122 DL 154.88 293.372 MT 44.854 0
|
||||
RL 0 44.854 RL -44.854 0 RL CL 0.961 0.871 0.702 Fr 0.545 0 0 Cr 157.38
|
||||
343.766 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 199.984 338.476 154.63 338.476 DL 157.38 303.912 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 199.984 338.726 199.984 293.122 DL 200.234 293.372 MT 44.854
|
||||
0 RL 0 44.854 RL -44.854 0 RL CL 0.804 0.522 0.247 Fr 0.545 0 0 Cr
|
||||
202.734 343.766 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 245.338 338.476 199.984 338.476 DL 202.734 303.912 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 245.338 338.726 245.338 293.122 DL 245.588 293.372 MT 44.854
|
||||
0 RL 0 44.854 RL -44.854 0 RL CL 0.961 0.871 0.702 Fr 0.545 0 0 Cr
|
||||
248.088 343.766 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 290.692 338.476 245.338 338.476 DL 248.088 303.912 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 290.692 338.726 290.692 293.122 DL 290.942 293.372 MT 44.854
|
||||
0 RL 0 44.854 RL -44.854 0 RL CL 0.804 0.522 0.247 Fr 0.545 0 0 Cr
|
||||
293.442 343.766 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 336.046 338.476 290.692 338.476 DL 293.442 303.912 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 336.046 338.726 336.046 293.122 DL 336.296 293.372 MT 44.854
|
||||
0 RL 0 44.854 RL -44.854 0 RL CL 0.961 0.871 0.702 Fr 0.545 0 0 Cr
|
||||
338.796 343.766 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 381.4 338.476 336.046 338.476 DL 338.796 303.912 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 381.4 338.726 381.4 293.122 DL 381.65 293.372 MT 44.854 0 RL
|
||||
0 44.854 RL -44.854 0 RL CL 0.804 0.522 0.247 Fr 0.545 0 0 Cr 384.15
|
||||
343.766 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 426.754 338.476 381.4 338.476 DL 384.15 303.912 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 426.754 338.726 426.754 293.122 DL 427.004 293.372 MT 44.854
|
||||
0 RL 0 44.854 RL -44.854 0 RL CL 0.961 0.871 0.702 Fr 0.545 0 0 Cr
|
||||
429.504 343.766 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 472.108 338.476 426.754 338.476 DL 429.504 303.912 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 472.108 338.726 472.108 293.122 DL/F0 10/Times-Roman@0 SF(5)
|
||||
474.858 317.839 Q 66.672 349.266 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 109.276 384.08 109.276 338.476 DL/F0 10/Times-Roman@0 SF(4)
|
||||
101.526 363.193 Q 109.526 338.726 MT 44.854 0 RL 0 44.854 RL -44.854 0
|
||||
RL CL 0.961 0.871 0.702 Fr 0.545 0 0 Cr 112.026 389.12 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 154.63 383.83 109.276 383.83 DL 112.026 349.266 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 154.63 384.08 154.63 338.476 DL 154.88 338.726 MT 44.854 0 RL
|
||||
0 44.854 RL -44.854 0 RL CL 0.804 0.522 0.247 Fr 0.545 0 0 Cr 157.38
|
||||
389.12 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 199.984 383.83 154.63 383.83 DL 157.38 349.266 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 199.984 384.08 199.984 338.476 DL 200.234 338.726 MT 44.854 0
|
||||
RL 0 44.854 RL -44.854 0 RL CL 0.961 0.871 0.702 Fr 0.545 0 0 Cr 202.734
|
||||
389.12 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 245.338 383.83 199.984 383.83 DL 202.734 349.266 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 245.338 384.08 245.338 338.476 DL 245.588 338.726 MT 44.854 0
|
||||
RL 0 44.854 RL -44.854 0 RL CL 0.804 0.522 0.247 Fr 0.545 0 0 Cr 248.088
|
||||
389.12 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 290.692 383.83 245.338 383.83 DL 248.088 349.266 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 290.692 384.08 290.692 338.476 DL 290.942 338.726 MT 44.854 0
|
||||
RL 0 44.854 RL -44.854 0 RL CL 0.961 0.871 0.702 Fr 0.545 0 0 Cr 293.442
|
||||
389.12 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 336.046 383.83 290.692 383.83 DL 293.442 349.266 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 336.046 384.08 336.046 338.476 DL 336.296 338.726 MT 44.854 0
|
||||
RL 0 44.854 RL -44.854 0 RL CL 0.804 0.522 0.247 Fr 0.545 0 0 Cr 338.796
|
||||
389.12 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 381.4 383.83 336.046 383.83 DL 338.796 349.266 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 381.4 384.08 381.4 338.476 DL 381.65 338.726 MT 44.854 0 RL 0
|
||||
44.854 RL -44.854 0 RL CL 0.961 0.871 0.702 Fr 0.545 0 0 Cr 384.15
|
||||
389.12 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 426.754 383.83 381.4 383.83 DL 384.15 349.266 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 426.754 384.08 426.754 338.476 DL 427.004 338.726 MT 44.854 0
|
||||
RL 0 44.854 RL -44.854 0 RL CL 0.804 0.522 0.247 Fr 0.545 0 0 Cr 429.504
|
||||
389.12 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 472.108 383.83 426.754 383.83 DL 429.504 349.266 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 472.108 384.08 472.108 338.476 DL/F0 10/Times-Roman@0 SF(4)
|
||||
474.858 363.193 Q 66.672 394.62 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 109.276 429.434 109.276 383.83 DL/F0 10/Times-Roman@0 SF(3)
|
||||
101.526 408.547 Q 109.526 384.08 MT 44.854 0 RL 0 44.854 RL -44.854 0 RL
|
||||
CL 0.804 0.522 0.247 Fr 0.545 0 0 Cr 112.026 434.474 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 154.63 429.184 109.276 429.184 DL 112.026 394.62 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 154.63 429.434 154.63 383.83 DL 154.88 384.08 MT 44.854 0 RL
|
||||
0 44.854 RL -44.854 0 RL CL 0.961 0.871 0.702 Fr 0.545 0 0 Cr 157.38
|
||||
434.474 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 199.984 429.184 154.63 429.184 DL 157.38 394.62 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 199.984 429.434 199.984 383.83 DL 200.234 384.08 MT 44.854 0
|
||||
RL 0 44.854 RL -44.854 0 RL CL 0.804 0.522 0.247 Fr 0.545 0 0 Cr 202.734
|
||||
434.474 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 245.338 429.184 199.984 429.184 DL 202.734 394.62 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 245.338 429.434 245.338 383.83 DL 245.588 384.08 MT 44.854 0
|
||||
RL 0 44.854 RL -44.854 0 RL CL 0.961 0.871 0.702 Fr 0.545 0 0 Cr 248.088
|
||||
434.474 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 290.692 429.184 245.338 429.184 DL 248.088 394.62 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 290.692 429.434 290.692 383.83 DL 290.942 384.08 MT 44.854 0
|
||||
RL 0 44.854 RL -44.854 0 RL CL 0.804 0.522 0.247 Fr 0.545 0 0 Cr 293.442
|
||||
434.474 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 336.046 429.184 290.692 429.184 DL 293.442 394.62 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 336.046 429.434 336.046 383.83 DL 336.296 384.08 MT 44.854 0
|
||||
RL 0 44.854 RL -44.854 0 RL CL 0.961 0.871 0.702 Fr 0.545 0 0 Cr 338.796
|
||||
434.474 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 381.4 429.184 336.046 429.184 DL 338.796 394.62 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 381.4 429.434 381.4 383.83 DL 381.65 384.08 MT 44.854 0 RL 0
|
||||
44.854 RL -44.854 0 RL CL 0.804 0.522 0.247 Fr 0.545 0 0 Cr 384.15
|
||||
434.474 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 426.754 429.184 381.4 429.184 DL 384.15 394.62 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 426.754 429.434 426.754 383.83 DL 427.004 384.08 MT 44.854 0
|
||||
RL 0 44.854 RL -44.854 0 RL CL 0.961 0.871 0.702 Fr 0.545 0 0 Cr 429.504
|
||||
434.474 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 472.108 429.184 426.754 429.184 DL 429.504 394.62 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 472.108 429.434 472.108 383.83 DL/F0 10/Times-Roman@0 SF(3)
|
||||
474.858 408.547 Q 66.672 439.974 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 109.276 474.788 109.276 429.184 DL/F0 10/Times-Roman@0 SF(2)
|
||||
101.526 453.901 Q 109.526 429.434 MT 44.854 0 RL 0 44.854 RL -44.854 0
|
||||
RL CL 0.961 0.871 0.702 Fr 0.545 0 0 Cr 112.026 479.828 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 154.63 474.538 109.276 474.538 DL 112.026 439.974 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 154.63 474.788 154.63 429.184 DL 154.88 429.434 MT 44.854 0
|
||||
RL 0 44.854 RL -44.854 0 RL CL 0.804 0.522 0.247 Fr 0.545 0 0 Cr 157.38
|
||||
479.828 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 199.984 474.538 154.63 474.538 DL 157.38 439.974 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 199.984 474.788 199.984 429.184 DL 200.234 429.434 MT 44.854
|
||||
0 RL 0 44.854 RL -44.854 0 RL CL 0.961 0.871 0.702 Fr 0.545 0 0 Cr
|
||||
202.734 479.828 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 245.338 474.538 199.984 474.538 DL 202.734 439.974 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 245.338 474.788 245.338 429.184 DL 245.588 429.434 MT 44.854
|
||||
0 RL 0 44.854 RL -44.854 0 RL CL 0.804 0.522 0.247 Fr 0.545 0 0 Cr
|
||||
248.088 479.828 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 290.692 474.538 245.338 474.538 DL 248.088 439.974 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 290.692 474.788 290.692 429.184 DL 290.942 429.434 MT 44.854
|
||||
0 RL 0 44.854 RL -44.854 0 RL CL 0.961 0.871 0.702 Fr 0.545 0 0 Cr
|
||||
293.442 479.828 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 336.046 474.538 290.692 474.538 DL 293.442 439.974 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 336.046 474.788 336.046 429.184 DL 336.296 429.434 MT 44.854
|
||||
0 RL 0 44.854 RL -44.854 0 RL CL 0.804 0.522 0.247 Fr 0.545 0 0 Cr
|
||||
338.796 479.828 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 381.4 474.538 336.046 474.538 DL 338.796 439.974 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 381.4 474.788 381.4 429.184 DL 381.65 429.434 MT 44.854 0 RL
|
||||
0 44.854 RL -44.854 0 RL CL 0.961 0.871 0.702 Fr 0.545 0 0 Cr 384.15
|
||||
479.828 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 426.754 474.538 381.4 474.538 DL 384.15 439.974 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 426.754 474.788 426.754 429.184 DL 427.004 429.434 MT 44.854
|
||||
0 RL 0 44.854 RL -44.854 0 RL CL 0.804 0.522 0.247 Fr 0.545 0 0 Cr
|
||||
429.504 479.828 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 472.108 474.538 426.754 474.538 DL 429.504 439.974 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 472.108 474.788 472.108 429.184 DL/F0 10/Times-Roman@0 SF(2)
|
||||
474.858 453.901 Q 66.672 485.328 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 109.276 520.142 109.276 474.538 DL/F0 10/Times-Roman@0 SF(1)
|
||||
101.526 499.255 Q 109.526 474.788 MT 44.854 0 RL 0 44.854 RL -44.854 0
|
||||
RL CL 0.804 0.522 0.247 Fr 0.545 0 0 Cr 112.026 525.182 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 154.63 519.892 109.276 519.892 DL 112.026 485.328 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 154.63 520.142 154.63 474.538 DL 154.88 474.788 MT 44.854 0
|
||||
RL 0 44.854 RL -44.854 0 RL CL 0.961 0.871 0.702 Fr 0.545 0 0 Cr 157.38
|
||||
525.182 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 199.984 519.892 154.63 519.892 DL 157.38 485.328 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 199.984 520.142 199.984 474.538 DL 200.234 474.788 MT 44.854
|
||||
0 RL 0 44.854 RL -44.854 0 RL CL 0.804 0.522 0.247 Fr 0.545 0 0 Cr
|
||||
202.734 525.182 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 245.338 519.892 199.984 519.892 DL 202.734 485.328 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 245.338 520.142 245.338 474.538 DL 245.588 474.788 MT 44.854
|
||||
0 RL 0 44.854 RL -44.854 0 RL CL 0.961 0.871 0.702 Fr 0.545 0 0 Cr
|
||||
248.088 525.182 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 290.692 519.892 245.338 519.892 DL 248.088 485.328 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 290.692 520.142 290.692 474.538 DL 290.942 474.788 MT 44.854
|
||||
0 RL 0 44.854 RL -44.854 0 RL CL 0.804 0.522 0.247 Fr 0.545 0 0 Cr
|
||||
293.442 525.182 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 336.046 519.892 290.692 519.892 DL 293.442 485.328 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 336.046 520.142 336.046 474.538 DL 336.296 474.788 MT 44.854
|
||||
0 RL 0 44.854 RL -44.854 0 RL CL 0.961 0.871 0.702 Fr 0.545 0 0 Cr
|
||||
338.796 525.182 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 381.4 519.892 336.046 519.892 DL 338.796 485.328 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 381.4 520.142 381.4 474.538 DL 381.65 474.788 MT 44.854 0 RL
|
||||
0 44.854 RL -44.854 0 RL CL 0.804 0.522 0.247 Fr 0.545 0 0 Cr 384.15
|
||||
525.182 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 426.754 519.892 381.4 519.892 DL 384.15 485.328 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 426.754 520.142 426.754 474.538 DL 427.004 474.788 MT 44.854
|
||||
0 RL 0 44.854 RL -44.854 0 RL CL 0.961 0.871 0.702 Fr 0.545 0 0 Cr
|
||||
429.504 525.182 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 472.108 519.892 426.754 519.892 DL 429.504 485.328 EBEGIN
|
||||
1 setlinecap
|
||||
EEND .5 LW 472.108 520.142 472.108 474.538 DL/F0 10/Times-Roman@0 SF(1)
|
||||
474.858 499.255 Q(a)129.733 530.682 Q(b)174.807 530.682 Q(c)220.441
|
||||
530.682 Q(d)265.515 530.682 Q(e)311.149 530.682 Q(f)357.058 530.682 Q(g)
|
||||
401.577 530.682 Q(h)446.931 530.682 Q 0 Cg EP
|
||||
%%Trailer
|
||||
end
|
||||
%%EOF
|
||||
|
|
@ -0,0 +1,70 @@
|
|||
.ig
|
||||
Copyright 2005-2006 Free Software Foundation, Inc.
|
||||
|
||||
Written by Joachim Walsdorff <Joachim.Walsdorff@urz.uni-heidelberg.de>
|
||||
|
||||
This file is part of hdtbl.
|
||||
|
||||
hdtbl is distributed with groff, the GNU roff typesetting system.
|
||||
|
||||
groff is free software; you can redistribute it and/or modify it under
|
||||
the terms of the GNU General Public License as published by the Free
|
||||
Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
groff is distributed in the hope that it will be useful, but WITHOUT
|
||||
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
..
|
||||
.
|
||||
.if !d sopath \
|
||||
. ds sopath
|
||||
.
|
||||
.ds lib examples/common.roff
|
||||
.soquiet \*[sopath]\*[lib]
|
||||
.if !d common \{\
|
||||
. tmc \n[.F]: cannot find "\*[lib]"; specify its location
|
||||
. tm1 " with groff '-I' or '-d sopath=' option
|
||||
.\}
|
||||
.
|
||||
.
|
||||
.nr *x 8
|
||||
.de r1
|
||||
.TR height=1.6c
|
||||
.TD hl= val=m hal=r \\\\n(*x
|
||||
.PN 4 ".TD bgc=wheat" ".TD bgc=tan3"
|
||||
.TD hl= val=m hal=l \\\\n(*x
|
||||
.nr *x -1
|
||||
..
|
||||
.de r2
|
||||
.TR height=1.6c
|
||||
.TD hl= val=m hal=r \\\\n(*x
|
||||
.PN 4 ".TD bgc=tan3" ".TD bgc=wheat"
|
||||
.TD hl= val=m hal=l \\\\n(*x
|
||||
.nr *x -1
|
||||
..
|
||||
.af *y a
|
||||
.H Chessboard
|
||||
.TBL border=0 csp=.05n bgc= cols=10 width=1.6c tal=c
|
||||
.TR vl= hal=c\" height=1c
|
||||
.TD hl=
|
||||
.nr *y 0
|
||||
.PN 8 .TD ".nr *y +1" \\\\n(*y
|
||||
.TD hl=
|
||||
.PN 4 .r1 .r2
|
||||
.TR vl= hal=c
|
||||
.TD
|
||||
.nr *y 0
|
||||
.PN 8 .TD ".nr *y +1" \\\\n(*y
|
||||
.TD
|
||||
.ETB
|
||||
.
|
||||
.\" Local Variables:
|
||||
.\" mode: nroff
|
||||
.\" fill-column: 72
|
||||
.\" End:
|
||||
.\" vim: set filetype=groff textwidth=72:
|
||||
|
|
@ -0,0 +1,327 @@
|
|||
%!PS-Adobe-3.0
|
||||
%%Creator: groff version 1.24.1
|
||||
%%CreationDate: Mon Mar 16 21:27:47 2026
|
||||
%%DocumentNeededResources: font Times-Roman
|
||||
%%DocumentSuppliedResources: procset grops 1.24 1
|
||||
%%Pages: 1
|
||||
%%PageOrder: Ascend
|
||||
%%DocumentMedia: Default 612 792 0 () ()
|
||||
%%Orientation: Portrait
|
||||
%%EndComments
|
||||
%%BeginDefaults
|
||||
%%PageMedia: Default
|
||||
%%EndDefaults
|
||||
%%BeginProlog
|
||||
%%BeginResource: procset grops 1.24 1
|
||||
%!PS-Adobe-3.0 Resource-ProcSet
|
||||
/setpacking where{
|
||||
pop
|
||||
currentpacking
|
||||
true setpacking
|
||||
}if
|
||||
/grops 120 dict dup begin
|
||||
% The ASCII code of the space character.
|
||||
/SC 32 def
|
||||
/A/show load def
|
||||
/B{0 SC 3 -1 roll widthshow}bind def
|
||||
/C{0 exch ashow}bind def
|
||||
/D{0 exch 0 SC 5 2 roll awidthshow}bind def
|
||||
/E{0 rmoveto show}bind def
|
||||
/F{0 rmoveto 0 SC 3 -1 roll widthshow}bind def
|
||||
/G{0 rmoveto 0 exch ashow}bind def
|
||||
/H{0 rmoveto 0 exch 0 SC 5 2 roll awidthshow}bind def
|
||||
/I{0 exch rmoveto show}bind def
|
||||
/J{0 exch rmoveto 0 SC 3 -1 roll widthshow}bind def
|
||||
/K{0 exch rmoveto 0 exch ashow}bind def
|
||||
/L{0 exch rmoveto 0 exch 0 SC 5 2 roll awidthshow}bind def
|
||||
/M{rmoveto show}bind def
|
||||
/N{rmoveto 0 SC 3 -1 roll widthshow}bind def
|
||||
/O{rmoveto 0 exch ashow}bind def
|
||||
/P{rmoveto 0 exch 0 SC 5 2 roll awidthshow}bind def
|
||||
/Q{moveto show}bind def
|
||||
/R{moveto 0 SC 3 -1 roll widthshow}bind def
|
||||
/S{moveto 0 exch ashow}bind def
|
||||
/T{moveto 0 exch 0 SC 5 2 roll awidthshow}bind def
|
||||
% name size font SF -
|
||||
/SF{
|
||||
findfont exch
|
||||
[exch dup 0 exch 0 exch neg 0 0]makefont
|
||||
dup setfont
|
||||
[exch/setfont cvx]cvx bind def
|
||||
}bind def
|
||||
% name a c d font MF -
|
||||
/MF{
|
||||
findfont
|
||||
[5 2 roll
|
||||
0 3 1 roll % b
|
||||
neg 0 0]makefont
|
||||
dup setfont
|
||||
[exch/setfont cvx]cvx bind def
|
||||
}bind def
|
||||
/level0 0 def
|
||||
/RES 0 def
|
||||
/PL 0 def
|
||||
/LS 0 def
|
||||
% Enable manual feed.
|
||||
% MANUAL -
|
||||
/MANUAL{
|
||||
statusdict begin/manualfeed true store end
|
||||
}bind def
|
||||
% Guess the page length.
|
||||
% This assumes that the imageable area is vertically centered on the page.
|
||||
% PLG - length
|
||||
/PLG{
|
||||
gsave newpath clippath pathbbox grestore
|
||||
exch pop add exch pop
|
||||
}bind def
|
||||
% BP -
|
||||
/BP{
|
||||
/level0 save def
|
||||
1 setlinecap
|
||||
1 setlinejoin
|
||||
DEFS/BPhook known{DEFS begin BPhook end}if
|
||||
72 RES div dup scale
|
||||
LS{
|
||||
90 rotate
|
||||
}{
|
||||
0 PL translate
|
||||
}ifelse
|
||||
1 -1 scale
|
||||
}bind def
|
||||
/EP{
|
||||
level0 restore
|
||||
showpage
|
||||
}def
|
||||
% centerx centery radius startangle endangle DA -
|
||||
/DA{
|
||||
newpath arcn stroke
|
||||
}bind def
|
||||
% x y SN - x' y'
|
||||
% round a position to nearest (pixel + (.25,.25))
|
||||
/SN{
|
||||
transform
|
||||
.25 sub exch .25 sub exch
|
||||
round .25 add exch round .25 add exch
|
||||
itransform
|
||||
}bind def
|
||||
% endx endy startx starty DL -
|
||||
% we round the endpoints of the line, so that parallel horizontal
|
||||
% and vertical lines will appear even
|
||||
/DL{
|
||||
SN
|
||||
moveto
|
||||
SN
|
||||
lineto stroke
|
||||
}bind def
|
||||
% centerx centery radius DC -
|
||||
/DC{
|
||||
newpath 0 360 arc closepath
|
||||
}bind def
|
||||
/TM matrix def
|
||||
% width height centerx centery DE -
|
||||
/DE{
|
||||
TM currentmatrix pop
|
||||
translate scale newpath 0 0 .5 0 360 arc closepath
|
||||
TM setmatrix
|
||||
}bind def
|
||||
% these are for splines
|
||||
/RC/rcurveto load def
|
||||
/RL/rlineto load def
|
||||
/ST/stroke load def
|
||||
/MT/moveto load def
|
||||
/CL/closepath load def
|
||||
% fill the last path
|
||||
% r g b Fr -
|
||||
/Fr{
|
||||
setrgbcolor fill
|
||||
}bind def
|
||||
% c m y k Fk -
|
||||
/setcmykcolor where{
|
||||
pop
|
||||
/Fk{
|
||||
setcmykcolor fill
|
||||
}bind def
|
||||
}if
|
||||
% g Fg -
|
||||
/Fg{
|
||||
setgray fill
|
||||
}bind def
|
||||
% fill with the "current color"
|
||||
/FL/fill load def
|
||||
/LW/setlinewidth load def
|
||||
/Cr/setrgbcolor load def
|
||||
/setcmykcolor where{
|
||||
pop
|
||||
/Ck/setcmykcolor load def
|
||||
}if
|
||||
/Cg/setgray load def
|
||||
% new_font_name encoding_vector old_font_name RE -
|
||||
/RE{
|
||||
findfont
|
||||
dup maxlength 1 index/FontName known not{1 add}if dict begin
|
||||
{
|
||||
1 index/FID ne
|
||||
2 index/UniqueID ne
|
||||
and
|
||||
{def}{pop pop}ifelse
|
||||
}forall
|
||||
/Encoding exch def
|
||||
dup/FontName exch def
|
||||
currentdict end definefont pop
|
||||
}bind def
|
||||
/DEFS 0 def
|
||||
% hpos vpos EBEGIN -
|
||||
/EBEGIN{
|
||||
moveto
|
||||
DEFS begin
|
||||
}bind def
|
||||
/EEND/end load def
|
||||
/CNT 0 def
|
||||
/level1 0 def
|
||||
% llx lly newwid wid newht ht newllx newlly PBEGIN -
|
||||
/PBEGIN{
|
||||
/level1 save def
|
||||
translate
|
||||
div 3 1 roll div exch scale
|
||||
neg exch neg exch translate
|
||||
% set the graphics state to default values
|
||||
0 setgray
|
||||
0 setlinecap
|
||||
1 setlinewidth
|
||||
0 setlinejoin
|
||||
10 setmiterlimit
|
||||
[]0 setdash
|
||||
/setstrokeadjust where{
|
||||
pop
|
||||
false setstrokeadjust
|
||||
}if
|
||||
/setoverprint where{
|
||||
pop
|
||||
false setoverprint
|
||||
}if
|
||||
newpath
|
||||
/CNT countdictstack def
|
||||
userdict begin
|
||||
/showpage{}def
|
||||
%
|
||||
% Any included setpagedevice should be ignored.
|
||||
% See: http://www.w-beer.de/doc/ps/.
|
||||
%
|
||||
/setpagedevice{}def
|
||||
mark
|
||||
}bind def
|
||||
/PEND{
|
||||
cleartomark
|
||||
countdictstack CNT sub{end}repeat
|
||||
level1 restore
|
||||
}bind def
|
||||
end def
|
||||
/setpacking where{
|
||||
pop
|
||||
setpacking
|
||||
}if
|
||||
%%EndResource
|
||||
%%EndProlog
|
||||
%%BeginSetup
|
||||
%%BeginFeature: *PageSize Default
|
||||
<< /PageSize [ 612 792 ] /ImagingBBox null >> setpagedevice
|
||||
%%EndFeature
|
||||
%%IncludeResource: font Times-Roman
|
||||
grops begin/DEFS 52 dict def DEFS begin/u{.001 mul}bind def end/RES 72
|
||||
def/PL 792 def/LS false def/ENC0[/asciicircum/asciitilde/Scaron/Zcaron
|
||||
/scaron/zcaron/Ydieresis/trademark/quotesingle/Euro/.notdef/.notdef
|
||||
/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef
|
||||
/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef
|
||||
/.notdef/.notdef/space/exclam/quotedbl/numbersign/dollar/percent
|
||||
/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen
|
||||
/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon
|
||||
/semicolon/less/equal/greater/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O
|
||||
/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/backslash/bracketright/circumflex
|
||||
/underscore/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y
|
||||
/z/braceleft/bar/braceright/tilde/.notdef/quotesinglbase/guillemotleft
|
||||
/guillemotright/bullet/florin/fraction/perthousand/dagger/daggerdbl
|
||||
/endash/emdash/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/hungarumlaut
|
||||
/dotaccent/breve/caron/ring/ogonek/quotedblleft/quotedblright/oe/lslash
|
||||
/quotedblbase/OE/Lslash/.notdef/exclamdown/cent/sterling/currency/yen
|
||||
/brokenbar/section/dieresis/copyright/ordfeminine/guilsinglleft
|
||||
/logicalnot/minus/registered/macron/degree/plusminus/twosuperior
|
||||
/threesuperior/acute/mu/paragraph/periodcentered/cedilla/onesuperior
|
||||
/ordmasculine/guilsinglright/onequarter/onehalf/threequarters
|
||||
/questiondown/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE
|
||||
/Ccedilla/Egrave/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex
|
||||
/Idieresis/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis
|
||||
/multiply/Oslash/Ugrave/Uacute/Ucircumflex/Udieresis/Yacute/Thorn
|
||||
/germandbls/agrave/aacute/acircumflex/atilde/adieresis/aring/ae/ccedilla
|
||||
/egrave/eacute/ecircumflex/edieresis/igrave/iacute/icircumflex/idieresis
|
||||
/eth/ntilde/ograve/oacute/ocircumflex/otilde/odieresis/divide/oslash
|
||||
/ugrave/uacute/ucircumflex/udieresis/yacute/thorn/ydieresis]def
|
||||
/Times-Roman@0 ENC0/Times-Roman RE
|
||||
%%EndSetup
|
||||
%%Page: 1 1
|
||||
%%BeginPageSetup
|
||||
BP
|
||||
%%EndPageSetup
|
||||
/F0 12/Times-Roman@0 SF -1.5 -.84(Te x)56.692 86.4 T 4.732(tb).84 G
|
||||
1.732(efore table.)-4.732 F -1.5 -.84(Te x)7.732 H 4.732(tb).84 G 1.732
|
||||
(efore table.)-4.732 F -1.5 -.84(Te x)7.732 H 4.731(tb).84 G 1.731
|
||||
(efore table.)-4.731 F -1.5 -.84(Te x)7.731 H 4.731(tb).84 G 1.731
|
||||
(efore table.)-4.731 F -1.5 -.84(Te x)7.731 H 4.731(tb).84 G 1.731
|
||||
(efore table.)-4.731 F -1.5 -.84(Te x)56.692 100.8 T 3(tb).84 G
|
||||
(efore table.)-3 E -1.5 -.84(Te x)6 H 3(tb).84 G(efore table.)-3 E -1.5
|
||||
-.84(Te x)6 H 3(tb).84 G(efore table.)-3 E -1.5 -.84(Te x)6 H 3(tb).84 G
|
||||
(efore table.)-3 E -1.5 -.84(Te x)6 H 3(tb).84 G(efore table.)-3 E .192
|
||||
(Indented te)85.038 115.2 R .192(xt before table.)-.18 F .193
|
||||
(Indented te)6.193 F .193(xt before table.)-.18 F .193(Indented te)6.193
|
||||
F .193(xt before table.)-.18 F(Indented)6.193 E(te)85.038 129.6 Q .628
|
||||
(xt before table.)-.18 F .628(Indented te)6.628 F .628(xt before table.)
|
||||
-.18 F .627(Indented te)6.628 F .627(xt before table.)-.18 F .627
|
||||
(Indented te)6.627 F .627(xt be-)-.18 F 119.021 152.112 MT 371.688 0 RL
|
||||
0 343.966 RL -371.688 0 RL CL 0.961 0.871 0.702 Fr 148.962 158.112 MT
|
||||
283.46 0 RL 0 28.346 RL -283.46 0 RL CL 0.98 0.0745 0.875 Fr 432.422
|
||||
158.112 MT 28.346 0 RL 0 283.46 RL -28.346 0 RL CL 0.478 0.698 0.0706 Fr
|
||||
148.962 186.458 MT 28.346 0 RL 0 283.46 RL -28.346 0 RL CL 0.31 0.965
|
||||
0.169 Fr 177.308 186.458 MT 226.768 0 RL 0 28.346 RL -226.768 0 RL CL
|
||||
0.263 0.0431 0.49 Fr 404.076 186.458 MT 28.346 0 RL 0 226.768 RL -28.346
|
||||
0 RL CL 0.129 0.576 0.369 Fr 177.308 214.804 MT 28.346 0 RL 0 226.768 RL
|
||||
-28.346 0 RL CL 0.0863 0.561 0.122 Fr 205.654 214.804 MT 170.076 0 RL 0
|
||||
28.346 RL -170.076 0 RL CL 0.396 0.698 0.0745 Fr 375.73 214.804 MT
|
||||
28.346 0 RL 0 170.076 RL -28.346 0 RL CL 0.173 0.341 0.373 Fr 205.654
|
||||
243.15 MT 28.346 0 RL 0 170.076 RL -28.346 0 RL CL 0.369 0.992 0.686 Fr
|
||||
234 243.15 MT 113.384 0 RL 0 28.346 RL -113.384 0 RL CL 0.424 0.827
|
||||
0.671 Fr 347.384 243.15 MT 28.346 0 RL 0 113.384 RL -28.346 0 RL CL
|
||||
0.475 0.624 0.137 Fr 234 271.496 MT 28.346 0 RL 0 113.384 RL -28.346 0
|
||||
RL CL 1 0.502 0.482 Fr 262.346 271.496 MT 56.692 0 RL 0 28.346 RL
|
||||
-56.692 0 RL CL 0.969 0.776 0.788 Fr 319.038 271.496 MT 28.346 0 RL 0
|
||||
56.692 RL -28.346 0 RL CL 0.514 0.22 0.945 Fr 262.346 299.842 MT 28.346
|
||||
0 RL 0 56.692 RL -28.346 0 RL CL 0.396 0.835 0.949 Fr 290.692 299.842 MT
|
||||
28.346 0 RL 0 28.346 RL -28.346 0 RL CL 0.235 0.635 0.396 Fr 290.692
|
||||
328.188 MT 56.692 0 RL 0 28.346 RL -56.692 0 RL CL 0.843 0.639 0.62 Fr
|
||||
262.346 356.534 MT 113.384 0 RL 0 28.346 RL -113.384 0 RL CL 0.2 0 0.161
|
||||
Fr 234 384.88 MT 170.076 0 RL 0 28.346 RL -170.076 0 RL CL 0.0941 0.965
|
||||
0.216 Fr 205.654 413.226 MT 226.768 0 RL 0 28.346 RL -226.768 0 RL CL
|
||||
0.976 0.965 0.867 Fr 177.308 441.572 MT 283.46 0 RL 0 28.346 RL -283.46
|
||||
0 RL CL 0.843 0.749 0.482 Fr 0.545 0 0 Cr -.96(Ta)148.962 485.326 S
|
||||
(ble 1:).96 E(Randomly Colored T)6 E(able Cells with Colspan/Ro)-.96 E
|
||||
(wspan)-.3 E 107.021 152.76 EBEGIN
|
||||
0 setlinejoin 2 setlinecap
|
||||
EEND 6 LW 499.709 143.112 110.021 143.112 DL 499.709 505.078 499.709
|
||||
143.112 DL 110.021 505.078 499.709 505.078 DL 110.021 143.112 110.021
|
||||
505.078 DL 0 Cg/F0 12/Times-Roman@0 SF .444(fore table.)85.038 524.926 R
|
||||
.444(Indented te)6.444 F .444(xt before table.)-.18 F .445
|
||||
(*** *** *** T)6.445 F -.18(ex)-.84 G 3.445(ta).18 G .445(fter table.)
|
||||
-3.445 F -1.5 -.84(Te x)6.445 H 3.445(ta).84 G .445(fter table.)-3.445 F
|
||||
-1.5 -.84(Te x)6.445 H(t).84 E .749(after table.)85.038 539.326 R -1.5
|
||||
-.84(Te x)6.749 H 3.749(ta).84 G .749(fter table.)-3.749 F -1.5 -.84
|
||||
(Te x)6.749 H 3.749(ta).84 G .749(fter table.)-3.749 F -1.5 -.84(Te x)
|
||||
6.749 H 3.749(ta).84 G .749(fter table.)-3.749 F -1.5 -.84(Te x)6.748 H
|
||||
3.748(ta).84 G .748(fter table.)-3.748 F -1.5 -.84(Te x)6.748 H 3.748
|
||||
(ta).84 G(fter)-3.748 E 3.459(table. T)85.038 553.726 R -.18(ex)-.84 G
|
||||
3.459(ta).18 G .459(fter table.)-3.459 F -1.5 -.84(Te x)6.459 H 3.459
|
||||
(ta).84 G .459(fter table.)-3.459 F -1.5 -.84(Te x)6.459 H 3.459(ta).84
|
||||
G .459(fter table.)-3.459 F -1.5 -.84(Te x)6.459 H 3.459(ta).84 G .459
|
||||
(fter table.)-3.459 F -1.5 -.84(Te x)6.459 H 3.459(ta).84 G .46
|
||||
(fter table.)-3.459 F -1.5 -.84(Te x)85.038 568.126 T 3(ta).84 G
|
||||
(fter table.)-3 E -1.5 -.84(Te x)6 H 3(ta).84 G(fter table.)-3 E 0 Cg EP
|
||||
%%Trailer
|
||||
end
|
||||
%%EOF
|
||||
|
|
@ -0,0 +1,89 @@
|
|||
.ig
|
||||
Copyright 2006 Free Software Foundation, Inc.
|
||||
|
||||
Written by Joachim Walsdorff <Joachim.Walsdorff@urz.uni-heidelberg.de>
|
||||
|
||||
This file is part of hdtbl.
|
||||
|
||||
hdtbl is distributed with groff, the GNU roff typesetting system.
|
||||
|
||||
groff is free software; you can redistribute it and/or modify it under
|
||||
the terms of the GNU General Public License as published by the Free
|
||||
Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
groff is distributed in the hope that it will be useful, but WITHOUT
|
||||
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
..
|
||||
.
|
||||
.if !d sopath \
|
||||
. ds sopath
|
||||
.
|
||||
.ds lib examples/common.roff
|
||||
.soquiet \*[sopath]\*[lib]
|
||||
.if !d common \{\
|
||||
. tmc \n[.F]: cannot find "\*[lib]"; specify its location
|
||||
. tm1 " with groff '-I' or '-d sopath=' option
|
||||
.\}
|
||||
.
|
||||
.
|
||||
.\" Seed the random number generator for reproducible builds.
|
||||
.random-seed 131545532 19201711
|
||||
.de color#
|
||||
.nr # +1
|
||||
.random#
|
||||
.defcolor c\\n# rgb \\*[#random]
|
||||
..
|
||||
.
|
||||
.de brt
|
||||
.nr # 0
|
||||
.color#
|
||||
.if \\n[t*cols\\n[t*#]]/2*2=\\n[t*cols\\n[t*#]] \{ .
|
||||
. tmc \\n(.F:\\n(.c: cols was even (\\n[t*cols\\n[t*#]]),
|
||||
. nr t*cols\\n[t*#] +1
|
||||
. tm1 " increased by one col to \\n[t*cols\\n[t*#]].
|
||||
. t*cl \\*[width]
|
||||
. ie "\\*[tal]"r" .nr in\\n[t*#] -\\*[width]\" recalculate cell widths etc.
|
||||
. el .if "\\*[tal]"c" .nr in\\n[t*#] -\\*[width]/2
|
||||
.\}
|
||||
.nr N \\n[t*cols\\n[t*#]]-1 \" N must be even
|
||||
.nr W 1c\"\\*[width]
|
||||
.ds html "".TR height=\\nW" ".TD bgc=c\\n#"
|
||||
.nr I 0 2
|
||||
.while \\nN>=\\n+I \{ .
|
||||
. ds help "\\*[html]
|
||||
. pops * help
|
||||
. color#
|
||||
. ds html "".TR height=\\nW" ".TD colspan=\\nI bgc=c\\n#"
|
||||
. color#
|
||||
. as html " ".TD rowspan=\\nI bgc=c\\n#"
|
||||
. color#
|
||||
. as html " ".TR height=\\nW" ".TD rowspan=\\nI bgc=c\\n#"
|
||||
. color#
|
||||
. as html " \\*[help] ".TR height=\\nW" ".TD colspan=\\nI bgc=c\\n#"
|
||||
.\}
|
||||
.t*P1 \\*[html]
|
||||
..
|
||||
.
|
||||
.t*pv 1.2 1.2 "" x
|
||||
.PN 10 Text before table.
|
||||
.in 1c
|
||||
.PN 8 Indented text before table.
|
||||
*** *** ***
|
||||
.TBL width=90% border=1n csp=1n cpd=1n bgc=wheat tal=c .TR .TD
|
||||
.TBL border= cols=11 width=1c tal=c csp=0 cpd=0 \"cols must be odd
|
||||
.CPTN val=b Randomly Colored Table Cells with Colspan/\%Rowspan
|
||||
.brt
|
||||
.ETB .ETB
|
||||
.PN 15 Text after table.
|
||||
.
|
||||
.\" Local Variables:
|
||||
.\" mode: nroff
|
||||
.\" fill-column: 72
|
||||
.\" End:
|
||||
.\" vim: set filetype=groff textwidth=72:
|
||||
440
OGP64/usr/share/doc/groff-1.24.1/examples/hdtbl/color_boxes.ps
Normal file
440
OGP64/usr/share/doc/groff-1.24.1/examples/hdtbl/color_boxes.ps
Normal file
|
|
@ -0,0 +1,440 @@
|
|||
%!PS-Adobe-3.0
|
||||
%%Creator: groff version 1.24.1
|
||||
%%CreationDate: Mon Mar 16 21:27:47 2026
|
||||
%%DocumentNeededResources: font Times-Bold
|
||||
%%+ font Times-Roman
|
||||
%%DocumentSuppliedResources: procset grops 1.24 1
|
||||
%%Pages: 1
|
||||
%%PageOrder: Ascend
|
||||
%%DocumentMedia: Default 612 792 0 () ()
|
||||
%%Orientation: Portrait
|
||||
%%EndComments
|
||||
%%BeginDefaults
|
||||
%%PageMedia: Default
|
||||
%%EndDefaults
|
||||
%%BeginProlog
|
||||
%%BeginResource: procset grops 1.24 1
|
||||
%!PS-Adobe-3.0 Resource-ProcSet
|
||||
/setpacking where{
|
||||
pop
|
||||
currentpacking
|
||||
true setpacking
|
||||
}if
|
||||
/grops 120 dict dup begin
|
||||
% The ASCII code of the space character.
|
||||
/SC 32 def
|
||||
/A/show load def
|
||||
/B{0 SC 3 -1 roll widthshow}bind def
|
||||
/C{0 exch ashow}bind def
|
||||
/D{0 exch 0 SC 5 2 roll awidthshow}bind def
|
||||
/E{0 rmoveto show}bind def
|
||||
/F{0 rmoveto 0 SC 3 -1 roll widthshow}bind def
|
||||
/G{0 rmoveto 0 exch ashow}bind def
|
||||
/H{0 rmoveto 0 exch 0 SC 5 2 roll awidthshow}bind def
|
||||
/I{0 exch rmoveto show}bind def
|
||||
/J{0 exch rmoveto 0 SC 3 -1 roll widthshow}bind def
|
||||
/K{0 exch rmoveto 0 exch ashow}bind def
|
||||
/L{0 exch rmoveto 0 exch 0 SC 5 2 roll awidthshow}bind def
|
||||
/M{rmoveto show}bind def
|
||||
/N{rmoveto 0 SC 3 -1 roll widthshow}bind def
|
||||
/O{rmoveto 0 exch ashow}bind def
|
||||
/P{rmoveto 0 exch 0 SC 5 2 roll awidthshow}bind def
|
||||
/Q{moveto show}bind def
|
||||
/R{moveto 0 SC 3 -1 roll widthshow}bind def
|
||||
/S{moveto 0 exch ashow}bind def
|
||||
/T{moveto 0 exch 0 SC 5 2 roll awidthshow}bind def
|
||||
% name size font SF -
|
||||
/SF{
|
||||
findfont exch
|
||||
[exch dup 0 exch 0 exch neg 0 0]makefont
|
||||
dup setfont
|
||||
[exch/setfont cvx]cvx bind def
|
||||
}bind def
|
||||
% name a c d font MF -
|
||||
/MF{
|
||||
findfont
|
||||
[5 2 roll
|
||||
0 3 1 roll % b
|
||||
neg 0 0]makefont
|
||||
dup setfont
|
||||
[exch/setfont cvx]cvx bind def
|
||||
}bind def
|
||||
/level0 0 def
|
||||
/RES 0 def
|
||||
/PL 0 def
|
||||
/LS 0 def
|
||||
% Enable manual feed.
|
||||
% MANUAL -
|
||||
/MANUAL{
|
||||
statusdict begin/manualfeed true store end
|
||||
}bind def
|
||||
% Guess the page length.
|
||||
% This assumes that the imageable area is vertically centered on the page.
|
||||
% PLG - length
|
||||
/PLG{
|
||||
gsave newpath clippath pathbbox grestore
|
||||
exch pop add exch pop
|
||||
}bind def
|
||||
% BP -
|
||||
/BP{
|
||||
/level0 save def
|
||||
1 setlinecap
|
||||
1 setlinejoin
|
||||
DEFS/BPhook known{DEFS begin BPhook end}if
|
||||
72 RES div dup scale
|
||||
LS{
|
||||
90 rotate
|
||||
}{
|
||||
0 PL translate
|
||||
}ifelse
|
||||
1 -1 scale
|
||||
}bind def
|
||||
/EP{
|
||||
level0 restore
|
||||
showpage
|
||||
}def
|
||||
% centerx centery radius startangle endangle DA -
|
||||
/DA{
|
||||
newpath arcn stroke
|
||||
}bind def
|
||||
% x y SN - x' y'
|
||||
% round a position to nearest (pixel + (.25,.25))
|
||||
/SN{
|
||||
transform
|
||||
.25 sub exch .25 sub exch
|
||||
round .25 add exch round .25 add exch
|
||||
itransform
|
||||
}bind def
|
||||
% endx endy startx starty DL -
|
||||
% we round the endpoints of the line, so that parallel horizontal
|
||||
% and vertical lines will appear even
|
||||
/DL{
|
||||
SN
|
||||
moveto
|
||||
SN
|
||||
lineto stroke
|
||||
}bind def
|
||||
% centerx centery radius DC -
|
||||
/DC{
|
||||
newpath 0 360 arc closepath
|
||||
}bind def
|
||||
/TM matrix def
|
||||
% width height centerx centery DE -
|
||||
/DE{
|
||||
TM currentmatrix pop
|
||||
translate scale newpath 0 0 .5 0 360 arc closepath
|
||||
TM setmatrix
|
||||
}bind def
|
||||
% these are for splines
|
||||
/RC/rcurveto load def
|
||||
/RL/rlineto load def
|
||||
/ST/stroke load def
|
||||
/MT/moveto load def
|
||||
/CL/closepath load def
|
||||
% fill the last path
|
||||
% r g b Fr -
|
||||
/Fr{
|
||||
setrgbcolor fill
|
||||
}bind def
|
||||
% c m y k Fk -
|
||||
/setcmykcolor where{
|
||||
pop
|
||||
/Fk{
|
||||
setcmykcolor fill
|
||||
}bind def
|
||||
}if
|
||||
% g Fg -
|
||||
/Fg{
|
||||
setgray fill
|
||||
}bind def
|
||||
% fill with the "current color"
|
||||
/FL/fill load def
|
||||
/LW/setlinewidth load def
|
||||
/Cr/setrgbcolor load def
|
||||
/setcmykcolor where{
|
||||
pop
|
||||
/Ck/setcmykcolor load def
|
||||
}if
|
||||
/Cg/setgray load def
|
||||
% new_font_name encoding_vector old_font_name RE -
|
||||
/RE{
|
||||
findfont
|
||||
dup maxlength 1 index/FontName known not{1 add}if dict begin
|
||||
{
|
||||
1 index/FID ne
|
||||
2 index/UniqueID ne
|
||||
and
|
||||
{def}{pop pop}ifelse
|
||||
}forall
|
||||
/Encoding exch def
|
||||
dup/FontName exch def
|
||||
currentdict end definefont pop
|
||||
}bind def
|
||||
/DEFS 0 def
|
||||
% hpos vpos EBEGIN -
|
||||
/EBEGIN{
|
||||
moveto
|
||||
DEFS begin
|
||||
}bind def
|
||||
/EEND/end load def
|
||||
/CNT 0 def
|
||||
/level1 0 def
|
||||
% llx lly newwid wid newht ht newllx newlly PBEGIN -
|
||||
/PBEGIN{
|
||||
/level1 save def
|
||||
translate
|
||||
div 3 1 roll div exch scale
|
||||
neg exch neg exch translate
|
||||
% set the graphics state to default values
|
||||
0 setgray
|
||||
0 setlinecap
|
||||
1 setlinewidth
|
||||
0 setlinejoin
|
||||
10 setmiterlimit
|
||||
[]0 setdash
|
||||
/setstrokeadjust where{
|
||||
pop
|
||||
false setstrokeadjust
|
||||
}if
|
||||
/setoverprint where{
|
||||
pop
|
||||
false setoverprint
|
||||
}if
|
||||
newpath
|
||||
/CNT countdictstack def
|
||||
userdict begin
|
||||
/showpage{}def
|
||||
%
|
||||
% Any included setpagedevice should be ignored.
|
||||
% See: http://www.w-beer.de/doc/ps/.
|
||||
%
|
||||
/setpagedevice{}def
|
||||
mark
|
||||
}bind def
|
||||
/PEND{
|
||||
cleartomark
|
||||
countdictstack CNT sub{end}repeat
|
||||
level1 restore
|
||||
}bind def
|
||||
end def
|
||||
/setpacking where{
|
||||
pop
|
||||
setpacking
|
||||
}if
|
||||
%%EndResource
|
||||
%%EndProlog
|
||||
%%BeginSetup
|
||||
%%BeginFeature: *PageSize Default
|
||||
<< /PageSize [ 612 792 ] /ImagingBBox null >> setpagedevice
|
||||
%%EndFeature
|
||||
%%IncludeResource: font Times-Bold
|
||||
%%IncludeResource: font Times-Roman
|
||||
grops begin/DEFS 52 dict def DEFS begin/u{.001 mul}bind def end/RES 72
|
||||
def/PL 792 def/LS false def/ENC0[/asciicircum/asciitilde/Scaron/Zcaron
|
||||
/scaron/zcaron/Ydieresis/trademark/quotesingle/Euro/.notdef/.notdef
|
||||
/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef
|
||||
/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef
|
||||
/.notdef/.notdef/space/exclam/quotedbl/numbersign/dollar/percent
|
||||
/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen
|
||||
/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon
|
||||
/semicolon/less/equal/greater/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O
|
||||
/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/backslash/bracketright/circumflex
|
||||
/underscore/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y
|
||||
/z/braceleft/bar/braceright/tilde/.notdef/quotesinglbase/guillemotleft
|
||||
/guillemotright/bullet/florin/fraction/perthousand/dagger/daggerdbl
|
||||
/endash/emdash/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/hungarumlaut
|
||||
/dotaccent/breve/caron/ring/ogonek/quotedblleft/quotedblright/oe/lslash
|
||||
/quotedblbase/OE/Lslash/.notdef/exclamdown/cent/sterling/currency/yen
|
||||
/brokenbar/section/dieresis/copyright/ordfeminine/guilsinglleft
|
||||
/logicalnot/minus/registered/macron/degree/plusminus/twosuperior
|
||||
/threesuperior/acute/mu/paragraph/periodcentered/cedilla/onesuperior
|
||||
/ordmasculine/guilsinglright/onequarter/onehalf/threequarters
|
||||
/questiondown/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE
|
||||
/Ccedilla/Egrave/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex
|
||||
/Idieresis/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis
|
||||
/multiply/Oslash/Ugrave/Uacute/Ucircumflex/Udieresis/Yacute/Thorn
|
||||
/germandbls/agrave/aacute/acircumflex/atilde/adieresis/aring/ae/ccedilla
|
||||
/egrave/eacute/ecircumflex/edieresis/igrave/iacute/icircumflex/idieresis
|
||||
/eth/ntilde/ograve/oacute/ocircumflex/otilde/odieresis/divide/oslash
|
||||
/ugrave/uacute/ucircumflex/udieresis/yacute/thorn/ydieresis]def
|
||||
/Times-Roman@0 ENC0/Times-Roman RE/Times-Bold@0 ENC0/Times-Bold RE
|
||||
%%EndSetup
|
||||
%%Page: 1 1
|
||||
%%BeginPageSetup
|
||||
BP
|
||||
%%EndPageSetup
|
||||
61.692 87.74 MT 458 0 RL 0 41 RL -458 0 RL CL 0.545 0 0 Fr 1 1 0 Cr/F0
|
||||
17/Times-Bold@0 SF(Horizontal Rules and Boxes)189.865 102.3 Q
|
||||
(with Randomly Color)112.719 120.3 Q(ed Border and Backgr)-.306 E(ound)
|
||||
-.306 E 56.692 97.3 EBEGIN
|
||||
0 setlinejoin 2 setlinecap
|
||||
EEND 5 LW 522.192 85.24 59.192 85.24 DL 522.192 131.24 522.192 85.24 DL
|
||||
59.192 131.24 522.192 131.24 DL 59.192 85.24 59.192 131.24 DL 0 Cg/F0 10
|
||||
/Times-Roman@0 SF -1.25 -.7(Te x)56.692 160.8 T 3.602(tb).7 G 1.102
|
||||
(efore horizontal rule.)-3.602 F -1.25 -.7(Te x)6.102 H 3.602(tb).7 G
|
||||
1.101(efore horizontal rule.)-3.602 F -1.25 -.7(Te x)6.101 H 3.601(tb).7
|
||||
G 1.101(efore horizontal rule.)-3.601 F -1.25 -.7(Te x)6.101 H 3.601(tb)
|
||||
.7 G 1.101(efore horizontal rule.)-3.601 F -1.25 -.7(Te x)56.692 172.8 T
|
||||
3.601(tb).7 G 1.101(efore horizontal rule.)-3.601 F -1.25 -.7(Te x)6.101
|
||||
H 3.601(tb).7 G 1.101(efore horizontal rule.)-3.601 F -1.25 -.7(Te x)
|
||||
6.101 H 3.601(tb).7 G 1.101(efore horizontal rule.)-3.601 F -1.25 -.7
|
||||
(Te x)6.102 H 3.602(tb).7 G 1.102(efore horizontal rule.)-3.602 F -1.25
|
||||
-.7(Te x)56.692 184.8 T 3.602(tb).7 G 1.102(efore horizontal rule.)
|
||||
-3.602 F -1.25 -.7(Te x)6.102 H 3.602(tb).7 G 1.101
|
||||
(efore horizontal rule.)-3.602 F -1.25 -.7(Te x)6.101 H 3.601(tb).7 G
|
||||
1.101(efore horizontal rule.)-3.601 F -1.25 -.7(Te x)6.101 H 3.601(tb).7
|
||||
G 1.101(efore horizontal rule.)-3.601 F -1.25 -.7(Te x)56.692 196.8 T
|
||||
3.601(tb).7 G 1.101(efore horizontal rule.)-3.601 F -1.25 -.7(Te x)6.101
|
||||
H 3.601(tb).7 G 1.101(efore horizontal rule.)-3.601 F -1.25 -.7(Te x)
|
||||
6.101 H 3.601(tb).7 G 1.101(efore horizontal rule.)-3.601 F -1.25 -.7
|
||||
(Te x)6.102 H 3.602(tb).7 G 1.102(efore horizontal rule.)-3.602 F -1.25
|
||||
-.7(Te x)56.692 208.8 T 3.602(tb).7 G 1.102(efore horizontal rule.)
|
||||
-3.602 F -1.25 -.7(Te x)6.102 H 3.602(tb).7 G 1.101
|
||||
(efore horizontal rule.)-3.602 F -1.25 -.7(Te x)6.101 H 3.601(tb).7 G
|
||||
1.101(efore horizontal rule.)-3.601 F -1.25 -.7(Te x)6.101 H 3.601(tb).7
|
||||
G 1.101(efore horizontal rule.)-3.601 F -1.25 -.7(Te x)56.692 220.8 T
|
||||
3.601(tb).7 G 1.101(efore horizontal rule.)-3.601 F -1.25 -.7(Te x)6.101
|
||||
H 3.601(tb).7 G 1.101(efore horizontal rule.)-3.601 F -1.25 -.7(Te x)
|
||||
6.101 H 3.601(tb).7 G 1.101(efore horizontal rule.)-3.601 F -1.25 -.7
|
||||
(Te x)6.102 H 3.602(tb).7 G 1.102(efore horizontal rule.)-3.602 F
|
||||
194.979 233.06 MT 191.425 0 RL 0 3 RL -191.425 0 RL CL 1 0 0 Fr 0.545 0
|
||||
0 Cr 191.479 238.85 EBEGIN
|
||||
0 setlinejoin 2 setlinecap
|
||||
EEND 2.5 LW 0 1 0 Cr 388.654 230.81 192.729 230.81 DL 388.654 238.31
|
||||
388.654 230.81 DL 192.729 238.31 388.654 238.31 DL 192.729 230.81
|
||||
192.729 238.31 DL 0 Cg/F0 10/Times-Roman@0 SF -1.25 -.7(Te x)56.692
|
||||
253.6 T 3.162(tb).7 G .662(efore horizontal rule.)-3.162 F -1.25 -.7
|
||||
(Te x)5.661 H 3.161(ta).7 G .661(fter horizontal rule and before table.)
|
||||
-3.161 F -1.25 -.7(Te x)5.661 H 3.161(ta).7 G .661
|
||||
(fter horizontal rule and before table.)-3.161 F -1.25 -.7(Te x)56.692
|
||||
265.6 T 2.723(ta).7 G .223(fter horizontal rule and before table.)-2.723
|
||||
F -1.25 -.7(Te x)5.223 H 2.723(ta).7 G .223
|
||||
(fter horizontal rule and before table.)-2.723 F -1.25 -.7(Te x)5.224 H
|
||||
2.724(ta).7 G .224(fter horizontal rule and)-2.724 F .286(before table.)
|
||||
56.692 277.6 R -1.25 -.7(Te x)5.286 H 2.786(ta).7 G .286
|
||||
(fter horizontal rule and before table.)-2.786 F -1.25 -.7(Te x)5.286 H
|
||||
2.786(ta).7 G .285(fter horizontal rule and before table.)-2.786 F -1.25
|
||||
-.7(Te x)5.285 H 2.785(ta).7 G .285(fter hori-)-2.785 F 78.094 286.36 MT
|
||||
85.039 0 RL 0 85.039 RL -85.039 0 RL CL 1 0.894 0.769 Fr 106.44 314.706
|
||||
MT 28.347 0 RL 0 28.347 RL -28.347 0 RL CL 0.969 0.776 0.788 Fr 0.545 0
|
||||
0 Cr 78.094 308.573 EBEGIN
|
||||
0 setlinejoin 2 setlinecap
|
||||
EEND 28.346 LW 0.235 0.635 0.396 Cr 148.96 300.533 92.267 300.533 DL
|
||||
148.96 357.226 148.96 300.533 DL 92.267 357.226 148.96 357.226 DL 92.267
|
||||
300.533 92.267 357.226 DL 163.133 286.36 MT 85.039 0 RL 0 85.039 RL
|
||||
-85.039 0 RL CL 1 0.894 0.769 Fr 191.479 314.706 MT 28.347 0 RL 0 28.347
|
||||
RL -28.347 0 RL CL 0.475 0.624 0.137 Fr 0.545 0 0 Cr 163.133 308.573
|
||||
EBEGIN
|
||||
0 setlinejoin 2 setlinecap
|
||||
EEND 28.346 LW 0.424 0.827 0.671 Cr 233.999 300.533 177.306 300.533 DL
|
||||
233.999 357.226 233.999 300.533 DL 177.306 357.226 233.999 357.226 DL
|
||||
177.306 300.533 177.306 357.226 DL 248.172 286.36 MT 85.039 0 RL 0
|
||||
85.039 RL -85.039 0 RL CL 1 0.894 0.769 Fr 276.518 314.706 MT 28.347 0
|
||||
RL 0 28.347 RL -28.347 0 RL CL 0.369 0.992 0.686 Fr 0.545 0 0 Cr 248.172
|
||||
308.573 EBEGIN
|
||||
0 setlinejoin 2 setlinecap
|
||||
EEND 28.346 LW 0.173 0.341 0.373 Cr 319.038 300.533 262.345 300.533 DL
|
||||
319.038 357.226 319.038 300.533 DL 262.345 357.226 319.038 357.226 DL
|
||||
262.345 300.533 262.345 357.226 DL 333.211 286.36 MT 85.039 0 RL 0
|
||||
85.039 RL -85.039 0 RL CL 1 0.894 0.769 Fr 361.557 314.706 MT 28.347 0
|
||||
RL 0 28.347 RL -28.347 0 RL CL 0.976 0.965 0.867 Fr 0.545 0 0 Cr 333.211
|
||||
308.573 EBEGIN
|
||||
0 setlinejoin 2 setlinecap
|
||||
EEND 28.346 LW 0.0863 0.561 0.122 Cr 404.077 300.533 347.384 300.533 DL
|
||||
404.077 357.226 404.077 300.533 DL 347.384 357.226 404.077 357.226 DL
|
||||
347.384 300.533 347.384 357.226 DL 418.25 286.36 MT 85.039 0 RL 0 85.039
|
||||
RL -85.039 0 RL CL 1 0.894 0.769 Fr 446.596 314.706 MT 28.347 0 RL 0
|
||||
28.347 RL -28.347 0 RL CL 0.0745 0.561 0.467 Fr 0.545 0 0 Cr 418.25
|
||||
308.573 EBEGIN
|
||||
0 setlinejoin 2 setlinecap
|
||||
EEND 28.346 LW 0.843 0.749 0.482 Cr 489.116 300.533 432.423 300.533 DL
|
||||
489.116 357.226 489.116 300.533 DL 432.423 357.226 489.116 357.226 DL
|
||||
432.423 300.533 432.423 357.226 DL 78.094 371.399 MT 85.039 0 RL 0
|
||||
85.039 RL -85.039 0 RL CL 1 0.894 0.769 Fr 106.44 399.745 MT 28.347 0 RL
|
||||
0 28.347 RL -28.347 0 RL CL 0.565 0.455 0.404 Fr 0.545 0 0 Cr 78.094
|
||||
393.612 EBEGIN
|
||||
0 setlinejoin 2 setlinecap
|
||||
EEND 28.346 LW 0.357 0.682 0.384 Cr 148.96 385.572 92.267 385.572 DL
|
||||
148.96 442.265 148.96 385.572 DL 92.267 442.265 148.96 442.265 DL 92.267
|
||||
385.572 92.267 442.265 DL 163.133 371.399 MT 85.039 0 RL 0 85.039 RL
|
||||
-85.039 0 RL CL 1 0.894 0.769 Fr 191.479 399.745 MT 28.347 0 RL 0 28.347
|
||||
RL -28.347 0 RL CL 0.769 0.937 0.718 Fr 0.545 0 0 Cr 163.133 393.612
|
||||
EBEGIN
|
||||
0 setlinejoin 2 setlinecap
|
||||
EEND 28.346 LW 0.816 0.973 0.373 Cr 233.999 385.572 177.306 385.572 DL
|
||||
233.999 442.265 233.999 385.572 DL 177.306 442.265 233.999 442.265 DL
|
||||
177.306 385.572 177.306 442.265 DL 248.172 371.399 MT 85.039 0 RL 0
|
||||
85.039 RL -85.039 0 RL CL 1 0.894 0.769 Fr 276.518 399.745 MT 28.347 0
|
||||
RL 0 28.347 RL -28.347 0 RL CL 0.376 0.612 0.259 Fr 0.545 0 0 Cr 248.172
|
||||
393.612 EBEGIN
|
||||
0 setlinejoin 2 setlinecap
|
||||
EEND 28.346 LW 0.392 0.745 0.784 Cr 319.038 385.572 262.345 385.572 DL
|
||||
319.038 442.265 319.038 385.572 DL 262.345 442.265 319.038 442.265 DL
|
||||
262.345 385.572 262.345 442.265 DL 333.211 371.399 MT 85.039 0 RL 0
|
||||
85.039 RL -85.039 0 RL CL 1 0.894 0.769 Fr 361.557 399.745 MT 28.347 0
|
||||
RL 0 28.347 RL -28.347 0 RL CL 0.349 0.584 0.71 Fr 0.545 0 0 Cr 333.211
|
||||
393.612 EBEGIN
|
||||
0 setlinejoin 2 setlinecap
|
||||
EEND 28.346 LW 0.733 0.0392 0.204 Cr 404.077 385.572 347.384 385.572 DL
|
||||
404.077 442.265 404.077 385.572 DL 347.384 442.265 404.077 442.265 DL
|
||||
347.384 385.572 347.384 442.265 DL 418.25 371.399 MT 85.039 0 RL 0
|
||||
85.039 RL -85.039 0 RL CL 1 0.894 0.769 Fr 446.596 399.745 MT 28.347 0
|
||||
RL 0 28.347 RL -28.347 0 RL CL 0.984 0.647 0.0667 Fr 0.545 0 0 Cr 418.25
|
||||
393.612 EBEGIN
|
||||
0 setlinejoin 2 setlinecap
|
||||
EEND 28.346 LW 0.8 0.937 0.157 Cr 489.116 385.572 432.423 385.572 DL
|
||||
489.116 442.265 489.116 385.572 DL 432.423 442.265 489.116 442.265 DL
|
||||
432.423 385.572 432.423 442.265 DL 0 Cg/F0 10/Times-Roman@0 SF .469
|
||||
(zontal rule and before table.)56.692 470.478 R -1.25 -.7(Te x)5.469 H
|
||||
2.969(ta).7 G .469(fter horizontal rule and before table.)-2.969 F -1.25
|
||||
-.7(Te x)5.47 H 2.97(ta).7 G .47(fter horizontal rule and before table.)
|
||||
-2.97 F -1.25 -.7(Te x)56.692 482.478 T 3.011(ta).7 G .511(fter table.)
|
||||
-3.011 F -1.25 -.7(Te x)5.511 H 3.011(ta).7 G .511(fter table.)-3.011 F
|
||||
-1.25 -.7(Te x)5.511 H 3.011(ta).7 G .511(fter table.)-3.011 F -1.25 -.7
|
||||
(Te x)5.511 H 3.011(ta).7 G .51(fter table.)-3.011 F -1.25 -.7(Te x)5.51
|
||||
H 3.01(ta).7 G .51(fter table.)-3.01 F -1.25 -.7(Te x)5.51 H 3.01(ta).7
|
||||
G .51(fter table.)-3.01 F -1.25 -.7(Te x)5.51 H 3.01(ta).7 G .51
|
||||
(fter ta-)-3.01 F 2.677(ble. T)56.692 494.478 R -.15(ex)-.7 G 2.677(ta)
|
||||
.15 G .177(fter table.)-2.677 F -1.25 -.7(Te x)5.177 H 2.677(ta).7 G
|
||||
.177(fter table.)-2.677 F -1.25 -.7(Te x)5.177 H 2.677(ta).7 G .177
|
||||
(fter table.)-2.677 F -1.25 -.7(Te x)5.177 H 2.677(ta).7 G .177
|
||||
(fter table.)-2.677 F -1.25 -.7(Te x)5.177 H 2.677(ta).7 G .177
|
||||
(fter table.)-2.677 F -1.25 -.7(Te x)5.177 H 2.677(ta).7 G .177
|
||||
(fter table.)-2.677 F -1.25 -.7(Te x)5.177 H 2.677(ta).7 G(fter)-2.677 E
|
||||
81.594 506.738 MT 418.196 0 RL 0 3 RL -418.196 0 RL CL 0.984 0.647
|
||||
0.0667 Fr 0.545 0 0 Cr 78.094 512.528 EBEGIN
|
||||
0 setlinejoin 2 setlinecap
|
||||
EEND 2.5 LW 0.8 0.937 0.157 Cr 502.04 504.488 79.344 504.488 DL 502.04
|
||||
511.988 502.04 504.488 DL 79.344 511.988 502.04 511.988 DL 79.344
|
||||
504.488 79.344 511.988 DL 0 Cg/F0 10/Times-Roman@0 SF 3.343(table. T)
|
||||
56.692 527.278 R -.15(ex)-.7 G 3.343(ta).15 G .843(fter table.)-3.343 F
|
||||
-1.25 -.7(Te x)5.843 H 3.343(ta).7 G .843(fter horizontal rule.)-3.343 F
|
||||
-1.25 -.7(Te x)5.842 H 3.342(ta).7 G .842(fter horizontal rule.)-3.342 F
|
||||
-1.25 -.7(Te x)5.842 H 3.342(ta).7 G .842(fter horizontal rule.)-3.342 F
|
||||
-1.25 -.7(Te x)5.842 H 3.342(ta).7 G(fter)-3.342 E .407
|
||||
(horizontal rule.)56.692 539.278 R -1.25 -.7(Te x)5.407 H 2.907(ta).7 G
|
||||
.407(fter horizontal rule.)-2.907 F -1.25 -.7(Te x)5.407 H 2.907(ta).7 G
|
||||
.407(fter horizontal rule.)-2.907 F -1.25 -.7(Te x)5.408 H 2.908(ta).7 G
|
||||
.408(fter horizontal rule.)-2.908 F -1.25 -.7(Te x)5.408 H 2.908(ta).7 G
|
||||
.408(fter horizon-)-2.908 F .58(tal rule.)56.692 551.278 R -1.25 -.7
|
||||
(Te x)5.58 H 3.08(ta).7 G .58(fter horizontal rule.)-3.08 F -1.25 -.7
|
||||
(Te x)5.58 H 3.08(ta).7 G .579(fter horizontal rule.)-3.08 F -1.25 -.7
|
||||
(Te x)5.579 H 3.079(ta).7 G .579(fter horizontal rule.)-3.079 F -1.25
|
||||
-.7(Te x)5.579 H 3.079(ta).7 G .579(fter horizontal rule.)-3.079 F -1.25
|
||||
-.7(Te x)56.692 563.278 T 2.623(ta).7 G .123(fter horizontal rule.)
|
||||
-2.623 F -1.25 -.7(Te x)5.123 H 2.623(ta).7 G .123
|
||||
(fter horizontal rule.)-2.623 F -1.25 -.7(Te x)5.123 H 2.624(ta).7 G
|
||||
.124(fter horizontal rule.)-2.624 F -1.25 -.7(Te x)5.124 H 2.624(ta).7 G
|
||||
.124(fter horizontal rule.)-2.624 F -1.25 -.7(Te x)5.124 H 2.624(ta).7 G
|
||||
(fter)-2.624 E .408(horizontal rule.)56.692 575.278 R -1.25 -.7(Te x)
|
||||
5.408 H 2.908(ta).7 G .408(fter horizontal rule.)-2.908 F -1.25 -.7
|
||||
(Te x)5.408 H 2.908(ta).7 G .408(fter horizontal rule.)-2.908 F -1.25
|
||||
-.7(Te x)5.407 H 2.907(ta).7 G .407(fter horizontal rule.)-2.907 F -1.25
|
||||
-.7(Te x)5.407 H 2.907(ta).7 G .407(fter horizon-)-2.907 F(tal rule.)
|
||||
56.692 587.278 Q -1.25 -.7(Te x)5 H 2.5(ta).7 G(fter horizontal rule.)
|
||||
-2.5 E -1.25 -.7(Te x)5 H 2.5(ta).7 G(fter horizontal rule.)-2.5 E -1.25
|
||||
-.7(Te x)5 H 2.5(ta).7 G(fter horizontal rule.)-2.5 E -1.25 -.7(Te x)5 H
|
||||
2.5(ta).7 G(fter horizontal rule.)-2.5 E 0 Cg EP
|
||||
%%Trailer
|
||||
end
|
||||
%%EOF
|
||||
|
|
@ -0,0 +1,58 @@
|
|||
.ig
|
||||
Copyright 2006 Free Software Foundation, Inc.
|
||||
|
||||
Written by Joachim Walsdorff <Joachim.Walsdorff@urz.uni-heidelberg.de>
|
||||
|
||||
This file is part of hdtbl.
|
||||
|
||||
hdtbl is distributed with groff, the GNU roff typesetting system.
|
||||
|
||||
groff is free software; you can redistribute it and/or modify it under
|
||||
the terms of the GNU General Public License as published by the Free
|
||||
Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
groff is distributed in the hope that it will be useful, but WITHOUT
|
||||
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
..
|
||||
.
|
||||
.if !d sopath \
|
||||
. ds sopath
|
||||
.
|
||||
.ds lib examples/common.roff
|
||||
.soquiet \*[sopath]\*[lib]
|
||||
.if !d common \{\
|
||||
. tmc \n[.F]: cannot find "\*[lib]"; specify its location
|
||||
. tm1 " with groff '-I' or '-d sopath=' option
|
||||
.\}
|
||||
.
|
||||
.\" Seed the random number generator for reproducible builds.
|
||||
.random-seed 131545532 19201711
|
||||
.
|
||||
.H Horizontal Rules and Boxes .br with Randomly Colored Border and Background
|
||||
.PN 25 Text before horizontal rule.
|
||||
.TBL border=.5n bc=green bgc=red width=7c tal=c csp=.2n cpd=.3n .TR .TD .ETB
|
||||
.PN 10 Text after horizontal rule and before table.
|
||||
.de ctab
|
||||
.nr ? 0 1
|
||||
.PN 5 .random# ".defcolor color\En+? rgb \E*[#random]"
|
||||
.TD ".TBL border=1c bc=color1 csp=0 cpd=0 height=3c bgc=color2" .TR .TD .ETB
|
||||
..
|
||||
.
|
||||
.TBL tal=c border= csp=0 cpd=0 cols=5 width=3c
|
||||
.PN 2 .TR ".PN 5 .ctab"
|
||||
.ETB
|
||||
.PN 15 Text after table.
|
||||
.TBL border=.5n bc=color1 bgc=color2 width=15c tal=c csp=.2n cpd=.3n .TR .TD .ETB
|
||||
.PN 25 Text after horizontal rule.
|
||||
.
|
||||
.\" Local Variables:
|
||||
.\" mode: nroff
|
||||
.\" fill-column: 72
|
||||
.\" End:
|
||||
.\" vim: set filetype=groff textwidth=72:
|
||||
|
|
@ -0,0 +1,573 @@
|
|||
%!PS-Adobe-3.0
|
||||
%%Creator: groff version 1.24.1
|
||||
%%CreationDate: Mon Mar 16 21:27:47 2026
|
||||
%%DocumentNeededResources: font Times-Roman
|
||||
%%DocumentSuppliedResources: procset grops 1.24 1
|
||||
%%Pages: 2
|
||||
%%PageOrder: Ascend
|
||||
%%DocumentMedia: Default 612 792 0 () ()
|
||||
%%Orientation: Portrait
|
||||
%%EndComments
|
||||
%%BeginDefaults
|
||||
%%PageMedia: Default
|
||||
%%EndDefaults
|
||||
%%BeginProlog
|
||||
%%BeginResource: procset grops 1.24 1
|
||||
%!PS-Adobe-3.0 Resource-ProcSet
|
||||
/setpacking where{
|
||||
pop
|
||||
currentpacking
|
||||
true setpacking
|
||||
}if
|
||||
/grops 120 dict dup begin
|
||||
% The ASCII code of the space character.
|
||||
/SC 32 def
|
||||
/A/show load def
|
||||
/B{0 SC 3 -1 roll widthshow}bind def
|
||||
/C{0 exch ashow}bind def
|
||||
/D{0 exch 0 SC 5 2 roll awidthshow}bind def
|
||||
/E{0 rmoveto show}bind def
|
||||
/F{0 rmoveto 0 SC 3 -1 roll widthshow}bind def
|
||||
/G{0 rmoveto 0 exch ashow}bind def
|
||||
/H{0 rmoveto 0 exch 0 SC 5 2 roll awidthshow}bind def
|
||||
/I{0 exch rmoveto show}bind def
|
||||
/J{0 exch rmoveto 0 SC 3 -1 roll widthshow}bind def
|
||||
/K{0 exch rmoveto 0 exch ashow}bind def
|
||||
/L{0 exch rmoveto 0 exch 0 SC 5 2 roll awidthshow}bind def
|
||||
/M{rmoveto show}bind def
|
||||
/N{rmoveto 0 SC 3 -1 roll widthshow}bind def
|
||||
/O{rmoveto 0 exch ashow}bind def
|
||||
/P{rmoveto 0 exch 0 SC 5 2 roll awidthshow}bind def
|
||||
/Q{moveto show}bind def
|
||||
/R{moveto 0 SC 3 -1 roll widthshow}bind def
|
||||
/S{moveto 0 exch ashow}bind def
|
||||
/T{moveto 0 exch 0 SC 5 2 roll awidthshow}bind def
|
||||
% name size font SF -
|
||||
/SF{
|
||||
findfont exch
|
||||
[exch dup 0 exch 0 exch neg 0 0]makefont
|
||||
dup setfont
|
||||
[exch/setfont cvx]cvx bind def
|
||||
}bind def
|
||||
% name a c d font MF -
|
||||
/MF{
|
||||
findfont
|
||||
[5 2 roll
|
||||
0 3 1 roll % b
|
||||
neg 0 0]makefont
|
||||
dup setfont
|
||||
[exch/setfont cvx]cvx bind def
|
||||
}bind def
|
||||
/level0 0 def
|
||||
/RES 0 def
|
||||
/PL 0 def
|
||||
/LS 0 def
|
||||
% Enable manual feed.
|
||||
% MANUAL -
|
||||
/MANUAL{
|
||||
statusdict begin/manualfeed true store end
|
||||
}bind def
|
||||
% Guess the page length.
|
||||
% This assumes that the imageable area is vertically centered on the page.
|
||||
% PLG - length
|
||||
/PLG{
|
||||
gsave newpath clippath pathbbox grestore
|
||||
exch pop add exch pop
|
||||
}bind def
|
||||
% BP -
|
||||
/BP{
|
||||
/level0 save def
|
||||
1 setlinecap
|
||||
1 setlinejoin
|
||||
DEFS/BPhook known{DEFS begin BPhook end}if
|
||||
72 RES div dup scale
|
||||
LS{
|
||||
90 rotate
|
||||
}{
|
||||
0 PL translate
|
||||
}ifelse
|
||||
1 -1 scale
|
||||
}bind def
|
||||
/EP{
|
||||
level0 restore
|
||||
showpage
|
||||
}def
|
||||
% centerx centery radius startangle endangle DA -
|
||||
/DA{
|
||||
newpath arcn stroke
|
||||
}bind def
|
||||
% x y SN - x' y'
|
||||
% round a position to nearest (pixel + (.25,.25))
|
||||
/SN{
|
||||
transform
|
||||
.25 sub exch .25 sub exch
|
||||
round .25 add exch round .25 add exch
|
||||
itransform
|
||||
}bind def
|
||||
% endx endy startx starty DL -
|
||||
% we round the endpoints of the line, so that parallel horizontal
|
||||
% and vertical lines will appear even
|
||||
/DL{
|
||||
SN
|
||||
moveto
|
||||
SN
|
||||
lineto stroke
|
||||
}bind def
|
||||
% centerx centery radius DC -
|
||||
/DC{
|
||||
newpath 0 360 arc closepath
|
||||
}bind def
|
||||
/TM matrix def
|
||||
% width height centerx centery DE -
|
||||
/DE{
|
||||
TM currentmatrix pop
|
||||
translate scale newpath 0 0 .5 0 360 arc closepath
|
||||
TM setmatrix
|
||||
}bind def
|
||||
% these are for splines
|
||||
/RC/rcurveto load def
|
||||
/RL/rlineto load def
|
||||
/ST/stroke load def
|
||||
/MT/moveto load def
|
||||
/CL/closepath load def
|
||||
% fill the last path
|
||||
% r g b Fr -
|
||||
/Fr{
|
||||
setrgbcolor fill
|
||||
}bind def
|
||||
% c m y k Fk -
|
||||
/setcmykcolor where{
|
||||
pop
|
||||
/Fk{
|
||||
setcmykcolor fill
|
||||
}bind def
|
||||
}if
|
||||
% g Fg -
|
||||
/Fg{
|
||||
setgray fill
|
||||
}bind def
|
||||
% fill with the "current color"
|
||||
/FL/fill load def
|
||||
/LW/setlinewidth load def
|
||||
/Cr/setrgbcolor load def
|
||||
/setcmykcolor where{
|
||||
pop
|
||||
/Ck/setcmykcolor load def
|
||||
}if
|
||||
/Cg/setgray load def
|
||||
% new_font_name encoding_vector old_font_name RE -
|
||||
/RE{
|
||||
findfont
|
||||
dup maxlength 1 index/FontName known not{1 add}if dict begin
|
||||
{
|
||||
1 index/FID ne
|
||||
2 index/UniqueID ne
|
||||
and
|
||||
{def}{pop pop}ifelse
|
||||
}forall
|
||||
/Encoding exch def
|
||||
dup/FontName exch def
|
||||
currentdict end definefont pop
|
||||
}bind def
|
||||
/DEFS 0 def
|
||||
% hpos vpos EBEGIN -
|
||||
/EBEGIN{
|
||||
moveto
|
||||
DEFS begin
|
||||
}bind def
|
||||
/EEND/end load def
|
||||
/CNT 0 def
|
||||
/level1 0 def
|
||||
% llx lly newwid wid newht ht newllx newlly PBEGIN -
|
||||
/PBEGIN{
|
||||
/level1 save def
|
||||
translate
|
||||
div 3 1 roll div exch scale
|
||||
neg exch neg exch translate
|
||||
% set the graphics state to default values
|
||||
0 setgray
|
||||
0 setlinecap
|
||||
1 setlinewidth
|
||||
0 setlinejoin
|
||||
10 setmiterlimit
|
||||
[]0 setdash
|
||||
/setstrokeadjust where{
|
||||
pop
|
||||
false setstrokeadjust
|
||||
}if
|
||||
/setoverprint where{
|
||||
pop
|
||||
false setoverprint
|
||||
}if
|
||||
newpath
|
||||
/CNT countdictstack def
|
||||
userdict begin
|
||||
/showpage{}def
|
||||
%
|
||||
% Any included setpagedevice should be ignored.
|
||||
% See: http://www.w-beer.de/doc/ps/.
|
||||
%
|
||||
/setpagedevice{}def
|
||||
mark
|
||||
}bind def
|
||||
/PEND{
|
||||
cleartomark
|
||||
countdictstack CNT sub{end}repeat
|
||||
level1 restore
|
||||
}bind def
|
||||
end def
|
||||
/setpacking where{
|
||||
pop
|
||||
setpacking
|
||||
}if
|
||||
%%EndResource
|
||||
%%EndProlog
|
||||
%%BeginSetup
|
||||
%%BeginFeature: *PageSize Default
|
||||
<< /PageSize [ 612 792 ] /ImagingBBox null >> setpagedevice
|
||||
%%EndFeature
|
||||
%%IncludeResource: font Times-Roman
|
||||
grops begin/DEFS 52 dict def DEFS begin/u{.001 mul}bind def end/RES 72
|
||||
def/PL 792 def/LS false def/ENC0[/asciicircum/asciitilde/Scaron/Zcaron
|
||||
/scaron/zcaron/Ydieresis/trademark/quotesingle/Euro/.notdef/.notdef
|
||||
/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef
|
||||
/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef
|
||||
/.notdef/.notdef/space/exclam/quotedbl/numbersign/dollar/percent
|
||||
/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen
|
||||
/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon
|
||||
/semicolon/less/equal/greater/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O
|
||||
/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/backslash/bracketright/circumflex
|
||||
/underscore/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y
|
||||
/z/braceleft/bar/braceright/tilde/.notdef/quotesinglbase/guillemotleft
|
||||
/guillemotright/bullet/florin/fraction/perthousand/dagger/daggerdbl
|
||||
/endash/emdash/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/hungarumlaut
|
||||
/dotaccent/breve/caron/ring/ogonek/quotedblleft/quotedblright/oe/lslash
|
||||
/quotedblbase/OE/Lslash/.notdef/exclamdown/cent/sterling/currency/yen
|
||||
/brokenbar/section/dieresis/copyright/ordfeminine/guilsinglleft
|
||||
/logicalnot/minus/registered/macron/degree/plusminus/twosuperior
|
||||
/threesuperior/acute/mu/paragraph/periodcentered/cedilla/onesuperior
|
||||
/ordmasculine/guilsinglright/onequarter/onehalf/threequarters
|
||||
/questiondown/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE
|
||||
/Ccedilla/Egrave/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex
|
||||
/Idieresis/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis
|
||||
/multiply/Oslash/Ugrave/Uacute/Ucircumflex/Udieresis/Yacute/Thorn
|
||||
/germandbls/agrave/aacute/acircumflex/atilde/adieresis/aring/ae/ccedilla
|
||||
/egrave/eacute/ecircumflex/edieresis/igrave/iacute/icircumflex/idieresis
|
||||
/eth/ntilde/ograve/oacute/ocircumflex/otilde/odieresis/divide/oslash
|
||||
/ugrave/uacute/ucircumflex/udieresis/yacute/thorn/ydieresis]def
|
||||
/Times-Roman@0 ENC0/Times-Roman RE
|
||||
%%EndSetup
|
||||
%%Page: 1 1
|
||||
%%BeginPageSetup
|
||||
BP
|
||||
%%EndPageSetup
|
||||
/F0 10/Times-Roman@0 SF -1.25 -.7(Te x)56.692 84 T 2.916(tb).7 G .416
|
||||
(efore \214rst table.)-2.916 F -1.25 -.7(Te x)5.416 H 2.916(tb).7 G .416
|
||||
(efore \214rst table.)-2.916 F -1.25 -.7(Te x)5.416 H 2.916(tb).7 G .416
|
||||
(efore \214rst table.)-2.916 F -1.25 -.7(Te x)5.416 H 2.916(tb).7 G .416
|
||||
(efore \214rst table.)-2.916 F -1.25 -.7(Te x)5.415 H 2.915(tb).7 G .415
|
||||
(efore \214rst table.)-2.915 F -1.25 -.7(Te x)56.692 96 T 2.915(tb).7 G
|
||||
.415(efore \214rst table.)-2.915 F -1.25 -.7(Te x)5.415 H 2.916(tb).7 G
|
||||
.416(efore \214rst table.)-2.916 F -1.25 -.7(Te x)5.416 H 2.916(tb).7 G
|
||||
.416(efore \214rst table.)-2.916 F -1.25 -.7(Te x)5.416 H 2.916(tb).7 G
|
||||
.416(efore \214rst table.)-2.916 F -1.25 -.7(Te x)5.416 H 2.916(tb).7 G
|
||||
.416(efore \214rst table.)-2.916 F -1.25 -.7(Te x)56.692 108 T 2.916(tb)
|
||||
.7 G .416(efore \214rst table.)-2.916 F -1.25 -.7(Te x)5.416 H 2.916(tb)
|
||||
.7 G .416(efore \214rst table.)-2.916 F -1.25 -.7(Te x)5.416 H 2.916(tb)
|
||||
.7 G .416(efore \214rst table.)-2.916 F -1.25 -.7(Te x)5.416 H 2.916(tb)
|
||||
.7 G .416(efore \214rst table.)-2.916 F -1.25 -.7(Te x)5.415 H 2.915(tb)
|
||||
.7 G .415(efore \214rst table.)-2.915 F 61.692 121.76 MT 458 0 RL 0 380
|
||||
RL -458 0 RL CL 1 0.894 0.769 Fr 66.692 126.76 MT 448 0 RL 0 370 RL -448
|
||||
0 RL CL FL 71.692 131.76 MT 438 0 RL 0 360 RL -438 0 RL CL FL 76.692
|
||||
136.76 MT 428 0 RL 0 350 RL -428 0 RL CL FL 81.692 141.76 MT 418 0 RL 0
|
||||
340 RL -418 0 RL CL FL 86.692 146.76 MT 408 0 RL 0 330 RL -408 0 RL CL
|
||||
FL 91.692 151.76 MT 398 0 RL 0 320 RL -398 0 RL CL FL 96.692 156.76 MT
|
||||
388 0 RL 0 310 RL -388 0 RL CL FL 101.692 161.76 MT 378 0 RL 0 300 RL
|
||||
-378 0 RL CL FL 106.692 166.76 MT 368 0 RL 0 290 RL -368 0 RL CL FL
|
||||
111.692 171.76 MT 358 0 RL 0 280 RL -358 0 RL CL FL 116.692 176.76 MT
|
||||
348 0 RL 0 270 RL -348 0 RL CL FL 121.692 181.76 MT 338 0 RL 0 260 RL
|
||||
-338 0 RL CL FL 126.692 186.76 MT 328 0 RL 0 250 RL -328 0 RL CL FL
|
||||
131.692 191.76 MT 318 0 RL 0 240 RL -318 0 RL CL FL 136.692 196.76 MT
|
||||
308 0 RL 0 230 RL -308 0 RL CL FL 141.692 201.76 MT 298 0 RL 0 220 RL
|
||||
-298 0 RL CL FL 146.692 206.76 MT 288 0 RL 0 210 RL -288 0 RL CL FL
|
||||
151.692 211.76 MT 278 0 RL 0 200 RL -278 0 RL CL FL 156.692 216.76 MT
|
||||
268 0 RL 0 190 RL -268 0 RL CL FL 161.692 221.76 MT 258 0 RL 0 180 RL
|
||||
-258 0 RL CL FL 166.692 226.76 MT 248 0 RL 0 170 RL -248 0 RL CL FL
|
||||
171.692 231.76 MT 238 0 RL 0 160 RL -238 0 RL CL FL 176.692 236.76 MT
|
||||
228 0 RL 0 150 RL -228 0 RL CL FL 181.692 241.76 MT 218 0 RL 0 140 RL
|
||||
-218 0 RL CL FL 186.692 246.76 MT 208 0 RL 0 130 RL -208 0 RL CL FL
|
||||
191.692 251.76 MT 198 0 RL 0 120 RL -198 0 RL CL FL 196.692 256.76 MT
|
||||
188 0 RL 0 110 RL -188 0 RL CL FL 201.692 261.76 MT 178 0 RL 0 100 RL
|
||||
-178 0 RL CL FL 206.692 266.76 MT 168 0 RL 0 90 RL -168 0 RL CL FL
|
||||
211.692 271.76 MT 158 0 RL 0 80 RL -158 0 RL CL FL 216.692 276.76 MT 148
|
||||
0 RL 0 70 RL -148 0 RL CL FL 221.692 281.76 MT 138 0 RL 0 60 RL -138 0
|
||||
RL CL FL 226.692 286.76 MT 128 0 RL 0 50 RL -128 0 RL CL FL 231.692
|
||||
291.76 MT 118 0 RL 0 40 RL -118 0 RL CL FL 236.692 296.76 MT 108 0 RL 0
|
||||
30 RL -108 0 RL CL FL 241.692 301.76 MT 98 0 RL 0 20 RL -98 0 RL CL FL
|
||||
246.692 306.76 MT 88 0 RL 0 10 RL -88 0 RL CL FL 251.692 311.76 MT 78 0
|
||||
RL 0 0 RL -78 0 RL CL FL 0.545 0 0 Cr 246.692 317.3 EBEGIN
|
||||
0 setlinejoin 2 setlinecap
|
||||
EEND 5 LW 0.706 0.941 0.106 Cr 332.192 309.26 249.192 309.26 DL 332.192
|
||||
314.26 332.192 309.26 DL 249.192 314.26 332.192 314.26 DL 249.192 309.26
|
||||
249.192 314.26 DL 0.545 0 0 Cr 241.692 312.3 EBEGIN
|
||||
0 setlinejoin 2 setlinecap
|
||||
EEND 5 LW 0.498 0.439 0.733 Cr 337.192 304.26 244.192 304.26 DL 337.192
|
||||
319.26 337.192 304.26 DL 244.192 319.26 337.192 319.26 DL 244.192 304.26
|
||||
244.192 319.26 DL 0.545 0 0 Cr 236.692 307.3 EBEGIN
|
||||
0 setlinejoin 2 setlinecap
|
||||
EEND 5 LW 0.376 0.612 0.259 Cr 342.192 299.26 239.192 299.26 DL 342.192
|
||||
324.26 342.192 299.26 DL 239.192 324.26 342.192 324.26 DL 239.192 299.26
|
||||
239.192 324.26 DL 0.545 0 0 Cr 231.692 302.3 EBEGIN
|
||||
0 setlinejoin 2 setlinecap
|
||||
EEND 5 LW 0.392 0.745 0.784 Cr 347.192 294.26 234.192 294.26 DL 347.192
|
||||
329.26 347.192 294.26 DL 234.192 329.26 347.192 329.26 DL 234.192 294.26
|
||||
234.192 329.26 DL 0.545 0 0 Cr 226.692 297.3 EBEGIN
|
||||
0 setlinejoin 2 setlinecap
|
||||
EEND 5 LW 0.0314 0.651 0.608 Cr 352.192 289.26 229.192 289.26 DL 352.192
|
||||
334.26 352.192 289.26 DL 229.192 334.26 352.192 334.26 DL 229.192 289.26
|
||||
229.192 334.26 DL 0.545 0 0 Cr 221.692 292.3 EBEGIN
|
||||
0 setlinejoin 2 setlinecap
|
||||
EEND 5 LW 0.863 0.29 0.357 Cr 357.192 284.26 224.192 284.26 DL 357.192
|
||||
339.26 357.192 284.26 DL 224.192 339.26 357.192 339.26 DL 224.192 284.26
|
||||
224.192 339.26 DL 0.545 0 0 Cr 216.692 287.3 EBEGIN
|
||||
0 setlinejoin 2 setlinecap
|
||||
EEND 5 LW 0.851 0.663 0.0902 Cr 362.192 279.26 219.192 279.26 DL 362.192
|
||||
344.26 362.192 279.26 DL 219.192 344.26 362.192 344.26 DL 219.192 279.26
|
||||
219.192 344.26 DL 0.545 0 0 Cr 211.692 282.3 EBEGIN
|
||||
0 setlinejoin 2 setlinecap
|
||||
EEND 5 LW 0.769 0.937 0.718 Cr 367.192 274.26 214.192 274.26 DL 367.192
|
||||
349.26 367.192 274.26 DL 214.192 349.26 367.192 349.26 DL 214.192 274.26
|
||||
214.192 349.26 DL 0.545 0 0 Cr 206.692 277.3 EBEGIN
|
||||
0 setlinejoin 2 setlinecap
|
||||
EEND 5 LW 0.816 0.973 0.373 Cr 372.192 269.26 209.192 269.26 DL 372.192
|
||||
354.26 372.192 269.26 DL 209.192 354.26 372.192 354.26 DL 209.192 269.26
|
||||
209.192 354.26 DL 0.545 0 0 Cr 201.692 272.3 EBEGIN
|
||||
0 setlinejoin 2 setlinecap
|
||||
EEND 5 LW 0.549 0.549 0.125 Cr 377.192 264.26 204.192 264.26 DL 377.192
|
||||
359.26 377.192 264.26 DL 204.192 359.26 377.192 359.26 DL 204.192 264.26
|
||||
204.192 359.26 DL 0.545 0 0 Cr 196.692 267.3 EBEGIN
|
||||
0 setlinejoin 2 setlinecap
|
||||
EEND 5 LW 0.502 0.384 0.667 Cr 382.192 259.26 199.192 259.26 DL 382.192
|
||||
364.26 382.192 259.26 DL 199.192 364.26 382.192 364.26 DL 199.192 259.26
|
||||
199.192 364.26 DL 0.545 0 0 Cr 191.692 262.3 EBEGIN
|
||||
0 setlinejoin 2 setlinecap
|
||||
EEND 5 LW 0.749 0.255 0.604 Cr 387.192 254.26 194.192 254.26 DL 387.192
|
||||
369.26 387.192 254.26 DL 194.192 369.26 387.192 369.26 DL 194.192 254.26
|
||||
194.192 369.26 DL 0.545 0 0 Cr 186.692 257.3 EBEGIN
|
||||
0 setlinejoin 2 setlinecap
|
||||
EEND 5 LW 0.565 0.455 0.404 Cr 392.192 249.26 189.192 249.26 DL 392.192
|
||||
374.26 392.192 249.26 DL 189.192 374.26 392.192 374.26 DL 189.192 249.26
|
||||
189.192 374.26 DL 0.545 0 0 Cr 181.692 252.3 EBEGIN
|
||||
0 setlinejoin 2 setlinecap
|
||||
EEND 5 LW 0.357 0.682 0.384 Cr 397.192 244.26 184.192 244.26 DL 397.192
|
||||
379.26 397.192 244.26 DL 184.192 379.26 397.192 379.26 DL 184.192 244.26
|
||||
184.192 379.26 DL 0.545 0 0 Cr 176.692 247.3 EBEGIN
|
||||
0 setlinejoin 2 setlinecap
|
||||
EEND 5 LW 0.969 0.294 0.576 Cr 402.192 239.26 179.192 239.26 DL 402.192
|
||||
384.26 402.192 239.26 DL 179.192 384.26 402.192 384.26 DL 179.192 239.26
|
||||
179.192 384.26 DL 0.545 0 0 Cr 171.692 242.3 EBEGIN
|
||||
0 setlinejoin 2 setlinecap
|
||||
EEND 5 LW 0.188 0.878 0.953 Cr 407.192 234.26 174.192 234.26 DL 407.192
|
||||
389.26 407.192 234.26 DL 174.192 389.26 407.192 389.26 DL 174.192 234.26
|
||||
174.192 389.26 DL 0.545 0 0 Cr 166.692 237.3 EBEGIN
|
||||
0 setlinejoin 2 setlinecap
|
||||
EEND 5 LW 0.278 0.78 0.859 Cr 412.192 229.26 169.192 229.26 DL 412.192
|
||||
394.26 412.192 229.26 DL 169.192 394.26 412.192 394.26 DL 169.192 229.26
|
||||
169.192 394.26 DL 0.545 0 0 Cr 161.692 232.3 EBEGIN
|
||||
0 setlinejoin 2 setlinecap
|
||||
EEND 5 LW 0.0745 0.561 0.467 Cr 417.192 224.26 164.192 224.26 DL 417.192
|
||||
399.26 417.192 224.26 DL 164.192 399.26 417.192 399.26 DL 164.192 224.26
|
||||
164.192 399.26 DL 0.545 0 0 Cr 156.692 227.3 EBEGIN
|
||||
0 setlinejoin 2 setlinecap
|
||||
EEND 5 LW 0.843 0.749 0.482 Cr 422.192 219.26 159.192 219.26 DL 422.192
|
||||
404.26 422.192 219.26 DL 159.192 404.26 422.192 404.26 DL 159.192 219.26
|
||||
159.192 404.26 DL 0.545 0 0 Cr 151.692 222.3 EBEGIN
|
||||
0 setlinejoin 2 setlinecap
|
||||
EEND 5 LW 0.31 0.965 0.169 Cr 427.192 214.26 154.192 214.26 DL 427.192
|
||||
409.26 427.192 214.26 DL 154.192 409.26 427.192 409.26 DL 154.192 214.26
|
||||
154.192 409.26 DL 0.545 0 0 Cr 146.692 217.3 EBEGIN
|
||||
0 setlinejoin 2 setlinecap
|
||||
EEND 5 LW 0.478 0.698 0.0706 Cr 432.192 209.26 149.192 209.26 DL 432.192
|
||||
414.26 432.192 209.26 DL 149.192 414.26 432.192 414.26 DL 149.192 209.26
|
||||
149.192 414.26 DL 0.545 0 0 Cr 141.692 212.3 EBEGIN
|
||||
0 setlinejoin 2 setlinecap
|
||||
EEND 5 LW 0.98 0.0745 0.875 Cr 437.192 204.26 144.192 204.26 DL 437.192
|
||||
419.26 437.192 204.26 DL 144.192 419.26 437.192 419.26 DL 144.192 204.26
|
||||
144.192 419.26 DL 0.545 0 0 Cr 136.692 207.3 EBEGIN
|
||||
0 setlinejoin 2 setlinecap
|
||||
EEND 5 LW 0.976 0.965 0.867 Cr 442.192 199.26 139.192 199.26 DL 442.192
|
||||
424.26 442.192 199.26 DL 139.192 424.26 442.192 424.26 DL 139.192 199.26
|
||||
139.192 424.26 DL 0.545 0 0 Cr 131.692 202.3 EBEGIN
|
||||
0 setlinejoin 2 setlinecap
|
||||
EEND 5 LW 0.0863 0.561 0.122 Cr 447.192 194.26 134.192 194.26 DL 447.192
|
||||
429.26 447.192 194.26 DL 134.192 429.26 447.192 429.26 DL 134.192 194.26
|
||||
134.192 429.26 DL 0.545 0 0 Cr 126.692 197.3 EBEGIN
|
||||
0 setlinejoin 2 setlinecap
|
||||
EEND 5 LW 0.129 0.576 0.369 Cr 452.192 189.26 129.192 189.26 DL 452.192
|
||||
434.26 452.192 189.26 DL 129.192 434.26 452.192 434.26 DL 129.192 189.26
|
||||
129.192 434.26 DL 0.545 0 0 Cr 121.692 192.3 EBEGIN
|
||||
0 setlinejoin 2 setlinecap
|
||||
EEND 5 LW 0.263 0.0431 0.49 Cr 457.192 184.26 124.192 184.26 DL 457.192
|
||||
439.26 457.192 184.26 DL 124.192 439.26 457.192 439.26 DL 124.192 184.26
|
||||
124.192 439.26 DL 0.545 0 0 Cr 116.692 187.3 EBEGIN
|
||||
0 setlinejoin 2 setlinecap
|
||||
EEND 5 LW 0.0941 0.965 0.216 Cr 462.192 179.26 119.192 179.26 DL 462.192
|
||||
444.26 462.192 179.26 DL 119.192 444.26 462.192 444.26 DL 119.192 179.26
|
||||
119.192 444.26 DL 0.545 0 0 Cr 111.692 182.3 EBEGIN
|
||||
0 setlinejoin 2 setlinecap
|
||||
EEND 5 LW 0.369 0.992 0.686 Cr 467.192 174.26 114.192 174.26 DL 467.192
|
||||
449.26 467.192 174.26 DL 114.192 449.26 467.192 449.26 DL 114.192 174.26
|
||||
114.192 449.26 DL 0.545 0 0 Cr 106.692 177.3 EBEGIN
|
||||
0 setlinejoin 2 setlinecap
|
||||
EEND 5 LW 0.173 0.341 0.373 Cr 472.192 169.26 109.192 169.26 DL 472.192
|
||||
454.26 472.192 169.26 DL 109.192 454.26 472.192 454.26 DL 109.192 169.26
|
||||
109.192 454.26 DL 0.545 0 0 Cr 101.692 172.3 EBEGIN
|
||||
0 setlinejoin 2 setlinecap
|
||||
EEND 5 LW 0.396 0.698 0.0745 Cr 477.192 164.26 104.192 164.26 DL 477.192
|
||||
459.26 477.192 164.26 DL 104.192 459.26 477.192 459.26 DL 104.192 164.26
|
||||
104.192 459.26 DL 0.545 0 0 Cr 96.692 167.3 EBEGIN
|
||||
0 setlinejoin 2 setlinecap
|
||||
EEND 5 LW 0.2 0 0.161 Cr 482.192 159.26 99.192 159.26 DL 482.192 464.26
|
||||
482.192 159.26 DL 99.192 464.26 482.192 464.26 DL 99.192 159.26 99.192
|
||||
464.26 DL 0.545 0 0 Cr 91.692 162.3 EBEGIN
|
||||
0 setlinejoin 2 setlinecap
|
||||
EEND 5 LW 1 0.502 0.482 Cr 487.192 154.26 94.192 154.26 DL 487.192
|
||||
469.26 487.192 154.26 DL 94.192 469.26 487.192 469.26 DL 94.192 154.26
|
||||
94.192 469.26 DL 0.545 0 0 Cr 86.692 157.3 EBEGIN
|
||||
0 setlinejoin 2 setlinecap
|
||||
EEND 5 LW 0.475 0.624 0.137 Cr 492.192 149.26 89.192 149.26 DL 492.192
|
||||
474.26 492.192 149.26 DL 89.192 474.26 492.192 474.26 DL 89.192 149.26
|
||||
89.192 474.26 DL 0.545 0 0 Cr 81.692 152.3 EBEGIN
|
||||
0 setlinejoin 2 setlinecap
|
||||
EEND 5 LW 0.424 0.827 0.671 Cr 497.192 144.26 84.192 144.26 DL 497.192
|
||||
479.26 497.192 144.26 DL 84.192 479.26 497.192 479.26 DL 84.192 144.26
|
||||
84.192 479.26 DL 0.545 0 0 Cr 76.692 147.3 EBEGIN
|
||||
0 setlinejoin 2 setlinecap
|
||||
EEND 5 LW 0.843 0.639 0.62 Cr 502.192 139.26 79.192 139.26 DL 502.192
|
||||
484.26 502.192 139.26 DL 79.192 484.26 502.192 484.26 DL 79.192 139.26
|
||||
79.192 484.26 DL 0.545 0 0 Cr 71.692 142.3 EBEGIN
|
||||
0 setlinejoin 2 setlinecap
|
||||
EEND 5 LW 0.396 0.835 0.949 Cr 507.192 134.26 74.192 134.26 DL 507.192
|
||||
489.26 507.192 134.26 DL 74.192 489.26 507.192 489.26 DL 74.192 134.26
|
||||
74.192 489.26 DL 0.545 0 0 Cr 66.692 137.3 EBEGIN
|
||||
0 setlinejoin 2 setlinecap
|
||||
EEND 5 LW 0.514 0.22 0.945 Cr 512.192 129.26 69.192 129.26 DL 512.192
|
||||
494.26 512.192 129.26 DL 69.192 494.26 512.192 494.26 DL 69.192 129.26
|
||||
69.192 494.26 DL 0.545 0 0 Cr 61.692 132.3 EBEGIN
|
||||
0 setlinejoin 2 setlinecap
|
||||
EEND 5 LW 0.969 0.776 0.788 Cr 517.192 124.26 64.192 124.26 DL 517.192
|
||||
499.26 517.192 124.26 DL 64.192 499.26 517.192 499.26 DL 64.192 124.26
|
||||
64.192 499.26 DL 0.545 0 0 Cr 56.692 127.3 EBEGIN
|
||||
0 setlinejoin 2 setlinecap
|
||||
EEND 5 LW 0.235 0.635 0.396 Cr 522.192 119.26 59.192 119.26 DL 522.192
|
||||
504.26 522.192 119.26 DL 59.192 504.26 522.192 504.26 DL 59.192 119.26
|
||||
59.192 504.26 DL 0.545 0 0 Cr/F0 10/Times-Roman@0 SF -.8(Ta)56.692 519.6
|
||||
S(ble 1:).8 E(Nested T)5 E(ables with Randomly Colored Border)-.8 E 0 Cg
|
||||
.825(***** T)56.692 537.6 R -.15(ex)-.7 G 3.325(ta).15 G .825
|
||||
(fter \214rst table.)-3.325 F -1.25 -.7(Te x)5.825 H 3.325(ta).7 G .825
|
||||
(fter \214rst table.)-3.325 F -1.25 -.7(Te x)5.825 H 3.325(ta).7 G .825
|
||||
(fter \214rst table.)-3.325 F -1.25 -.7(Te x)5.825 H 3.325(ta).7 G .825
|
||||
(fter \214rst table.)-3.325 F -1.25 -.7(Te x)5.825 H 3.325(ta).7 G .825
|
||||
(fter \214rst table.)-3.325 F -1.25 -.7(Te x)56.692 549.6 T 2.534(ta).7
|
||||
G .034(fter \214rst table.)-2.534 F -1.25 -.7(Te x)5.034 H 2.534(ta).7 G
|
||||
.034(fter \214rst table.)-2.534 F -1.25 -.7(Te x)5.033 H 2.533(ta).7 G
|
||||
.033(fter \214rst table.)-2.533 F -1.25 -.7(Te x)5.033 H 2.533(ta).7 G
|
||||
.033(fter \214rst table.)-2.533 F -1.25 -.7(Te x)5.033 H 2.533(ta).7 G
|
||||
.033(fter \214rst table.)-2.533 F -1.25 -.7(Te x)5.033 H 2.533(ta).7 G
|
||||
(fter)-2.533 E(\214rst table.)56.692 561.6 Q -1.25 -.7(Te x)5 H 2.5(ta)
|
||||
.7 G(fter \214rst table.)-2.5 E -1.25 -.7(Te x)5 H 2.5(ta).7 G
|
||||
(fter \214rst table.)-2.5 E -1.25 -.7(Te x)5 H 2.5(ta).7 G
|
||||
(fter \214rst table.)-2.5 E -1.25 -.7(Te x)5 H 2.5(ta).7 G
|
||||
(fter \214rst table.)-2.5 E(arbitrary te)186.072 817.889 Q
|
||||
(xt for page footer)-.15 E 2.5(,e)-.4 G(xcept on the last page)-2.65 E
|
||||
(1)124.38 E 0 Cg EP
|
||||
%%Page: 2 2
|
||||
%%BeginPageSetup
|
||||
BP
|
||||
%%EndPageSetup
|
||||
/F0 10/Times-Roman@0 SF(arbitrary te)183.852 48 Q(xt for page header)
|
||||
-.15 E 2.5(,e)-.4 G(xcept on the \214rst page)-2.65 E -1.25 -.7(Te x)
|
||||
56.692 84 T 2.591(tb).7 G .091(efore second table.)-2.591 F -1.25 -.7
|
||||
(Te x)5.091 H 2.592(tb).7 G .092(efore second table.)-2.592 F -1.25 -.7
|
||||
(Te x)5.092 H 2.592(tb).7 G .092(efore second table.)-2.592 F -1.25 -.7
|
||||
(Te x)5.092 H 2.592(tb).7 G .092(efore second table.)-2.592 F -1.25 -.7
|
||||
(Te x)5.092 H 2.592(tb).7 G(efore)-2.592 E .369(second table.)56.692 96
|
||||
R -1.25 -.7(Te x)5.369 H 2.869(tb).7 G .369(efore second table.)-2.869 F
|
||||
-1.25 -.7(Te x)5.368 H 2.868(tb).7 G .368(efore second table.)-2.868 F
|
||||
-1.25 -.7(Te x)5.368 H 2.868(tb).7 G .368(efore second table.)-2.868 F
|
||||
-1.25 -.7(Te x)5.368 H 2.868(tb).7 G .368(efore second ta-)-2.868 F
|
||||
3.081(ble. T)56.692 108 R -.15(ex)-.7 G 3.081(tb).15 G .581
|
||||
(efore second table.)-3.081 F -1.25 -.7(Te x)5.581 H 3.081(tb).7 G .581
|
||||
(efore second table.)-3.081 F -1.25 -.7(Te x)5.581 H 3.081(tb).7 G .581
|
||||
(efore second table.)-3.081 F -1.25 -.7(Te x)5.581 H 3.081(tb).7 G .582
|
||||
(efore second table.)-3.081 F -1.25 -.7(Te x)5.582 H(t).7 E 56.692
|
||||
116.76 MT 468 0 RL 0 390 RL -468 0 RL CL 0.0157 0.933 0.737 Fr 61.692
|
||||
121.76 MT 458 0 RL 0 380 RL -458 0 RL CL 0.733 0.0392 0.204 Fr 66.692
|
||||
126.76 MT 448 0 RL 0 370 RL -448 0 RL CL 0.349 0.584 0.71 Fr 71.692
|
||||
131.76 MT 438 0 RL 0 360 RL -438 0 RL CL 0.761 0.937 0.0706 Fr 76.692
|
||||
136.76 MT 428 0 RL 0 350 RL -428 0 RL CL 0.161 0.31 0.8 Fr 81.692 141.76
|
||||
MT 418 0 RL 0 340 RL -418 0 RL CL 0.976 0.733 0.0902 Fr 86.692 146.76 MT
|
||||
408 0 RL 0 330 RL -408 0 RL CL 0.8 0.937 0.157 Fr 91.692 151.76 MT 398 0
|
||||
RL 0 320 RL -398 0 RL CL 0.984 0.647 0.0667 Fr 96.692 156.76 MT 388 0 RL
|
||||
0 310 RL -388 0 RL CL 0.643 0.184 0.145 Fr 101.692 161.76 MT 378 0 RL 0
|
||||
300 RL -378 0 RL CL 0.608 0.282 0.545 Fr 106.692 166.76 MT 368 0 RL 0
|
||||
290 RL -368 0 RL CL 0.565 0.153 0.729 Fr 111.692 171.76 MT 358 0 RL 0
|
||||
280 RL -358 0 RL CL 0.0902 0.341 0.318 Fr 116.692 176.76 MT 348 0 RL 0
|
||||
270 RL -348 0 RL CL 0.769 0.486 0.0118 Fr 121.692 181.76 MT 338 0 RL 0
|
||||
260 RL -338 0 RL CL 0.933 0.373 0.871 Fr 126.692 186.76 MT 328 0 RL 0
|
||||
250 RL -328 0 RL CL 0.78 0.259 0.529 Fr 131.692 191.76 MT 318 0 RL 0 240
|
||||
RL -318 0 RL CL 0.373 0.671 0.643 Fr 136.692 196.76 MT 308 0 RL 0 230 RL
|
||||
-308 0 RL CL 0.824 0.451 0.463 Fr 141.692 201.76 MT 298 0 RL 0 220 RL
|
||||
-298 0 RL CL 0.514 0.051 0.682 Fr 146.692 206.76 MT 288 0 RL 0 210 RL
|
||||
-288 0 RL CL 0.459 0.694 0.867 Fr 151.692 211.76 MT 278 0 RL 0 200 RL
|
||||
-278 0 RL CL 0.906 0.102 0.388 Fr 156.692 216.76 MT 268 0 RL 0 190 RL
|
||||
-268 0 RL CL 0.0706 0.773 0.306 Fr 161.692 221.76 MT 258 0 RL 0 180 RL
|
||||
-258 0 RL CL 0.38 0.137 0.525 Fr 166.692 226.76 MT 248 0 RL 0 170 RL
|
||||
-248 0 RL CL 0.933 0.369 0.929 Fr 171.692 231.76 MT 238 0 RL 0 160 RL
|
||||
-238 0 RL CL 0.835 0.22 0.565 Fr 176.692 236.76 MT 228 0 RL 0 150 RL
|
||||
-228 0 RL CL 0.153 0.761 0.773 Fr 181.692 241.76 MT 218 0 RL 0 140 RL
|
||||
-218 0 RL CL 0.0196 0.165 0.0863 Fr 186.692 246.76 MT 208 0 RL 0 130 RL
|
||||
-208 0 RL CL 0.416 0.255 0.631 Fr 191.692 251.76 MT 198 0 RL 0 120 RL
|
||||
-198 0 RL CL 0.31 0.22 0.671 Fr 196.692 256.76 MT 188 0 RL 0 110 RL -188
|
||||
0 RL CL 0.761 0.914 0.714 Fr 201.692 261.76 MT 178 0 RL 0 100 RL -178 0
|
||||
RL CL 0.173 0.761 0.463 Fr 206.692 266.76 MT 168 0 RL 0 90 RL -168 0 RL
|
||||
CL 0.169 0.604 0.161 Fr 211.692 271.76 MT 158 0 RL 0 80 RL -158 0 RL CL
|
||||
0.157 0.349 0.255 Fr 216.692 276.76 MT 148 0 RL 0 70 RL -148 0 RL CL
|
||||
0.439 0.855 0.859 Fr 221.692 281.76 MT 138 0 RL 0 60 RL -138 0 RL CL
|
||||
0.647 0.243 0.855 Fr 226.692 286.76 MT 128 0 RL 0 50 RL -128 0 RL CL
|
||||
0.969 0.424 0.251 Fr 231.692 291.76 MT 118 0 RL 0 40 RL -118 0 RL CL
|
||||
0.145 0.463 0.349 Fr 236.692 296.76 MT 108 0 RL 0 30 RL -108 0 RL CL
|
||||
0.529 0.729 0.631 Fr 241.692 301.76 MT 98 0 RL 0 20 RL -98 0 RL CL 0.565
|
||||
0.408 0.102 Fr 246.692 306.76 MT 88 0 RL 0 10 RL -88 0 RL CL 0.918 0.157
|
||||
0.0118 Fr 0.545 0 0 Cr -.8(Ta)56.692 519.6 S(ble 2:).8 E(Nested T)5 E
|
||||
(ables with Randomly Colored Background)-.8 E 0 Cg .924
|
||||
(before second table.)56.692 537.6 R -1.25 -.7(Te x)5.924 H 3.424(tb).7
|
||||
G .924(efore second table.)-3.424 F .924(***** T)5.924 F -.15(ex)-.7 G
|
||||
3.424(ta).15 G .923(fter second table.)-3.424 F -1.25 -.7(Te x)5.923 H
|
||||
3.423(ta).7 G .923(fter second table.)-3.423 F -1.25 -.7(Te x)5.923 H
|
||||
3.423(ta).7 G(fter)-3.423 E .07(second table.)56.692 549.6 R -1.25 -.7
|
||||
(Te x)5.07 H 2.57(ta).7 G .07(fter second table.)-2.57 F -1.25 -.7(Te x)
|
||||
5.07 H 2.57(ta).7 G .07(fter second table.)-2.57 F -1.25 -.7(Te x)5.071
|
||||
H 2.571(ta).7 G .071(fter second table.)-2.571 F -1.25 -.7(Te x)5.071 H
|
||||
2.571(ta).7 G .071(fter second table.)-2.571 F -1.25 -.7(Te x)5.071 H(t)
|
||||
.7 E .163(after second table.)56.692 561.6 R -1.25 -.7(Te x)5.163 H
|
||||
2.663(ta).7 G .163(fter second table.)-2.663 F -1.25 -.7(Te x)5.163 H
|
||||
2.663(ta).7 G .163(fter second table.)-2.663 F -1.25 -.7(Te x)5.163 H
|
||||
2.663(ta).7 G .163(fter second table.)-2.663 F -1.25 -.7(Te x)5.162 H
|
||||
2.662(ta).7 G .162(fter second table.)-2.662 F -1.25 -.7(Te x)56.692
|
||||
573.6 T 2.91(ta).7 G .41(fter second table.)-2.91 F -1.25 -.7(Te x)5.41
|
||||
H 2.91(ta).7 G .41(fter second table.)-2.91 F -1.25 -.7(Te x)5.41 H
|
||||
2.911(ta).7 G .411(fter second table.)-2.911 F -1.25 -.7(Te x)5.411 H
|
||||
2.911(ta).7 G .411(fter second table.)-2.911 F -1.25 -.7(Te x)5.411 H
|
||||
2.911(ta).7 G .411(fter second)-2.911 F 3.096(table. T)56.692 585.6 R
|
||||
-.15(ex)-.7 G 3.096(ta).15 G .596(fter second table.)-3.096 F -1.25 -.7
|
||||
(Te x)5.596 H 3.096(ta).7 G .596(fter second table.)-3.096 F -1.25 -.7
|
||||
(Te x)5.596 H 3.096(ta).7 G .595(fter second table.)-3.096 F -1.25 -.7
|
||||
(Te x)5.595 H 3.095(ta).7 G .595(fter second table.)-3.095 F -1.25 -.7
|
||||
(Te x)5.595 H 3.095(ta).7 G(fter)-3.095 E(second table.)56.692 597.6 Q
|
||||
-1.25 -.7(Te x)5 H 2.5(ta).7 G(fter second table.)-2.5 E -1.25 -.7(Te x)
|
||||
5 H 2.5(ta).7 G(fter second table.)-2.5 E -1.25 -.7(Te x)5 H 2.5(ta).7 G
|
||||
(fter second table.)-2.5 E 0 Cg EP
|
||||
%%Trailer
|
||||
end
|
||||
%%EOF
|
||||
|
|
@ -0,0 +1,64 @@
|
|||
.ig
|
||||
Copyright 2006 Free Software Foundation, Inc.
|
||||
|
||||
Written by Joachim Walsdorff <Joachim.Walsdorff@urz.uni-heidelberg.de>
|
||||
|
||||
This file is part of hdtbl.
|
||||
|
||||
hdtbl is distributed with groff, the GNU roff typesetting system.
|
||||
|
||||
groff is free software; you can redistribute it and/or modify it under
|
||||
the terms of the GNU General Public License as published by the Free
|
||||
Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
groff is distributed in the hope that it will be useful, but WITHOUT
|
||||
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
..
|
||||
.
|
||||
.if !d sopath \
|
||||
. ds sopath
|
||||
.
|
||||
.ds lib examples/common.roff
|
||||
.soquiet \*[sopath]\*[lib]
|
||||
.if !d common \{\
|
||||
. tmc \n[.F]: cannot find "\*[lib]"; specify its location
|
||||
. tm1 " with groff '-I' or '-d sopath=' option
|
||||
.\}
|
||||
.
|
||||
.
|
||||
.\" Seed the random number generator for reproducible builds.
|
||||
.random-seed 131545532 19201711
|
||||
.
|
||||
.PN 15 Text before first table.
|
||||
.nr # 0 1
|
||||
*****
|
||||
.PN 39 .random# ".defcolor c\\n[#] rgb \\\\*[#random] " \
|
||||
".TBL csp=0 cpd=0 border=1n bc=c\\n[#]" \
|
||||
".if \\\\n+#=1 .CPTN val=b Nested Tables with Randomly Colored Border" \
|
||||
.TR .TD
|
||||
.PN 39 .ETB
|
||||
.PN 15 Text after first table.
|
||||
.
|
||||
.bp
|
||||
.
|
||||
.PN 15 Text before second table.
|
||||
*****
|
||||
.nr # 0 1
|
||||
.PN 39 .random# ".defcolor c\\n[#] rgb \\\\*[#random] " \
|
||||
".TBL csp=0 cpd=1n border= bgc=c\\n[#]" \
|
||||
".if \\\\n+#=1 .CPTN val=b Nested Tables with Randomly Colored Background" \
|
||||
.TR .TD
|
||||
.PN 39 .ETB
|
||||
.PN 25 Text after second table.
|
||||
.
|
||||
.\" Local Variables:
|
||||
.\" mode: nroff
|
||||
.\" fill-column: 72
|
||||
.\" End:
|
||||
.\" vim: set filetype=groff textwidth=72:
|
||||
|
|
@ -0,0 +1,402 @@
|
|||
%!PS-Adobe-3.0
|
||||
%%Creator: groff version 1.24.1
|
||||
%%CreationDate: Mon Mar 16 21:27:47 2026
|
||||
%%DocumentNeededResources: font Times-Bold
|
||||
%%+ font Times-Roman
|
||||
%%DocumentSuppliedResources: procset grops 1.24 1
|
||||
%%Pages: 1
|
||||
%%PageOrder: Ascend
|
||||
%%DocumentMedia: Default 612 792 0 () ()
|
||||
%%Orientation: Portrait
|
||||
%%EndComments
|
||||
%%BeginDefaults
|
||||
%%PageMedia: Default
|
||||
%%EndDefaults
|
||||
%%BeginProlog
|
||||
%%BeginResource: procset grops 1.24 1
|
||||
%!PS-Adobe-3.0 Resource-ProcSet
|
||||
/setpacking where{
|
||||
pop
|
||||
currentpacking
|
||||
true setpacking
|
||||
}if
|
||||
/grops 120 dict dup begin
|
||||
% The ASCII code of the space character.
|
||||
/SC 32 def
|
||||
/A/show load def
|
||||
/B{0 SC 3 -1 roll widthshow}bind def
|
||||
/C{0 exch ashow}bind def
|
||||
/D{0 exch 0 SC 5 2 roll awidthshow}bind def
|
||||
/E{0 rmoveto show}bind def
|
||||
/F{0 rmoveto 0 SC 3 -1 roll widthshow}bind def
|
||||
/G{0 rmoveto 0 exch ashow}bind def
|
||||
/H{0 rmoveto 0 exch 0 SC 5 2 roll awidthshow}bind def
|
||||
/I{0 exch rmoveto show}bind def
|
||||
/J{0 exch rmoveto 0 SC 3 -1 roll widthshow}bind def
|
||||
/K{0 exch rmoveto 0 exch ashow}bind def
|
||||
/L{0 exch rmoveto 0 exch 0 SC 5 2 roll awidthshow}bind def
|
||||
/M{rmoveto show}bind def
|
||||
/N{rmoveto 0 SC 3 -1 roll widthshow}bind def
|
||||
/O{rmoveto 0 exch ashow}bind def
|
||||
/P{rmoveto 0 exch 0 SC 5 2 roll awidthshow}bind def
|
||||
/Q{moveto show}bind def
|
||||
/R{moveto 0 SC 3 -1 roll widthshow}bind def
|
||||
/S{moveto 0 exch ashow}bind def
|
||||
/T{moveto 0 exch 0 SC 5 2 roll awidthshow}bind def
|
||||
% name size font SF -
|
||||
/SF{
|
||||
findfont exch
|
||||
[exch dup 0 exch 0 exch neg 0 0]makefont
|
||||
dup setfont
|
||||
[exch/setfont cvx]cvx bind def
|
||||
}bind def
|
||||
% name a c d font MF -
|
||||
/MF{
|
||||
findfont
|
||||
[5 2 roll
|
||||
0 3 1 roll % b
|
||||
neg 0 0]makefont
|
||||
dup setfont
|
||||
[exch/setfont cvx]cvx bind def
|
||||
}bind def
|
||||
/level0 0 def
|
||||
/RES 0 def
|
||||
/PL 0 def
|
||||
/LS 0 def
|
||||
% Enable manual feed.
|
||||
% MANUAL -
|
||||
/MANUAL{
|
||||
statusdict begin/manualfeed true store end
|
||||
}bind def
|
||||
% Guess the page length.
|
||||
% This assumes that the imageable area is vertically centered on the page.
|
||||
% PLG - length
|
||||
/PLG{
|
||||
gsave newpath clippath pathbbox grestore
|
||||
exch pop add exch pop
|
||||
}bind def
|
||||
% BP -
|
||||
/BP{
|
||||
/level0 save def
|
||||
1 setlinecap
|
||||
1 setlinejoin
|
||||
DEFS/BPhook known{DEFS begin BPhook end}if
|
||||
72 RES div dup scale
|
||||
LS{
|
||||
90 rotate
|
||||
}{
|
||||
0 PL translate
|
||||
}ifelse
|
||||
1 -1 scale
|
||||
}bind def
|
||||
/EP{
|
||||
level0 restore
|
||||
showpage
|
||||
}def
|
||||
% centerx centery radius startangle endangle DA -
|
||||
/DA{
|
||||
newpath arcn stroke
|
||||
}bind def
|
||||
% x y SN - x' y'
|
||||
% round a position to nearest (pixel + (.25,.25))
|
||||
/SN{
|
||||
transform
|
||||
.25 sub exch .25 sub exch
|
||||
round .25 add exch round .25 add exch
|
||||
itransform
|
||||
}bind def
|
||||
% endx endy startx starty DL -
|
||||
% we round the endpoints of the line, so that parallel horizontal
|
||||
% and vertical lines will appear even
|
||||
/DL{
|
||||
SN
|
||||
moveto
|
||||
SN
|
||||
lineto stroke
|
||||
}bind def
|
||||
% centerx centery radius DC -
|
||||
/DC{
|
||||
newpath 0 360 arc closepath
|
||||
}bind def
|
||||
/TM matrix def
|
||||
% width height centerx centery DE -
|
||||
/DE{
|
||||
TM currentmatrix pop
|
||||
translate scale newpath 0 0 .5 0 360 arc closepath
|
||||
TM setmatrix
|
||||
}bind def
|
||||
% these are for splines
|
||||
/RC/rcurveto load def
|
||||
/RL/rlineto load def
|
||||
/ST/stroke load def
|
||||
/MT/moveto load def
|
||||
/CL/closepath load def
|
||||
% fill the last path
|
||||
% r g b Fr -
|
||||
/Fr{
|
||||
setrgbcolor fill
|
||||
}bind def
|
||||
% c m y k Fk -
|
||||
/setcmykcolor where{
|
||||
pop
|
||||
/Fk{
|
||||
setcmykcolor fill
|
||||
}bind def
|
||||
}if
|
||||
% g Fg -
|
||||
/Fg{
|
||||
setgray fill
|
||||
}bind def
|
||||
% fill with the "current color"
|
||||
/FL/fill load def
|
||||
/LW/setlinewidth load def
|
||||
/Cr/setrgbcolor load def
|
||||
/setcmykcolor where{
|
||||
pop
|
||||
/Ck/setcmykcolor load def
|
||||
}if
|
||||
/Cg/setgray load def
|
||||
% new_font_name encoding_vector old_font_name RE -
|
||||
/RE{
|
||||
findfont
|
||||
dup maxlength 1 index/FontName known not{1 add}if dict begin
|
||||
{
|
||||
1 index/FID ne
|
||||
2 index/UniqueID ne
|
||||
and
|
||||
{def}{pop pop}ifelse
|
||||
}forall
|
||||
/Encoding exch def
|
||||
dup/FontName exch def
|
||||
currentdict end definefont pop
|
||||
}bind def
|
||||
/DEFS 0 def
|
||||
% hpos vpos EBEGIN -
|
||||
/EBEGIN{
|
||||
moveto
|
||||
DEFS begin
|
||||
}bind def
|
||||
/EEND/end load def
|
||||
/CNT 0 def
|
||||
/level1 0 def
|
||||
% llx lly newwid wid newht ht newllx newlly PBEGIN -
|
||||
/PBEGIN{
|
||||
/level1 save def
|
||||
translate
|
||||
div 3 1 roll div exch scale
|
||||
neg exch neg exch translate
|
||||
% set the graphics state to default values
|
||||
0 setgray
|
||||
0 setlinecap
|
||||
1 setlinewidth
|
||||
0 setlinejoin
|
||||
10 setmiterlimit
|
||||
[]0 setdash
|
||||
/setstrokeadjust where{
|
||||
pop
|
||||
false setstrokeadjust
|
||||
}if
|
||||
/setoverprint where{
|
||||
pop
|
||||
false setoverprint
|
||||
}if
|
||||
newpath
|
||||
/CNT countdictstack def
|
||||
userdict begin
|
||||
/showpage{}def
|
||||
%
|
||||
% Any included setpagedevice should be ignored.
|
||||
% See: http://www.w-beer.de/doc/ps/.
|
||||
%
|
||||
/setpagedevice{}def
|
||||
mark
|
||||
}bind def
|
||||
/PEND{
|
||||
cleartomark
|
||||
countdictstack CNT sub{end}repeat
|
||||
level1 restore
|
||||
}bind def
|
||||
end def
|
||||
/setpacking where{
|
||||
pop
|
||||
setpacking
|
||||
}if
|
||||
%%EndResource
|
||||
%%EndProlog
|
||||
%%BeginSetup
|
||||
%%BeginFeature: *PageSize Default
|
||||
<< /PageSize [ 612 792 ] /ImagingBBox null >> setpagedevice
|
||||
%%EndFeature
|
||||
%%IncludeResource: font Times-Bold
|
||||
%%IncludeResource: font Times-Roman
|
||||
grops begin/DEFS 52 dict def DEFS begin/u{.001 mul}bind def end/RES 72
|
||||
def/PL 792 def/LS false def/ENC0[/asciicircum/asciitilde/Scaron/Zcaron
|
||||
/scaron/zcaron/Ydieresis/trademark/quotesingle/Euro/.notdef/.notdef
|
||||
/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef
|
||||
/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef
|
||||
/.notdef/.notdef/space/exclam/quotedbl/numbersign/dollar/percent
|
||||
/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen
|
||||
/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon
|
||||
/semicolon/less/equal/greater/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O
|
||||
/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/backslash/bracketright/circumflex
|
||||
/underscore/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y
|
||||
/z/braceleft/bar/braceright/tilde/.notdef/quotesinglbase/guillemotleft
|
||||
/guillemotright/bullet/florin/fraction/perthousand/dagger/daggerdbl
|
||||
/endash/emdash/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/hungarumlaut
|
||||
/dotaccent/breve/caron/ring/ogonek/quotedblleft/quotedblright/oe/lslash
|
||||
/quotedblbase/OE/Lslash/.notdef/exclamdown/cent/sterling/currency/yen
|
||||
/brokenbar/section/dieresis/copyright/ordfeminine/guilsinglleft
|
||||
/logicalnot/minus/registered/macron/degree/plusminus/twosuperior
|
||||
/threesuperior/acute/mu/paragraph/periodcentered/cedilla/onesuperior
|
||||
/ordmasculine/guilsinglright/onequarter/onehalf/threequarters
|
||||
/questiondown/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE
|
||||
/Ccedilla/Egrave/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex
|
||||
/Idieresis/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis
|
||||
/multiply/Oslash/Ugrave/Uacute/Ucircumflex/Udieresis/Yacute/Thorn
|
||||
/germandbls/agrave/aacute/acircumflex/atilde/adieresis/aring/ae/ccedilla
|
||||
/egrave/eacute/ecircumflex/edieresis/igrave/iacute/icircumflex/idieresis
|
||||
/eth/ntilde/ograve/oacute/ocircumflex/otilde/odieresis/divide/oslash
|
||||
/ugrave/uacute/ucircumflex/udieresis/yacute/thorn/ydieresis]def
|
||||
/Times-Roman@0 ENC0/Times-Roman RE/Times-Bold@0 ENC0/Times-Bold RE
|
||||
%%EndSetup
|
||||
%%Page: 1 1
|
||||
%%BeginPageSetup
|
||||
BP
|
||||
%%EndPageSetup
|
||||
95.993 87.74 MT 389.397 0 RL 0 23 RL -389.397 0 RL CL 0.545 0 0 Fr 1 1 0
|
||||
Cr/F0 17/Times-Bold@0 SF(Horizontal Rules and Randomly Color)99.892
|
||||
102.3 Q(ed T)-.306 E(able Cells)-1.564 E 90.993 97.3 EBEGIN
|
||||
0 setlinejoin 2 setlinecap
|
||||
EEND 5 LW 487.89 85.24 93.493 85.24 DL 487.89 113.24 487.89 85.24 DL
|
||||
93.493 113.24 487.89 113.24 DL 93.493 85.24 93.493 113.24 DL 0 Cg/F0 10
|
||||
/Times-Roman@0 SF -1.25 -.7(Te x)56.692 142.8 T 2.817(tb).7 G .317
|
||||
(efore HR.)-2.817 F -1.25 -.7(Te x)5.317 H 2.817(tb).7 G .317(efore HR.)
|
||||
-2.817 F -1.25 -.7(Te x)5.317 H 2.817(tb).7 G .317(efore HR.)-2.817 F
|
||||
-1.25 -.7(Te x)5.317 H 2.817(tb).7 G .317(efore HR.)-2.817 F -1.25 -.7
|
||||
(Te x)5.317 H 2.817(tb).7 G .317(efore HR.)-2.817 F -1.25 -.7(Te x)5.317
|
||||
H 2.817(tb).7 G .316(efore HR.)-2.817 F -1.25 -.7(Te x)5.316 H 2.816(tb)
|
||||
.7 G(efore)-2.816 E 3.166(HR. T)56.692 154.8 R -.15(ex)-.7 G 3.166(tb)
|
||||
.15 G .666(efore HR.)-3.166 F -1.25 -.7(Te x)5.667 H 3.167(tb).7 G .667
|
||||
(efore HR.)-3.167 F -1.25 -.7(Te x)5.667 H 3.167(tb).7 G .667(efore HR.)
|
||||
-3.167 F -1.25 -.7(Te x)5.667 H 3.167(tb).7 G .667(efore HR.)-3.167 F
|
||||
-1.25 -.7(Te x)5.667 H 3.167(tb).7 G .667(efore HR.)-3.167 F -1.25 -.7
|
||||
(Te x)5.667 H 3.167(tb).7 G .667(efore HR.)-3.167 F -1.25 -.7(Te x)5.667
|
||||
H(t).7 E 194.979 167.06 MT 191.425 0 RL 0 3 RL -191.425 0 RL CL 1 0 0 Fr
|
||||
0.545 0 0 Cr 191.479 172.85 EBEGIN
|
||||
0 setlinejoin 2 setlinecap
|
||||
EEND 2.5 LW 0 1 0 Cr 388.654 164.81 192.729 164.81 DL 388.654 172.31
|
||||
388.654 164.81 DL 192.729 172.31 388.654 172.31 DL 192.729 164.81
|
||||
192.729 172.31 DL 0 Cg/F0 10/Times-Roman@0 SF .713(before HR.)56.692
|
||||
187.6 R -1.25 -.7(Te x)5.713 H 3.213(tb).7 G .713(efore HR.)-3.213 F
|
||||
-1.25 -.7(Te x)5.713 H 3.213(ta).7 G .713(fter HR and before T)-3.213 F
|
||||
3.212(able. T)-.8 F -.15(ex)-.7 G 3.212(ta).15 G .712
|
||||
(fter HR and before T)-3.212 F 3.212(able. T)-.8 F -.15(ex)-.7 G 3.212
|
||||
(ta).15 G .712(fter HR and)-3.212 F 1.082(before T)56.692 199.6 R 3.582
|
||||
(able. T)-.8 F -.15(ex)-.7 G 3.582(ta).15 G 1.082(fter HR and before T)
|
||||
-3.582 F 3.583(able. T)-.8 F -.15(ex)-.7 G 3.583(ta).15 G 1.083
|
||||
(fter HR and before T)-3.583 F 3.583(able. T)-.8 F -.15(ex)-.7 G 3.583
|
||||
(ta).15 G 1.083(fter HR and before T)-3.583 F(able.)-.8 E -1.25 -.7
|
||||
(Te x)56.692 211.6 T 2.57(ta).7 G .069(fter HR and before T)-2.57 F
|
||||
2.569(able. T)-.8 F -.15(ex)-.7 G 2.569(ta).15 G .069
|
||||
(fter HR and before T)-2.569 F 2.569(able. T)-.8 F -.15(ex)-.7 G 2.569
|
||||
(ta).15 G .069(fter HR and before T)-2.569 F 2.569(able. T)-.8 F -.15
|
||||
(ex)-.7 G 2.569(ta).15 G .069(fter HR and)-2.569 F 100.612 220.36 MT
|
||||
47.52 0 RL 0 47.52 RL -47.52 0 RL CL 0.235 0.635 0.396 Fr 148.132 220.36
|
||||
MT 47.52 0 RL 0 47.52 RL -47.52 0 RL CL 0.969 0.776 0.788 Fr 195.652
|
||||
220.36 MT 47.52 0 RL 0 47.52 RL -47.52 0 RL CL 0.514 0.22 0.945 Fr
|
||||
243.172 220.36 MT 47.52 0 RL 0 47.52 RL -47.52 0 RL CL 0.396 0.835 0.949
|
||||
Fr 290.692 220.36 MT 47.52 0 RL 0 47.52 RL -47.52 0 RL CL 0.843 0.639
|
||||
0.62 Fr 338.212 220.36 MT 47.52 0 RL 0 47.52 RL -47.52 0 RL CL 0.424
|
||||
0.827 0.671 Fr 385.732 220.36 MT 47.52 0 RL 0 47.52 RL -47.52 0 RL CL
|
||||
0.475 0.624 0.137 Fr 433.252 220.36 MT 47.52 0 RL 0 47.52 RL -47.52 0 RL
|
||||
CL 1 0.502 0.482 Fr 100.612 267.88 MT 47.52 0 RL 0 47.52 RL -47.52 0 RL
|
||||
CL 0.2 0 0.161 Fr 148.132 267.88 MT 47.52 0 RL 0 47.52 RL -47.52 0 RL CL
|
||||
0.396 0.698 0.0745 Fr 195.652 267.88 MT 47.52 0 RL 0 47.52 RL -47.52 0
|
||||
RL CL 0.173 0.341 0.373 Fr 243.172 267.88 MT 47.52 0 RL 0 47.52 RL
|
||||
-47.52 0 RL CL 0.369 0.992 0.686 Fr 290.692 267.88 MT 47.52 0 RL 0 47.52
|
||||
RL -47.52 0 RL CL 0.0941 0.965 0.216 Fr 338.212 267.88 MT 47.52 0 RL 0
|
||||
47.52 RL -47.52 0 RL CL 0.263 0.0431 0.49 Fr 385.732 267.88 MT 47.52 0
|
||||
RL 0 47.52 RL -47.52 0 RL CL 0.129 0.576 0.369 Fr 433.252 267.88 MT
|
||||
47.52 0 RL 0 47.52 RL -47.52 0 RL CL 0.0863 0.561 0.122 Fr 100.612 315.4
|
||||
MT 47.52 0 RL 0 47.52 RL -47.52 0 RL CL 0.976 0.965 0.867 Fr 148.132
|
||||
315.4 MT 47.52 0 RL 0 47.52 RL -47.52 0 RL CL 0.98 0.0745 0.875 Fr
|
||||
195.652 315.4 MT 47.52 0 RL 0 47.52 RL -47.52 0 RL CL 0.478 0.698 0.0706
|
||||
Fr 243.172 315.4 MT 47.52 0 RL 0 47.52 RL -47.52 0 RL CL 0.31 0.965
|
||||
0.169 Fr 290.692 315.4 MT 47.52 0 RL 0 47.52 RL -47.52 0 RL CL 0.843
|
||||
0.749 0.482 Fr 338.212 315.4 MT 47.52 0 RL 0 47.52 RL -47.52 0 RL CL
|
||||
0.0745 0.561 0.467 Fr 385.732 315.4 MT 47.52 0 RL 0 47.52 RL -47.52 0 RL
|
||||
CL 0.278 0.78 0.859 Fr 433.252 315.4 MT 47.52 0 RL 0 47.52 RL -47.52 0
|
||||
RL CL 0.188 0.878 0.953 Fr 100.612 362.92 MT 47.52 0 RL 0 47.52 RL
|
||||
-47.52 0 RL CL 0.969 0.294 0.576 Fr 148.132 362.92 MT 47.52 0 RL 0 47.52
|
||||
RL -47.52 0 RL CL 0.357 0.682 0.384 Fr 195.652 362.92 MT 47.52 0 RL 0
|
||||
47.52 RL -47.52 0 RL CL 0.565 0.455 0.404 Fr 243.172 362.92 MT 47.52 0
|
||||
RL 0 47.52 RL -47.52 0 RL CL 0.749 0.255 0.604 Fr 290.692 362.92 MT
|
||||
47.52 0 RL 0 47.52 RL -47.52 0 RL CL 0.502 0.384 0.667 Fr 338.212 362.92
|
||||
MT 47.52 0 RL 0 47.52 RL -47.52 0 RL CL 0.549 0.549 0.125 Fr 385.732
|
||||
362.92 MT 47.52 0 RL 0 47.52 RL -47.52 0 RL CL 0.816 0.973 0.373 Fr
|
||||
433.252 362.92 MT 47.52 0 RL 0 47.52 RL -47.52 0 RL CL 0.769 0.937 0.718
|
||||
Fr 100.612 410.44 MT 47.52 0 RL 0 47.52 RL -47.52 0 RL CL 0.851 0.663
|
||||
0.0902 Fr 148.132 410.44 MT 47.52 0 RL 0 47.52 RL -47.52 0 RL CL 0.863
|
||||
0.29 0.357 Fr 195.652 410.44 MT 47.52 0 RL 0 47.52 RL -47.52 0 RL CL
|
||||
0.0314 0.651 0.608 Fr 243.172 410.44 MT 47.52 0 RL 0 47.52 RL -47.52 0
|
||||
RL CL 0.392 0.745 0.784 Fr 290.692 410.44 MT 47.52 0 RL 0 47.52 RL
|
||||
-47.52 0 RL CL 0.376 0.612 0.259 Fr 338.212 410.44 MT 47.52 0 RL 0 47.52
|
||||
RL -47.52 0 RL CL 0.498 0.439 0.733 Fr 385.732 410.44 MT 47.52 0 RL 0
|
||||
47.52 RL -47.52 0 RL CL 0.706 0.941 0.106 Fr 433.252 410.44 MT 47.52 0
|
||||
RL 0 47.52 RL -47.52 0 RL CL 0.0157 0.933 0.737 Fr 100.612 457.96 MT
|
||||
47.52 0 RL 0 47.52 RL -47.52 0 RL CL 0.733 0.0392 0.204 Fr 148.132
|
||||
457.96 MT 47.52 0 RL 0 47.52 RL -47.52 0 RL CL 0.349 0.584 0.71 Fr
|
||||
195.652 457.96 MT 47.52 0 RL 0 47.52 RL -47.52 0 RL CL 0.761 0.937
|
||||
0.0706 Fr 243.172 457.96 MT 47.52 0 RL 0 47.52 RL -47.52 0 RL CL 0.161
|
||||
0.31 0.8 Fr 290.692 457.96 MT 47.52 0 RL 0 47.52 RL -47.52 0 RL CL 0.976
|
||||
0.733 0.0902 Fr 338.212 457.96 MT 47.52 0 RL 0 47.52 RL -47.52 0 RL CL
|
||||
0.8 0.937 0.157 Fr 385.732 457.96 MT 47.52 0 RL 0 47.52 RL -47.52 0 RL
|
||||
CL 0.984 0.647 0.0667 Fr 433.252 457.96 MT 47.52 0 RL 0 47.52 RL -47.52
|
||||
0 RL CL 0.643 0.184 0.145 Fr 100.612 505.48 MT 47.52 0 RL 0 47.52 RL
|
||||
-47.52 0 RL CL 0.608 0.282 0.545 Fr 148.132 505.48 MT 47.52 0 RL 0 47.52
|
||||
RL -47.52 0 RL CL 0.565 0.153 0.729 Fr 195.652 505.48 MT 47.52 0 RL 0
|
||||
47.52 RL -47.52 0 RL CL 0.0902 0.341 0.318 Fr 243.172 505.48 MT 47.52 0
|
||||
RL 0 47.52 RL -47.52 0 RL CL 0.769 0.486 0.0118 Fr 290.692 505.48 MT
|
||||
47.52 0 RL 0 47.52 RL -47.52 0 RL CL 0.933 0.373 0.871 Fr 338.212 505.48
|
||||
MT 47.52 0 RL 0 47.52 RL -47.52 0 RL CL 0.78 0.259 0.529 Fr 385.732
|
||||
505.48 MT 47.52 0 RL 0 47.52 RL -47.52 0 RL CL 0.373 0.671 0.643 Fr
|
||||
433.252 505.48 MT 47.52 0 RL 0 47.52 RL -47.52 0 RL CL 0.824 0.451 0.463
|
||||
Fr 100.612 553 MT 47.52 0 RL 0 47.52 RL -47.52 0 RL CL 0.514 0.051 0.682
|
||||
Fr 148.132 553 MT 47.52 0 RL 0 47.52 RL -47.52 0 RL CL 0.459 0.694 0.867
|
||||
Fr 195.652 553 MT 47.52 0 RL 0 47.52 RL -47.52 0 RL CL 0.906 0.102 0.388
|
||||
Fr 243.172 553 MT 47.52 0 RL 0 47.52 RL -47.52 0 RL CL 0.0706 0.773
|
||||
0.306 Fr 290.692 553 MT 47.52 0 RL 0 47.52 RL -47.52 0 RL CL 0.38 0.137
|
||||
0.525 Fr 338.212 553 MT 47.52 0 RL 0 47.52 RL -47.52 0 RL CL 0.933 0.369
|
||||
0.929 Fr 385.732 553 MT 47.52 0 RL 0 47.52 RL -47.52 0 RL CL 0.835 0.22
|
||||
0.565 Fr 433.252 553 MT 47.52 0 RL 0 47.52 RL -47.52 0 RL CL 0.153 0.761
|
||||
0.773 Fr 0 Cg .476(before T)56.692 614.56 R 2.976(able. T)-.8 F -.15(ex)
|
||||
-.7 G 2.976(ta).15 G .476(fter table.)-2.976 F -1.25 -.7(Te x)5.476 H
|
||||
2.976(ta).7 G .476(fter table.)-2.976 F -1.25 -.7(Te x)5.476 H 2.976(ta)
|
||||
.7 G .476(fter table.)-2.976 F -1.25 -.7(Te x)5.476 H 2.976(ta).7 G .476
|
||||
(fter table.)-2.976 F -1.25 -.7(Te x)5.477 H 2.977(ta).7 G .477
|
||||
(fter table.)-2.977 F -1.25 -.7(Te x)5.477 H 2.977(ta).7 G .477
|
||||
(fter table.)-2.977 F 81.594 626.82 MT 418.196 0 RL 0 3 RL -418.196 0 RL
|
||||
CL 0.969 0.776 0.788 Fr 0.545 0 0 Cr 78.094 632.61 EBEGIN
|
||||
0 setlinejoin 2 setlinecap
|
||||
EEND 2.5 LW 0.235 0.635 0.396 Cr 502.04 624.57 79.344 624.57 DL 502.04
|
||||
632.07 502.04 624.57 DL 79.344 632.07 502.04 632.07 DL 79.344 624.57
|
||||
79.344 632.07 DL 0 Cg/F0 10/Times-Roman@0 SF -1.25 -.7(Te x)56.692
|
||||
647.36 T 3.274(ta).7 G .774(fter table.)-3.274 F -1.25 -.7(Te x)5.774 H
|
||||
3.274(ta).7 G .774(fter table.)-3.274 F -1.25 -.7(Te x)5.774 H 3.274(ta)
|
||||
.7 G .774(fter table.)-3.274 F -1.25 -.7(Te x)5.774 H 3.274(ta).7 G .773
|
||||
(fter table.)-3.274 F -1.25 -.7(Te x)5.773 H 3.273(ta).7 G .773
|
||||
(fter HR.)-3.273 F -1.25 -.7(Te x)5.773 H 3.273(ta).7 G .773(fter HR.)
|
||||
-3.273 F -1.25 -.7(Te x)5.773 H 3.273(ta).7 G .773(fter HR.)-3.273 F
|
||||
-1.25 -.7(Te x)56.692 659.36 T 2.572(ta).7 G .072(fter HR.)-2.572 F
|
||||
-1.25 -.7(Te x)5.072 H 2.572(ta).7 G .072(fter HR.)-2.572 F -1.25 -.7
|
||||
(Te x)5.072 H 2.572(ta).7 G .072(fter HR.)-2.572 F -1.25 -.7(Te x)5.072
|
||||
H 2.572(ta).7 G .072(fter HR.)-2.572 F -1.25 -.7(Te x)5.072 H 2.572(ta)
|
||||
.7 G .072(fter HR.)-2.572 F -1.25 -.7(Te x)5.072 H 2.572(ta).7 G .073
|
||||
(fter HR.)-2.572 F -1.25 -.7(Te x)5.073 H 2.573(ta).7 G .073(fter HR.)
|
||||
-2.573 F -1.25 -.7(Te x)5.073 H 2.573(ta).7 G(f-)-2.573 E(ter HR.)56.692
|
||||
671.36 Q -1.25 -.7(Te x)5 H 2.5(ta).7 G(fter HR.)-2.5 E -1.25 -.7(Te x)5
|
||||
H 2.5(ta).7 G(fter HR.)-2.5 E -1.25 -.7(Te x)5 H 2.5(ta).7 G(fter HR.)
|
||||
-2.5 E -1.25 -.7(Te x)5 H 2.5(ta).7 G(fter HR.)-2.5 E 0 Cg EP
|
||||
%%Trailer
|
||||
end
|
||||
%%EOF
|
||||
|
|
@ -0,0 +1,59 @@
|
|||
.ig
|
||||
Copyright 2006 Free Software Foundation, Inc.
|
||||
|
||||
Written by Joachim Walsdorff <Joachim.Walsdorff@urz.uni-heidelberg.de>
|
||||
|
||||
This file is part of hdtbl.
|
||||
|
||||
hdtbl is distributed with groff, the GNU roff typesetting system.
|
||||
|
||||
groff is free software; you can redistribute it and/or modify it under
|
||||
the terms of the GNU General Public License as published by the Free
|
||||
Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
groff is distributed in the hope that it will be useful, but WITHOUT
|
||||
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
..
|
||||
.
|
||||
.if !d sopath \
|
||||
. ds sopath
|
||||
.
|
||||
.ds lib examples/common.roff
|
||||
.soquiet \*[sopath]\*[lib]
|
||||
.if !d common \{\
|
||||
. tmc \n[.F]: cannot find "\*[lib]"; specify its location
|
||||
. tm1 " with groff '-I' or '-d sopath=' option
|
||||
.\}
|
||||
.
|
||||
.
|
||||
.\" Seed the random number generator for reproducible builds.
|
||||
.random-seed 131545532 19201711
|
||||
.
|
||||
.H Horizontal Rules and Randomly Colored Table Cells
|
||||
.PN 15 Text before HR.
|
||||
.TBL border=.5n bc=green bgc=red width=7c tal=c csp=.2n cpd=.3n .TR .TD .ETB
|
||||
.PN 10 Text after HR and before Table.
|
||||
.
|
||||
.nr ? 0 1
|
||||
.de ctab
|
||||
.TR height=\nl/10
|
||||
.PN 8 .random# ".defcolor c\\\\n+? rgb \E*[#random]" ".TD bgc=c\\\\n?"
|
||||
..
|
||||
.TBL tal=c border= csp=0 cpd=0 cols=8 width=\nl/10
|
||||
.PN 8 .ctab
|
||||
.ETB
|
||||
.PN 10 Text after table.
|
||||
.TBL border=.5n bc=c1 bgc=c2 width=15c tal=c csp=.2n cpd=.3n .TR .TD .ETB
|
||||
.PN 15 Text after HR.
|
||||
.
|
||||
.\" Local Variables:
|
||||
.\" mode: nroff
|
||||
.\" fill-column: 72
|
||||
.\" End:
|
||||
.\" vim: set filetype=groff textwidth=72:
|
||||
|
|
@ -0,0 +1,473 @@
|
|||
%!PS-Adobe-3.0
|
||||
%%Creator: groff version 1.24.1
|
||||
%%CreationDate: Mon Mar 16 21:27:47 2026
|
||||
%%DocumentNeededResources: font Times-Roman
|
||||
%%DocumentSuppliedResources: procset grops 1.24 1
|
||||
%%Pages: 1
|
||||
%%PageOrder: Ascend
|
||||
%%DocumentMedia: Default 612 792 0 () ()
|
||||
%%Orientation: Portrait
|
||||
%%EndComments
|
||||
%%BeginDefaults
|
||||
%%PageMedia: Default
|
||||
%%EndDefaults
|
||||
%%BeginProlog
|
||||
%%BeginResource: procset grops 1.24 1
|
||||
%!PS-Adobe-3.0 Resource-ProcSet
|
||||
/setpacking where{
|
||||
pop
|
||||
currentpacking
|
||||
true setpacking
|
||||
}if
|
||||
/grops 120 dict dup begin
|
||||
% The ASCII code of the space character.
|
||||
/SC 32 def
|
||||
/A/show load def
|
||||
/B{0 SC 3 -1 roll widthshow}bind def
|
||||
/C{0 exch ashow}bind def
|
||||
/D{0 exch 0 SC 5 2 roll awidthshow}bind def
|
||||
/E{0 rmoveto show}bind def
|
||||
/F{0 rmoveto 0 SC 3 -1 roll widthshow}bind def
|
||||
/G{0 rmoveto 0 exch ashow}bind def
|
||||
/H{0 rmoveto 0 exch 0 SC 5 2 roll awidthshow}bind def
|
||||
/I{0 exch rmoveto show}bind def
|
||||
/J{0 exch rmoveto 0 SC 3 -1 roll widthshow}bind def
|
||||
/K{0 exch rmoveto 0 exch ashow}bind def
|
||||
/L{0 exch rmoveto 0 exch 0 SC 5 2 roll awidthshow}bind def
|
||||
/M{rmoveto show}bind def
|
||||
/N{rmoveto 0 SC 3 -1 roll widthshow}bind def
|
||||
/O{rmoveto 0 exch ashow}bind def
|
||||
/P{rmoveto 0 exch 0 SC 5 2 roll awidthshow}bind def
|
||||
/Q{moveto show}bind def
|
||||
/R{moveto 0 SC 3 -1 roll widthshow}bind def
|
||||
/S{moveto 0 exch ashow}bind def
|
||||
/T{moveto 0 exch 0 SC 5 2 roll awidthshow}bind def
|
||||
% name size font SF -
|
||||
/SF{
|
||||
findfont exch
|
||||
[exch dup 0 exch 0 exch neg 0 0]makefont
|
||||
dup setfont
|
||||
[exch/setfont cvx]cvx bind def
|
||||
}bind def
|
||||
% name a c d font MF -
|
||||
/MF{
|
||||
findfont
|
||||
[5 2 roll
|
||||
0 3 1 roll % b
|
||||
neg 0 0]makefont
|
||||
dup setfont
|
||||
[exch/setfont cvx]cvx bind def
|
||||
}bind def
|
||||
/level0 0 def
|
||||
/RES 0 def
|
||||
/PL 0 def
|
||||
/LS 0 def
|
||||
% Enable manual feed.
|
||||
% MANUAL -
|
||||
/MANUAL{
|
||||
statusdict begin/manualfeed true store end
|
||||
}bind def
|
||||
% Guess the page length.
|
||||
% This assumes that the imageable area is vertically centered on the page.
|
||||
% PLG - length
|
||||
/PLG{
|
||||
gsave newpath clippath pathbbox grestore
|
||||
exch pop add exch pop
|
||||
}bind def
|
||||
% BP -
|
||||
/BP{
|
||||
/level0 save def
|
||||
1 setlinecap
|
||||
1 setlinejoin
|
||||
DEFS/BPhook known{DEFS begin BPhook end}if
|
||||
72 RES div dup scale
|
||||
LS{
|
||||
90 rotate
|
||||
}{
|
||||
0 PL translate
|
||||
}ifelse
|
||||
1 -1 scale
|
||||
}bind def
|
||||
/EP{
|
||||
level0 restore
|
||||
showpage
|
||||
}def
|
||||
% centerx centery radius startangle endangle DA -
|
||||
/DA{
|
||||
newpath arcn stroke
|
||||
}bind def
|
||||
% x y SN - x' y'
|
||||
% round a position to nearest (pixel + (.25,.25))
|
||||
/SN{
|
||||
transform
|
||||
.25 sub exch .25 sub exch
|
||||
round .25 add exch round .25 add exch
|
||||
itransform
|
||||
}bind def
|
||||
% endx endy startx starty DL -
|
||||
% we round the endpoints of the line, so that parallel horizontal
|
||||
% and vertical lines will appear even
|
||||
/DL{
|
||||
SN
|
||||
moveto
|
||||
SN
|
||||
lineto stroke
|
||||
}bind def
|
||||
% centerx centery radius DC -
|
||||
/DC{
|
||||
newpath 0 360 arc closepath
|
||||
}bind def
|
||||
/TM matrix def
|
||||
% width height centerx centery DE -
|
||||
/DE{
|
||||
TM currentmatrix pop
|
||||
translate scale newpath 0 0 .5 0 360 arc closepath
|
||||
TM setmatrix
|
||||
}bind def
|
||||
% these are for splines
|
||||
/RC/rcurveto load def
|
||||
/RL/rlineto load def
|
||||
/ST/stroke load def
|
||||
/MT/moveto load def
|
||||
/CL/closepath load def
|
||||
% fill the last path
|
||||
% r g b Fr -
|
||||
/Fr{
|
||||
setrgbcolor fill
|
||||
}bind def
|
||||
% c m y k Fk -
|
||||
/setcmykcolor where{
|
||||
pop
|
||||
/Fk{
|
||||
setcmykcolor fill
|
||||
}bind def
|
||||
}if
|
||||
% g Fg -
|
||||
/Fg{
|
||||
setgray fill
|
||||
}bind def
|
||||
% fill with the "current color"
|
||||
/FL/fill load def
|
||||
/LW/setlinewidth load def
|
||||
/Cr/setrgbcolor load def
|
||||
/setcmykcolor where{
|
||||
pop
|
||||
/Ck/setcmykcolor load def
|
||||
}if
|
||||
/Cg/setgray load def
|
||||
% new_font_name encoding_vector old_font_name RE -
|
||||
/RE{
|
||||
findfont
|
||||
dup maxlength 1 index/FontName known not{1 add}if dict begin
|
||||
{
|
||||
1 index/FID ne
|
||||
2 index/UniqueID ne
|
||||
and
|
||||
{def}{pop pop}ifelse
|
||||
}forall
|
||||
/Encoding exch def
|
||||
dup/FontName exch def
|
||||
currentdict end definefont pop
|
||||
}bind def
|
||||
/DEFS 0 def
|
||||
% hpos vpos EBEGIN -
|
||||
/EBEGIN{
|
||||
moveto
|
||||
DEFS begin
|
||||
}bind def
|
||||
/EEND/end load def
|
||||
/CNT 0 def
|
||||
/level1 0 def
|
||||
% llx lly newwid wid newht ht newllx newlly PBEGIN -
|
||||
/PBEGIN{
|
||||
/level1 save def
|
||||
translate
|
||||
div 3 1 roll div exch scale
|
||||
neg exch neg exch translate
|
||||
% set the graphics state to default values
|
||||
0 setgray
|
||||
0 setlinecap
|
||||
1 setlinewidth
|
||||
0 setlinejoin
|
||||
10 setmiterlimit
|
||||
[]0 setdash
|
||||
/setstrokeadjust where{
|
||||
pop
|
||||
false setstrokeadjust
|
||||
}if
|
||||
/setoverprint where{
|
||||
pop
|
||||
false setoverprint
|
||||
}if
|
||||
newpath
|
||||
/CNT countdictstack def
|
||||
userdict begin
|
||||
/showpage{}def
|
||||
%
|
||||
% Any included setpagedevice should be ignored.
|
||||
% See: http://www.w-beer.de/doc/ps/.
|
||||
%
|
||||
/setpagedevice{}def
|
||||
mark
|
||||
}bind def
|
||||
/PEND{
|
||||
cleartomark
|
||||
countdictstack CNT sub{end}repeat
|
||||
level1 restore
|
||||
}bind def
|
||||
end def
|
||||
/setpacking where{
|
||||
pop
|
||||
setpacking
|
||||
}if
|
||||
%%EndResource
|
||||
%%EndProlog
|
||||
%%BeginSetup
|
||||
%%BeginFeature: *PageSize Default
|
||||
<< /PageSize [ 612 792 ] /ImagingBBox null >> setpagedevice
|
||||
%%EndFeature
|
||||
%%IncludeResource: font Times-Roman
|
||||
grops begin/DEFS 1 dict def DEFS begin/u{.001 mul}bind def end/RES 72
|
||||
def/PL 792 def/LS false def/ENC0[/asciicircum/asciitilde/Scaron/Zcaron
|
||||
/scaron/zcaron/Ydieresis/trademark/quotesingle/Euro/.notdef/.notdef
|
||||
/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef
|
||||
/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef
|
||||
/.notdef/.notdef/space/exclam/quotedbl/numbersign/dollar/percent
|
||||
/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen
|
||||
/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon
|
||||
/semicolon/less/equal/greater/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O
|
||||
/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/backslash/bracketright/circumflex
|
||||
/underscore/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y
|
||||
/z/braceleft/bar/braceright/tilde/.notdef/quotesinglbase/guillemotleft
|
||||
/guillemotright/bullet/florin/fraction/perthousand/dagger/daggerdbl
|
||||
/endash/emdash/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/hungarumlaut
|
||||
/dotaccent/breve/caron/ring/ogonek/quotedblleft/quotedblright/oe/lslash
|
||||
/quotedblbase/OE/Lslash/.notdef/exclamdown/cent/sterling/currency/yen
|
||||
/brokenbar/section/dieresis/copyright/ordfeminine/guilsinglleft
|
||||
/logicalnot/minus/registered/macron/degree/plusminus/twosuperior
|
||||
/threesuperior/acute/mu/paragraph/periodcentered/cedilla/onesuperior
|
||||
/ordmasculine/guilsinglright/onequarter/onehalf/threequarters
|
||||
/questiondown/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE
|
||||
/Ccedilla/Egrave/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex
|
||||
/Idieresis/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis
|
||||
/multiply/Oslash/Ugrave/Uacute/Ucircumflex/Udieresis/Yacute/Thorn
|
||||
/germandbls/agrave/aacute/acircumflex/atilde/adieresis/aring/ae/ccedilla
|
||||
/egrave/eacute/ecircumflex/edieresis/igrave/iacute/icircumflex/idieresis
|
||||
/eth/ntilde/ograve/oacute/ocircumflex/otilde/odieresis/divide/oslash
|
||||
/ugrave/uacute/ucircumflex/udieresis/yacute/thorn/ydieresis]def
|
||||
/Times-Roman@0 ENC0/Times-Roman RE
|
||||
%%EndSetup
|
||||
%%Page: 1 1
|
||||
%%BeginPageSetup
|
||||
BP
|
||||
%%EndPageSetup
|
||||
/F0 10/Times-Roman@0 SF .023(Before table.)56.692 84 R .023
|
||||
(Before table.)5.023 F .023(Before table.)5.023 F .023(Before table.)
|
||||
5.023 F .022(Before table.)5.023 F .022(Before table.)5.022 F .022
|
||||
(Before table.)5.022 F .022(Before table.)5.022 F(Be-)5.022 E .716
|
||||
(fore table.)56.692 96 R .717(Before table.)5.716 F .717(Before table.)
|
||||
5.717 F .717(Before table.)5.717 F .717(Before table.)5.717 F .717
|
||||
(Before table.)5.717 F .717(Before table.)5.717 F .717(Before table.)
|
||||
5.717 F(Be-)5.717 E .717(fore table.)56.692 108 R .717(Before table.)
|
||||
5.717 F .717(Before table.)5.717 F .717(Before table.)5.717 F .717
|
||||
(Before table.)5.717 F .717(Before table.)5.717 F .717(Before table.)
|
||||
5.717 F .716(Before table.)5.717 F(Be-)5.716 E 56.692 116.76 MT 154.44 0
|
||||
RL 0 105 RL -154.44 0 RL CL 0.05 0.05 0.05 Fr 59.192 119.26 MT 149.44 0
|
||||
RL 0 100 RL -149.44 0 RL CL 0.1 0.1 0.1 Fr 61.692 121.76 MT 144.44 0 RL
|
||||
0 95 RL -144.44 0 RL CL 0.15 0.15 0.15 Fr 64.192 124.26 MT 139.44 0 RL 0
|
||||
90 RL -139.44 0 RL CL 0.2 0.2 0.2 Fr 66.692 126.76 MT 134.44 0 RL 0 85
|
||||
RL -134.44 0 RL CL 0.25 0.25 0.25 Fr 69.192 129.26 MT 129.44 0 RL 0 80
|
||||
RL -129.44 0 RL CL 0.3 0.3 0.3 Fr 71.692 131.76 MT 124.44 0 RL 0 75 RL
|
||||
-124.44 0 RL CL 0.35 0.35 0.35 Fr 74.192 134.26 MT 119.44 0 RL 0 70 RL
|
||||
-119.44 0 RL CL 0.4 0.4 0.4 Fr 76.692 136.76 MT 114.44 0 RL 0 65 RL
|
||||
-114.44 0 RL CL 0.45 0.45 0.45 Fr 79.192 139.26 MT 109.44 0 RL 0 60 RL
|
||||
-109.44 0 RL CL 0.5 0.5 0.5 Fr 81.692 141.76 MT 104.44 0 RL 0 55 RL
|
||||
-104.44 0 RL CL 0.55 0.55 0.55 Fr 84.192 144.26 MT 99.44 0 RL 0 50 RL
|
||||
-99.44 0 RL CL 0.6 0.6 0.6 Fr 86.692 146.76 MT 94.44 0 RL 0 45 RL -94.44
|
||||
0 RL CL 0.65 0.65 0.65 Fr 89.192 149.26 MT 89.44 0 RL 0 40 RL -89.44 0
|
||||
RL CL 0.7 0.7 0.7 Fr 91.692 151.76 MT 84.44 0 RL 0 35 RL -84.44 0 RL CL
|
||||
0.75 0.75 0.75 Fr 94.192 154.26 MT 79.44 0 RL 0 30 RL -79.44 0 RL CL 0.8
|
||||
0.8 0.8 Fr 96.692 156.76 MT 74.44 0 RL 0 25 RL -74.44 0 RL CL 0.85 0.85
|
||||
0.85 Fr 99.192 159.26 MT 69.44 0 RL 0 20 RL -69.44 0 RL CL 0.9 0.9 0.9
|
||||
Fr 101.692 161.76 MT 64.44 0 RL 0 15 RL -64.44 0 RL CL 0.95 0.95 0.95 Fr
|
||||
104.192 164.26 MT 59.44 0 RL 0 10 RL -59.44 0 RL CL 1 1 1 Fr 106.692
|
||||
166.76 MT 54.44 0 RL 0 5 RL -54.44 0 RL CL 1 1 1 Fr 211.132 116.76 MT
|
||||
154.44 0 RL 0 105 RL -154.44 0 RL CL 0.95 0.95 0.95 Fr 213.632 119.26 MT
|
||||
149.44 0 RL 0 100 RL -149.44 0 RL CL 0.9 0.9 0.9 Fr 216.132 121.76 MT
|
||||
144.44 0 RL 0 95 RL -144.44 0 RL CL 0.85 0.85 0.85 Fr 218.632 124.26 MT
|
||||
139.44 0 RL 0 90 RL -139.44 0 RL CL 0.8 0.8 0.8 Fr 221.132 126.76 MT
|
||||
134.44 0 RL 0 85 RL -134.44 0 RL CL 0.75 0.75 0.75 Fr 223.632 129.26 MT
|
||||
129.44 0 RL 0 80 RL -129.44 0 RL CL 0.7 0.7 0.7 Fr 226.132 131.76 MT
|
||||
124.44 0 RL 0 75 RL -124.44 0 RL CL 0.65 0.65 0.65 Fr 228.632 134.26 MT
|
||||
119.44 0 RL 0 70 RL -119.44 0 RL CL 0.6 0.6 0.6 Fr 231.132 136.76 MT
|
||||
114.44 0 RL 0 65 RL -114.44 0 RL CL 0.55 0.55 0.55 Fr 233.632 139.26 MT
|
||||
109.44 0 RL 0 60 RL -109.44 0 RL CL 0.5 0.5 0.5 Fr 236.132 141.76 MT
|
||||
104.44 0 RL 0 55 RL -104.44 0 RL CL 0.45 0.45 0.45 Fr 238.632 144.26 MT
|
||||
99.44 0 RL 0 50 RL -99.44 0 RL CL 0.4 0.4 0.4 Fr 241.132 146.76 MT 94.44
|
||||
0 RL 0 45 RL -94.44 0 RL CL 0.35 0.35 0.35 Fr 243.632 149.26 MT 89.44 0
|
||||
RL 0 40 RL -89.44 0 RL CL 0.3 0.3 0.3 Fr 246.132 151.76 MT 84.44 0 RL 0
|
||||
35 RL -84.44 0 RL CL 0.25 0.25 0.25 Fr 248.632 154.26 MT 79.44 0 RL 0 30
|
||||
RL -79.44 0 RL CL 0.2 0.2 0.2 Fr 251.132 156.76 MT 74.44 0 RL 0 25 RL
|
||||
-74.44 0 RL CL 0.15 0.15 0.15 Fr 253.632 159.26 MT 69.44 0 RL 0 20 RL
|
||||
-69.44 0 RL CL 0.1 0.1 0.1 Fr 256.132 161.76 MT 64.44 0 RL 0 15 RL
|
||||
-64.44 0 RL CL 0.0502 0.0502 0.0502 Fr 258.632 164.26 MT 59.44 0 RL 0 10
|
||||
RL -59.44 0 RL CL 0.000244 0.000244 0.000244 Fr 261.132 166.76 MT 54.44
|
||||
0 RL 0 5 RL -54.44 0 RL CL 0 0 0 Fr 365.572 116.76 MT 154.44 0 RL 0 105
|
||||
RL -154.44 0 RL CL 1 0.05 0.05 Fr 368.072 119.26 MT 149.44 0 RL 0 100 RL
|
||||
-149.44 0 RL CL 1 0.1 0.1 Fr 370.572 121.76 MT 144.44 0 RL 0 95 RL
|
||||
-144.44 0 RL CL 1 0.15 0.15 Fr 373.072 124.26 MT 139.44 0 RL 0 90 RL
|
||||
-139.44 0 RL CL 1 0.2 0.2 Fr 375.572 126.76 MT 134.44 0 RL 0 85 RL
|
||||
-134.44 0 RL CL 1 0.25 0.25 Fr 378.072 129.26 MT 129.44 0 RL 0 80 RL
|
||||
-129.44 0 RL CL 1 0.3 0.3 Fr 380.572 131.76 MT 124.44 0 RL 0 75 RL
|
||||
-124.44 0 RL CL 1 0.35 0.35 Fr 383.072 134.26 MT 119.44 0 RL 0 70 RL
|
||||
-119.44 0 RL CL 1 0.4 0.4 Fr 385.572 136.76 MT 114.44 0 RL 0 65 RL
|
||||
-114.44 0 RL CL 1 0.45 0.45 Fr 388.072 139.26 MT 109.44 0 RL 0 60 RL
|
||||
-109.44 0 RL CL 1 0.5 0.5 Fr 390.572 141.76 MT 104.44 0 RL 0 55 RL
|
||||
-104.44 0 RL CL 1 0.55 0.55 Fr 393.072 144.26 MT 99.44 0 RL 0 50 RL
|
||||
-99.44 0 RL CL 1 0.6 0.6 Fr 395.572 146.76 MT 94.44 0 RL 0 45 RL -94.44
|
||||
0 RL CL 1 0.65 0.65 Fr 398.072 149.26 MT 89.44 0 RL 0 40 RL -89.44 0 RL
|
||||
CL 1 0.7 0.7 Fr 400.572 151.76 MT 84.44 0 RL 0 35 RL -84.44 0 RL CL 1
|
||||
0.75 0.75 Fr 403.072 154.26 MT 79.44 0 RL 0 30 RL -79.44 0 RL CL 1 0.8
|
||||
0.8 Fr 405.572 156.76 MT 74.44 0 RL 0 25 RL -74.44 0 RL CL 1 0.85 0.85
|
||||
Fr 408.072 159.26 MT 69.44 0 RL 0 20 RL -69.44 0 RL CL 1 0.9 0.9 Fr
|
||||
410.572 161.76 MT 64.44 0 RL 0 15 RL -64.44 0 RL CL 1 0.95 0.95 Fr
|
||||
413.072 164.26 MT 59.44 0 RL 0 10 RL -59.44 0 RL CL 1 1 1 Fr 415.572
|
||||
166.76 MT 54.44 0 RL 0 5 RL -54.44 0 RL CL 1 1 1 Fr 56.692 221.76 MT
|
||||
154.44 0 RL 0 105 RL -154.44 0 RL CL 0 0.95 0.05 Fr 59.192 224.26 MT
|
||||
149.44 0 RL 0 100 RL -149.44 0 RL CL 0 0.9 0.1 Fr 61.692 226.76 MT
|
||||
144.44 0 RL 0 95 RL -144.44 0 RL CL 0 0.85 0.15 Fr 64.192 229.26 MT
|
||||
139.44 0 RL 0 90 RL -139.44 0 RL CL 0 0.8 0.2 Fr 66.692 231.76 MT 134.44
|
||||
0 RL 0 85 RL -134.44 0 RL CL 0 0.75 0.25 Fr 69.192 234.26 MT 129.44 0 RL
|
||||
0 80 RL -129.44 0 RL CL 0 0.7 0.3 Fr 71.692 236.76 MT 124.44 0 RL 0 75
|
||||
RL -124.44 0 RL CL 0 0.65 0.35 Fr 74.192 239.26 MT 119.44 0 RL 0 70 RL
|
||||
-119.44 0 RL CL 0 0.6 0.4 Fr 76.692 241.76 MT 114.44 0 RL 0 65 RL
|
||||
-114.44 0 RL CL 0 0.55 0.45 Fr 79.192 244.26 MT 109.44 0 RL 0 60 RL
|
||||
-109.44 0 RL CL 0 0.5 0.5 Fr 81.692 246.76 MT 104.44 0 RL 0 55 RL
|
||||
-104.44 0 RL CL 0 0.45 0.55 Fr 84.192 249.26 MT 99.44 0 RL 0 50 RL
|
||||
-99.44 0 RL CL 0 0.4 0.6 Fr 86.692 251.76 MT 94.44 0 RL 0 45 RL -94.44 0
|
||||
RL CL 0 0.35 0.65 Fr 89.192 254.26 MT 89.44 0 RL 0 40 RL -89.44 0 RL CL
|
||||
0 0.3 0.7 Fr 91.692 256.76 MT 84.44 0 RL 0 35 RL -84.44 0 RL CL 0 0.25
|
||||
0.75 Fr 94.192 259.26 MT 79.44 0 RL 0 30 RL -79.44 0 RL CL 0 0.2 0.8 Fr
|
||||
96.692 261.76 MT 74.44 0 RL 0 25 RL -74.44 0 RL CL 0 0.15 0.85 Fr 99.192
|
||||
264.26 MT 69.44 0 RL 0 20 RL -69.44 0 RL CL 0 0.1 0.9 Fr 101.692 266.76
|
||||
MT 64.44 0 RL 0 15 RL -64.44 0 RL CL 0 0.0502 0.95 Fr 104.192 269.26 MT
|
||||
59.44 0 RL 0 10 RL -59.44 0 RL CL 0 0.000244 1 Fr 106.692 271.76 MT
|
||||
54.44 0 RL 0 5 RL -54.44 0 RL CL 0 0 1 Fr 211.132 221.76 MT 154.44 0 RL
|
||||
0 105 RL -154.44 0 RL CL 1 0.95 1 Fr 213.632 224.26 MT 149.44 0 RL 0 100
|
||||
RL -149.44 0 RL CL 1 0.9 1 Fr 216.132 226.76 MT 144.44 0 RL 0 95 RL
|
||||
-144.44 0 RL CL 1 0.85 1 Fr 218.632 229.26 MT 139.44 0 RL 0 90 RL
|
||||
-139.44 0 RL CL 1 0.8 1 Fr 221.132 231.76 MT 134.44 0 RL 0 85 RL -134.44
|
||||
0 RL CL 1 0.75 1 Fr 223.632 234.26 MT 129.44 0 RL 0 80 RL -129.44 0 RL
|
||||
CL 1 0.7 1 Fr 226.132 236.76 MT 124.44 0 RL 0 75 RL -124.44 0 RL CL 1
|
||||
0.65 1 Fr 228.632 239.26 MT 119.44 0 RL 0 70 RL -119.44 0 RL CL 1 0.6 1
|
||||
Fr 231.132 241.76 MT 114.44 0 RL 0 65 RL -114.44 0 RL CL 1 0.55 1 Fr
|
||||
233.632 244.26 MT 109.44 0 RL 0 60 RL -109.44 0 RL CL 1 0.5 1 Fr 236.132
|
||||
246.76 MT 104.44 0 RL 0 55 RL -104.44 0 RL CL 1 0.45 1 Fr 238.632 249.26
|
||||
MT 99.44 0 RL 0 50 RL -99.44 0 RL CL 1 0.4 1 Fr 241.132 251.76 MT 94.44
|
||||
0 RL 0 45 RL -94.44 0 RL CL 1 0.35 1 Fr 243.632 254.26 MT 89.44 0 RL 0
|
||||
40 RL -89.44 0 RL CL 1 0.3 1 Fr 246.132 256.76 MT 84.44 0 RL 0 35 RL
|
||||
-84.44 0 RL CL 1 0.25 1 Fr 248.632 259.26 MT 79.44 0 RL 0 30 RL -79.44 0
|
||||
RL CL 1 0.2 1 Fr 251.132 261.76 MT 74.44 0 RL 0 25 RL -74.44 0 RL CL 1
|
||||
0.15 1 Fr 253.632 264.26 MT 69.44 0 RL 0 20 RL -69.44 0 RL CL 1 0.1 1 Fr
|
||||
256.132 266.76 MT 64.44 0 RL 0 15 RL -64.44 0 RL CL 1 0.0502 1 Fr
|
||||
258.632 269.26 MT 59.44 0 RL 0 10 RL -59.44 0 RL CL 1 0.000244 1 Fr
|
||||
261.132 271.76 MT 54.44 0 RL 0 5 RL -54.44 0 RL CL 1 0 1 Fr 365.572
|
||||
221.76 MT 154.44 0 RL 0 105 RL -154.44 0 RL CL 1 0.05 1 Fr 368.072
|
||||
224.26 MT 149.44 0 RL 0 100 RL -149.44 0 RL CL 1 0.1 1 Fr 370.572 226.76
|
||||
MT 144.44 0 RL 0 95 RL -144.44 0 RL CL 1 0.15 1 Fr 373.072 229.26 MT
|
||||
139.44 0 RL 0 90 RL -139.44 0 RL CL 1 0.2 1 Fr 375.572 231.76 MT 134.44
|
||||
0 RL 0 85 RL -134.44 0 RL CL 1 0.25 1 Fr 378.072 234.26 MT 129.44 0 RL 0
|
||||
80 RL -129.44 0 RL CL 1 0.3 1 Fr 380.572 236.76 MT 124.44 0 RL 0 75 RL
|
||||
-124.44 0 RL CL 1 0.35 1 Fr 383.072 239.26 MT 119.44 0 RL 0 70 RL
|
||||
-119.44 0 RL CL 1 0.4 1 Fr 385.572 241.76 MT 114.44 0 RL 0 65 RL -114.44
|
||||
0 RL CL 1 0.45 1 Fr 388.072 244.26 MT 109.44 0 RL 0 60 RL -109.44 0 RL
|
||||
CL 1 0.5 1 Fr 390.572 246.76 MT 104.44 0 RL 0 55 RL -104.44 0 RL CL 1
|
||||
0.55 1 Fr 393.072 249.26 MT 99.44 0 RL 0 50 RL -99.44 0 RL CL 1 0.6 1 Fr
|
||||
395.572 251.76 MT 94.44 0 RL 0 45 RL -94.44 0 RL CL 1 0.65 1 Fr 398.072
|
||||
254.26 MT 89.44 0 RL 0 40 RL -89.44 0 RL CL 1 0.7 1 Fr 400.572 256.76 MT
|
||||
84.44 0 RL 0 35 RL -84.44 0 RL CL 1 0.75 1 Fr 403.072 259.26 MT 79.44 0
|
||||
RL 0 30 RL -79.44 0 RL CL 1 0.8 1 Fr 405.572 261.76 MT 74.44 0 RL 0 25
|
||||
RL -74.44 0 RL CL 1 0.85 1 Fr 408.072 264.26 MT 69.44 0 RL 0 20 RL
|
||||
-69.44 0 RL CL 1 0.9 1 Fr 410.572 266.76 MT 64.44 0 RL 0 15 RL -64.44 0
|
||||
RL CL 1 0.95 1 Fr 413.072 269.26 MT 59.44 0 RL 0 10 RL -59.44 0 RL CL 1
|
||||
1 1 Fr 415.572 271.76 MT 54.44 0 RL 0 5 RL -54.44 0 RL CL 1 1 1 Fr
|
||||
56.692 326.76 MT 154.44 0 RL 0 105 RL -154.44 0 RL CL 0.05 0.05 0.95 Fr
|
||||
59.192 329.26 MT 149.44 0 RL 0 100 RL -149.44 0 RL CL 0.1 0.1 0.9 Fr
|
||||
61.692 331.76 MT 144.44 0 RL 0 95 RL -144.44 0 RL CL 0.15 0.15 0.85 Fr
|
||||
64.192 334.26 MT 139.44 0 RL 0 90 RL -139.44 0 RL CL 0.2 0.2 0.8 Fr
|
||||
66.692 336.76 MT 134.44 0 RL 0 85 RL -134.44 0 RL CL 0.25 0.25 0.75 Fr
|
||||
69.192 339.26 MT 129.44 0 RL 0 80 RL -129.44 0 RL CL 0.3 0.3 0.7 Fr
|
||||
71.692 341.76 MT 124.44 0 RL 0 75 RL -124.44 0 RL CL 0.35 0.35 0.65 Fr
|
||||
74.192 344.26 MT 119.44 0 RL 0 70 RL -119.44 0 RL CL 0.4 0.4 0.6 Fr
|
||||
76.692 346.76 MT 114.44 0 RL 0 65 RL -114.44 0 RL CL 0.45 0.45 0.55 Fr
|
||||
79.192 349.26 MT 109.44 0 RL 0 60 RL -109.44 0 RL CL 0.5 0.5 0.5 Fr
|
||||
81.692 351.76 MT 104.44 0 RL 0 55 RL -104.44 0 RL CL 0.55 0.55 0.45 Fr
|
||||
84.192 354.26 MT 99.44 0 RL 0 50 RL -99.44 0 RL CL 0.6 0.6 0.4 Fr 86.692
|
||||
356.76 MT 94.44 0 RL 0 45 RL -94.44 0 RL CL 0.65 0.65 0.35 Fr 89.192
|
||||
359.26 MT 89.44 0 RL 0 40 RL -89.44 0 RL CL 0.7 0.7 0.3 Fr 91.692 361.76
|
||||
MT 84.44 0 RL 0 35 RL -84.44 0 RL CL 0.75 0.75 0.25 Fr 94.192 364.26 MT
|
||||
79.44 0 RL 0 30 RL -79.44 0 RL CL 0.8 0.8 0.2 Fr 96.692 366.76 MT 74.44
|
||||
0 RL 0 25 RL -74.44 0 RL CL 0.85 0.85 0.15 Fr 99.192 369.26 MT 69.44 0
|
||||
RL 0 20 RL -69.44 0 RL CL 0.9 0.9 0.1 Fr 101.692 371.76 MT 64.44 0 RL 0
|
||||
15 RL -64.44 0 RL CL 0.95 0.95 0.0502 Fr 104.192 374.26 MT 59.44 0 RL 0
|
||||
10 RL -59.44 0 RL CL 1 1 0.000244 Fr 106.692 376.76 MT 54.44 0 RL 0 5 RL
|
||||
-54.44 0 RL CL 1 1 0 Fr 211.132 326.76 MT 154.44 0 RL 0 105 RL -154.44 0
|
||||
RL CL 0.95 0.95 0.05 Fr 213.632 329.26 MT 149.44 0 RL 0 100 RL -149.44 0
|
||||
RL CL 0.9 0.9 0.1 Fr 216.132 331.76 MT 144.44 0 RL 0 95 RL -144.44 0 RL
|
||||
CL 0.85 0.85 0.15 Fr 218.632 334.26 MT 139.44 0 RL 0 90 RL -139.44 0 RL
|
||||
CL 0.8 0.8 0.2 Fr 221.132 336.76 MT 134.44 0 RL 0 85 RL -134.44 0 RL CL
|
||||
0.75 0.75 0.25 Fr 223.632 339.26 MT 129.44 0 RL 0 80 RL -129.44 0 RL CL
|
||||
0.7 0.7 0.3 Fr 226.132 341.76 MT 124.44 0 RL 0 75 RL -124.44 0 RL CL
|
||||
0.65 0.65 0.35 Fr 228.632 344.26 MT 119.44 0 RL 0 70 RL -119.44 0 RL CL
|
||||
0.6 0.6 0.4 Fr 231.132 346.76 MT 114.44 0 RL 0 65 RL -114.44 0 RL CL
|
||||
0.55 0.55 0.45 Fr 233.632 349.26 MT 109.44 0 RL 0 60 RL -109.44 0 RL CL
|
||||
0.5 0.5 0.5 Fr 236.132 351.76 MT 104.44 0 RL 0 55 RL -104.44 0 RL CL
|
||||
0.45 0.45 0.55 Fr 238.632 354.26 MT 99.44 0 RL 0 50 RL -99.44 0 RL CL
|
||||
0.4 0.4 0.6 Fr 241.132 356.76 MT 94.44 0 RL 0 45 RL -94.44 0 RL CL 0.35
|
||||
0.35 0.65 Fr 243.632 359.26 MT 89.44 0 RL 0 40 RL -89.44 0 RL CL 0.3 0.3
|
||||
0.7 Fr 246.132 361.76 MT 84.44 0 RL 0 35 RL -84.44 0 RL CL 0.25 0.25
|
||||
0.75 Fr 248.632 364.26 MT 79.44 0 RL 0 30 RL -79.44 0 RL CL 0.2 0.2 0.8
|
||||
Fr 251.132 366.76 MT 74.44 0 RL 0 25 RL -74.44 0 RL CL 0.15 0.15 0.85 Fr
|
||||
253.632 369.26 MT 69.44 0 RL 0 20 RL -69.44 0 RL CL 0.1 0.1 0.9 Fr
|
||||
256.132 371.76 MT 64.44 0 RL 0 15 RL -64.44 0 RL CL 0.0502 0.0502 0.95
|
||||
Fr 258.632 374.26 MT 59.44 0 RL 0 10 RL -59.44 0 RL CL 0.000244 0.000244
|
||||
1 Fr 261.132 376.76 MT 54.44 0 RL 0 5 RL -54.44 0 RL CL 0 0 1 Fr 365.572
|
||||
326.76 MT 154.44 0 RL 0 105 RL -154.44 0 RL CL 1 0.05 0 Fr 368.072
|
||||
329.26 MT 149.44 0 RL 0 100 RL -149.44 0 RL CL 1 0.1 0 Fr 370.572 331.76
|
||||
MT 144.44 0 RL 0 95 RL -144.44 0 RL CL 1 0.15 0 Fr 373.072 334.26 MT
|
||||
139.44 0 RL 0 90 RL -139.44 0 RL CL 1 0.2 0 Fr 375.572 336.76 MT 134.44
|
||||
0 RL 0 85 RL -134.44 0 RL CL 1 0.25 0 Fr 378.072 339.26 MT 129.44 0 RL 0
|
||||
80 RL -129.44 0 RL CL 1 0.3 0 Fr 380.572 341.76 MT 124.44 0 RL 0 75 RL
|
||||
-124.44 0 RL CL 1 0.35 0 Fr 383.072 344.26 MT 119.44 0 RL 0 70 RL
|
||||
-119.44 0 RL CL 1 0.4 0 Fr 385.572 346.76 MT 114.44 0 RL 0 65 RL -114.44
|
||||
0 RL CL 1 0.45 0 Fr 388.072 349.26 MT 109.44 0 RL 0 60 RL -109.44 0 RL
|
||||
CL 1 0.5 0 Fr 390.572 351.76 MT 104.44 0 RL 0 55 RL -104.44 0 RL CL 1
|
||||
0.55 0 Fr 393.072 354.26 MT 99.44 0 RL 0 50 RL -99.44 0 RL CL 1 0.6 0 Fr
|
||||
395.572 356.76 MT 94.44 0 RL 0 45 RL -94.44 0 RL CL 1 0.65 0 Fr 398.072
|
||||
359.26 MT 89.44 0 RL 0 40 RL -89.44 0 RL CL 1 0.7 0 Fr 400.572 361.76 MT
|
||||
84.44 0 RL 0 35 RL -84.44 0 RL CL 1 0.75 0 Fr 403.072 364.26 MT 79.44 0
|
||||
RL 0 30 RL -79.44 0 RL CL 1 0.8 0 Fr 405.572 366.76 MT 74.44 0 RL 0 25
|
||||
RL -74.44 0 RL CL 1 0.85 0 Fr 408.072 369.26 MT 69.44 0 RL 0 20 RL
|
||||
-69.44 0 RL CL 1 0.9 0 Fr 410.572 371.76 MT 64.44 0 RL 0 15 RL -64.44 0
|
||||
RL CL 1 0.95 0 Fr 413.072 374.26 MT 59.44 0 RL 0 10 RL -59.44 0 RL CL 1
|
||||
1 0 Fr 415.572 376.76 MT 54.44 0 RL 0 5 RL -54.44 0 RL CL 1 1 0 Fr 0.545
|
||||
0 0 Cr -.8(Ta)56.692 444.6 S(ble 1:).8 E(Color T)5 E(ransitions)-.35 E 0
|
||||
Cg .234(fore table.)56.692 462.6 R .234(Before table.)5.234 F .234
|
||||
(Before table.)5.234 F .234(Before table.)5.234 F .234(Before table.)
|
||||
5.234 F .234(Before table.)5.234 F .234(After table.)5.234 F .234
|
||||
(After table.)5.234 F .235(After ta-)5.235 F 3.045(ble. After)56.692
|
||||
474.6 R 3.045(table. After)3.045 F 3.045(table. After)3.045 F 3.045
|
||||
(table. After)3.045 F 3.045(table. After)3.045 F 3.045(table. After)
|
||||
3.045 F 3.045(table. After)3.045 F 3.045(table. After)3.045 F 3.045
|
||||
(table. After)3.045 F(ta-)3.045 E 3.045(ble. After)56.692 486.6 R 3.045
|
||||
(table. After)3.045 F 3.045(table. After)3.045 F 3.045(table. After)
|
||||
3.045 F 3.045(table. After)3.045 F 3.045(table. After)3.045 F 3.045
|
||||
(table. After)3.045 F 3.045(table. After)3.045 F 3.045(table. After)
|
||||
3.045 F(ta-)3.045 E 3.045(ble. After)56.692 498.6 R 3.045(table. After)
|
||||
3.045 F 3.045(table. After)3.045 F 3.045(table. After)3.045 F 3.045
|
||||
(table. After)3.045 F 3.045(table. After)3.045 F 3.045(table. After)
|
||||
3.045 F 3.045(table. After)3.045 F 3.045(table. After)3.045 F(ta-)3.045
|
||||
E(ble.)56.692 510.6 Q 0 Cg EP
|
||||
%%Trailer
|
||||
end
|
||||
%%EOF
|
||||
|
|
@ -0,0 +1,68 @@
|
|||
.ig
|
||||
Copyright 2006 Free Software Foundation, Inc.
|
||||
|
||||
Written by Joachim Walsdorff <Joachim.Walsdorff@urz.uni-heidelberg.de>
|
||||
|
||||
This file is part of hdtbl.
|
||||
|
||||
hdtbl is distributed with groff, the GNU roff typesetting system.
|
||||
|
||||
groff is free software; you can redistribute it and/or modify it under
|
||||
the terms of the GNU General Public License as published by the Free
|
||||
Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
groff is distributed in the hope that it will be useful, but WITHOUT
|
||||
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
..
|
||||
.
|
||||
.if !d sopath \
|
||||
. ds sopath
|
||||
.
|
||||
.ds lib examples/common.roff
|
||||
.soquiet \*[sopath]\*[lib]
|
||||
.if !d common \{\
|
||||
. tmc \n[.F]: cannot find "\*[lib]"; specify its location
|
||||
. tm1 " with groff '-I' or '-d sopath=' option
|
||||
.\}
|
||||
.
|
||||
.
|
||||
.de ctab
|
||||
.nr #cc 0
|
||||
.PN 21 ".nr #cc +.05f" \
|
||||
".nr #cc (1f<?\En[#cc])" \
|
||||
".defcolor \En[t*#] rgb \\$1 \\$2 \\$3" \
|
||||
".TBL border= csp=0 cpd=.5n bgc=\\\\n[t*#] bc=" \
|
||||
.TR \
|
||||
.TD
|
||||
.PN 21 .ETB
|
||||
..
|
||||
.PN 30 Before table.
|
||||
.TBL cols=3 width=33% border= csp=0 cpd=0 bgc=
|
||||
.CPTN val=b Color Transitions
|
||||
.TR
|
||||
.TD ".ctab 0+\En[#cc]u \En[#cc]u \En[#cc]u" \" black -> white
|
||||
.TD ".ctab 1f-\En[#cc]u 1f-\En[#cc]u 1f-\En[#cc]u"\" white -> black
|
||||
.TD ".ctab 1f \En[#cc]u \En[#cc]u" \" red -> white
|
||||
.TR
|
||||
.TD ".ctab 0 1f-\En[#cc]u \En[#cc]u" \" green -> blue
|
||||
.TD ".ctab 1f 1f-\En[#cc]u 1f" \" white -> magenta
|
||||
.TD ".ctab 1f \En[#cc]u 1f" \" magenta -> white
|
||||
.TR
|
||||
.TD ".ctab 0+\En[#cc]u \En[#cc]u 1f-\En[#cc]u" \" blue -> yellow
|
||||
.TD ".ctab 1f-\En[#cc]u 1f-\En[#cc]u \En[#cc]u" \" yellow -> blue
|
||||
.TD ".ctab 1f 0+\En[#cc]u 0" \" red -> yellow
|
||||
.xTD ".ctab 0+\En[#cc]u 1f-\En[#cc]u 1f-\En[#cc]u"\" cyan -> red
|
||||
.ETB
|
||||
.PN 30 After table.
|
||||
.
|
||||
.\" Local Variables:
|
||||
.\" mode: nroff
|
||||
.\" fill-column: 72
|
||||
.\" End:
|
||||
.\" vim: set filetype=groff textwidth=72:
|
||||
296
OGP64/usr/share/doc/groff-1.24.1/examples/hdtbl/common.roff
Normal file
296
OGP64/usr/share/doc/groff-1.24.1/examples/hdtbl/common.roff
Normal file
|
|
@ -0,0 +1,296 @@
|
|||
.ig
|
||||
Copyright 2006 Free Software Foundation, Inc.
|
||||
|
||||
Written by Joachim Walsdorff <Joachim.Walsdorff@urz.uni-heidelberg.de>
|
||||
|
||||
This file is part of hdtbl.
|
||||
|
||||
hdtbl is distributed with groff, the GNU roff typesetting system.
|
||||
|
||||
groff is free software; you can redistribute it and/or modify it under
|
||||
the terms of the GNU General Public License as published by the Free
|
||||
Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
groff is distributed in the hope that it will be useful, but WITHOUT
|
||||
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
..
|
||||
.
|
||||
.
|
||||
.ds common common.roff\" name for diagnostic messages
|
||||
.mso hdtbl.tmac\" load table macros
|
||||
.
|
||||
.\" ******************************************************************
|
||||
.\" ** Some macros and the page setup used by the examples **
|
||||
.\" ******************************************************************
|
||||
.
|
||||
.\" ******************************************************************
|
||||
.\" ** Header macro for the examples **
|
||||
.\" ******************************************************************
|
||||
.de H
|
||||
. nr *w* (17 * \w\\$* / 10 + 4n)
|
||||
. TBL border=1n \
|
||||
bc=yellow \
|
||||
bgc=red4 \
|
||||
fgc=yellow \
|
||||
csp=0 \
|
||||
fst=TB \
|
||||
"fsz=1.7 1.5" \
|
||||
hal=c \
|
||||
tal=c \
|
||||
"width=(\\n[*w*]+4n)<?\n[.l]"
|
||||
. TR .TD
|
||||
. t*P1 \\$*
|
||||
. ETB
|
||||
. SP
|
||||
..
|
||||
.
|
||||
.
|
||||
.\" ******************************************************************
|
||||
.\" ** Perform n-times all the arbitrary arguments **
|
||||
.\" ** .PN n a2 a3 ... **
|
||||
.\" ** PN is nestable **
|
||||
.\" ******************************************************************
|
||||
.de PN
|
||||
. nr *pn +1
|
||||
. nr PN\\n[*pn] (\\$1 + 1) 1
|
||||
. shift
|
||||
.
|
||||
. while \\n-[PN\\n[*pn]] \
|
||||
. t*P1 \\$@
|
||||
.
|
||||
. nr *pn -1
|
||||
..
|
||||
.
|
||||
.
|
||||
.\" Utility macro: .d2x decimal_number [base [string_name]]
|
||||
.\"
|
||||
.\" Convert 'decimal_number' to another base 'base' (in the
|
||||
.\" range 1..16) and store the result in string 'string_name'.
|
||||
.\" If 'base' is missing or empty, convert to a hexadecimal
|
||||
.\" number. If 'string_name' is missing or empty, return value
|
||||
.\" in string 'hex#', otherwise return the value in both
|
||||
.\" 'string_name' and 'hex#'.
|
||||
.\"
|
||||
.\" The base value 1 is handled specially: The returned
|
||||
.\" string contains the character '|' 'decimal_number' times
|
||||
.\" (for example, input value 4 yields '||||').
|
||||
.ds d2x-0 0\"
|
||||
.ds d2x-1 1\"
|
||||
.ds d2x-2 2\"
|
||||
.ds d2x-3 3\"
|
||||
.ds d2x-4 4\"
|
||||
.ds d2x-5 5\"
|
||||
.ds d2x-6 6\"
|
||||
.ds d2x-7 7\"
|
||||
.ds d2x-8 8\"
|
||||
.ds d2x-9 9\"
|
||||
.ds d2x-10 A\"
|
||||
.ds d2x-11 B\"
|
||||
.ds d2x-12 C\"
|
||||
.ds d2x-13 D\"
|
||||
.ds d2x-14 E\"
|
||||
.ds d2x-15 F\"
|
||||
.
|
||||
.
|
||||
.de d2x
|
||||
. if !\B\\$1 \{\
|
||||
. tmc \\*[common]: \\n[.F]:\\n[.c]: d2x: invalid or missing first
|
||||
. tm argument
|
||||
. tm \\*[common]: usage: '.d2x decimal_number [base [string_name]]'
|
||||
. return
|
||||
. \}
|
||||
.
|
||||
. nr i# (-1) 1
|
||||
. nr j# 1
|
||||
. ds hex#
|
||||
. nr dec# (\\$1) 1
|
||||
.
|
||||
. if !\\$1 \
|
||||
. nr dec# (-\\n[dec#])
|
||||
.
|
||||
. ie !"\\$2"" \{\
|
||||
. ie !\B\\$2 \
|
||||
. tm \\*[common]: \\n[.F]:\\n[.c]: d2x: invalid base '\\$2'
|
||||
. el \
|
||||
. ie ((\\$2 < 1) : (\\$2 > 16)) \
|
||||
. tm \\*[common]: \\n[.F]:\\n[.c]: d2x: invalid base '\\$2'
|
||||
. el \
|
||||
. nr b# \\$2
|
||||
. \}\}
|
||||
. el \
|
||||
. nr b# 16
|
||||
.
|
||||
. nr xb# 1
|
||||
.
|
||||
. ie (\\n[b#] == 1) \{\
|
||||
. nr dec# +1
|
||||
. while \\n-[dec#] \
|
||||
. as hex# |\"
|
||||
. \}
|
||||
. el \{\
|
||||
. while (\\n[dec#] - \\n[xb#]) \{\
|
||||
. nr xb# (\\n[xb#] * \\n[b#])
|
||||
. nr j# +1
|
||||
. \}
|
||||
.
|
||||
. while (\\n+[i#] < \\n[j#]) \{\
|
||||
. nr ** (\\n[dec#] / \\n[xb#])
|
||||
. as hex# \\*[d2x-\\n[**]]\"
|
||||
. nr dec# (\\n[dec#] - (\\n[xb#] * \\n[**]))
|
||||
. nr xb# (\\n[xb#] / \\n[b#])
|
||||
. \}
|
||||
. \}
|
||||
.
|
||||
. \" strip leading zero, if any
|
||||
. ds * \\*[hex#]\"
|
||||
. substring * 0 0
|
||||
. length len# \\*[hex#]
|
||||
. if \\n[len#]>1 .if "\\*[*]"0" \
|
||||
. substring hex# 1 -1
|
||||
. rr len#
|
||||
.
|
||||
. if (\\$1 < 0) \
|
||||
. ds hex# -\\*[hex#]\"
|
||||
.
|
||||
. if !"\\$3"" \{\
|
||||
. ie !\A\\$3 \
|
||||
. tm \\*[common]: \\n[.F]:\\n[.c]: d2x: invalid string name '\\$3'
|
||||
. el \
|
||||
. ds \\$3 \\*[hex#]\"
|
||||
. \}
|
||||
..
|
||||
.
|
||||
.
|
||||
.\" Utility macro: .random#
|
||||
.\" .random-seed seed1 seed2
|
||||
.\"
|
||||
.\" Return pseudo-random numbers in the range 0..0xFFFFFF,
|
||||
.\" represented as the concatenation of '#' and six
|
||||
.\" hexadecimal digits, in the string '#random'. The
|
||||
.\" macro 'random-seed' can be used to set seed values,
|
||||
.\" which should be integers in the range 1..2147483562 and
|
||||
.\" 1..2147483398 for 'seed1' and 'seed2', respectively
|
||||
.\" (the macro applies a modulo operation to assure this
|
||||
.\" range). If 'random-seed' isn't called the registers
|
||||
.\" start at some constant, arbitrary values.
|
||||
.\"
|
||||
.\" The used generator is presented in L'Ecuyer's 1988 paper
|
||||
.\" 'Efficient and Portable Combined Random Number
|
||||
.\" Generators', which combines two Multiplicative Linear
|
||||
.\" Congruential Generators (MLCGs) to achieve a period of
|
||||
.\" 2.3*10^18.
|
||||
.\"
|
||||
.\" Since this just generates example output,
|
||||
.\" we don't need good randomness.
|
||||
.
|
||||
.de random-seed
|
||||
. if !(\\n[.$] == 2) \{\
|
||||
. tm \\*[common]: random-seed: Invalid number of arguments.
|
||||
. tm \\*[common]: usage: '.random-seed seed1 seed2'
|
||||
. return
|
||||
. \}
|
||||
.
|
||||
. nr random-s1 (\\$1 % 2147483562)
|
||||
. nr random-s2 (\\$2 % 2147483398)
|
||||
..
|
||||
.random-seed 131545532 19201711
|
||||
.
|
||||
.
|
||||
.de random#
|
||||
. nr * (\\n[random-s1] / 53668)
|
||||
. nr random-s1 (40014 * (\\n[random-s1] - (\\n[*] * 53668)) \
|
||||
- (\\n[*] * 12211))
|
||||
. if !\\n[random-s1] \
|
||||
. nr random-s1 +2147483563
|
||||
.
|
||||
. nr * (\\n[random-s2] / 52774)
|
||||
. nr random-s2 (40692 * (\\n[random-s2] - (\\n[*] * 52774)) \
|
||||
- (\\n[*] * 3791))
|
||||
. if !\\n[random-s2] \
|
||||
. nr random-s2 +2147483399
|
||||
.
|
||||
. nr * (\\n[random-s1] - \\n[random-s2])
|
||||
. if (\\n[*] < 1) \
|
||||
. nr * +2147483562
|
||||
.
|
||||
. \" reduce the result to the leftmost 24 bits
|
||||
. nr * (\\n[*] / 128)
|
||||
.
|
||||
. d2x \\n[*]
|
||||
. ds hex# 000000\\*[hex#]\"
|
||||
. substring hex# -6
|
||||
. ds #random #\\*[hex#]\"
|
||||
..
|
||||
.
|
||||
.
|
||||
.\" ******************************************************************
|
||||
.\" ** minimal Page setup **
|
||||
.\" ******************************************************************
|
||||
.
|
||||
.nr s \n[.ps]
|
||||
.nr v \n[.v]
|
||||
.nr p \n[.p]
|
||||
.nr o \n[.o]
|
||||
.nr l 6.6i \" set text width
|
||||
.ll \n[t*l]u
|
||||
.nr o 2c \" set offset
|
||||
.po \n[o]u
|
||||
.nr p 29.7c \" set paper length (A4)
|
||||
.pl \n[p]u
|
||||
.nr tH 1i \" set top margin
|
||||
.sp |\n[tH]u
|
||||
.
|
||||
.ds t*HM //arbitrary text for page header, except on the first page//\"
|
||||
.ds t*BM //arbitrary text for page footer, except on the last page/\\n[%]/\"
|
||||
.
|
||||
.ev 99
|
||||
.lt \n[t*l]u
|
||||
.ev
|
||||
.
|
||||
.
|
||||
.de HM
|
||||
. sp |.5i \" print header in top margin
|
||||
. tl \\*[t*HM]
|
||||
. sp |\\n[tH]u
|
||||
. ev
|
||||
..
|
||||
.
|
||||
.
|
||||
.de BM
|
||||
. ev 99
|
||||
. sp |(\\n[p]u - .5i) \" print footer in bottom margin
|
||||
. tl \\*[t*BM]
|
||||
. bp
|
||||
..
|
||||
.
|
||||
.
|
||||
.de EM
|
||||
. rm BM \" no page number at bottom of last page
|
||||
. t*EM
|
||||
..
|
||||
.
|
||||
.
|
||||
.wh 0 HM
|
||||
.wh 0-1.5i BM
|
||||
.em EM
|
||||
.
|
||||
.\" Some packages (-mm) define their own .SP macro.
|
||||
.\" Use ours if another one isn't already available.
|
||||
.if !d SP .als SP t*SP
|
||||
.
|
||||
.if "\n[.m]"" \
|
||||
. gcolor black
|
||||
.if "\n[.M]"" \
|
||||
. fcolor white
|
||||
.
|
||||
.\" Local Variables:
|
||||
.\" mode: nroff
|
||||
.\" fill-column: 72
|
||||
.\" End:
|
||||
.\" vim: set filetype=groff textwidth=72:
|
||||
105888
OGP64/usr/share/doc/groff-1.24.1/examples/hdtbl/fonts_n.ps
Normal file
105888
OGP64/usr/share/doc/groff-1.24.1/examples/hdtbl/fonts_n.ps
Normal file
File diff suppressed because it is too large
Load diff
164
OGP64/usr/share/doc/groff-1.24.1/examples/hdtbl/fonts_n.roff
Normal file
164
OGP64/usr/share/doc/groff-1.24.1/examples/hdtbl/fonts_n.roff
Normal file
|
|
@ -0,0 +1,164 @@
|
|||
.ig
|
||||
Copyright 2006 Free Software Foundation, Inc.
|
||||
|
||||
Written by Joachim Walsdorff <Joachim.Walsdorff@urz.uni-heidelberg.de>
|
||||
|
||||
This file is part of hdtbl.
|
||||
|
||||
hdtbl is distributed with groff, the GNU roff typesetting system.
|
||||
|
||||
groff is free software; you can redistribute it and/or modify it under
|
||||
the terms of the GNU General Public License as published by the Free
|
||||
Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
groff is distributed in the hope that it will be useful, but WITHOUT
|
||||
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
..
|
||||
.
|
||||
.
|
||||
.\" ******************************************************************
|
||||
.\" ** groff glyphs vs. character codes: **
|
||||
.\" ** .fontdump [font1 font2 ...] **
|
||||
.\" ** Print glyphs of font1, font2, ..., versus **
|
||||
.\" ** character code. **
|
||||
.\" ** 'all' as fontname prints all fonts in the **
|
||||
.\" ** specified string 'fontpath'. **
|
||||
.\" ** without arg: glyphs and codes of active font. **
|
||||
.\" ******************************************************************
|
||||
.
|
||||
.ds fonts_n fonts_n.roff\" name for diagnostic messages
|
||||
.
|
||||
.if !d sopath \
|
||||
. ds sopath
|
||||
.
|
||||
.ds lib examples/common.roff
|
||||
.soquiet \*[sopath]\*[lib]
|
||||
.if !d common \{\
|
||||
. tmc \n[.F]: cannot find "\*[lib]"; specify its location
|
||||
. tm1 " with groff '-I' or '-d sopath=' option
|
||||
. ab
|
||||
.\}
|
||||
.
|
||||
.
|
||||
.if !d fontpath \
|
||||
. ds fontpath /usr/share/groff/1.24.1/font
|
||||
.
|
||||
.if !\n[.U] \{\
|
||||
. tmc \*[fonts_n]: document requires unsafe mode;
|
||||
. tm1 " use groff's '-U' option
|
||||
. ab
|
||||
.\}
|
||||
.
|
||||
.de fontdump
|
||||
. ie \\n[.$] \
|
||||
. ds *args \\$*
|
||||
. el \
|
||||
. ds *args \\n[.fn]
|
||||
.
|
||||
.\" Solaris 10 `tr` barfs if POSIX character classes are used in a
|
||||
.\" locale other than "C".
|
||||
. pso sh -c \
|
||||
"printf '%s' '.ds *f ' ; \
|
||||
ls \\*[fontpath]/dev\*[.T] \
|
||||
| env LC_ALL=C tr '[:cntrl:]' '[ *]'; \
|
||||
echo"
|
||||
.
|
||||
. while !"\\*[*args]"" \{\
|
||||
. pops *$1 *args
|
||||
.
|
||||
. if "\\*[*$1]"all" \{\
|
||||
. ds *args \\*[*f] \\*[*args]
|
||||
. pops *$1 *args
|
||||
. nr *all 1
|
||||
. \}
|
||||
.
|
||||
. if \\n[*all] \{\
|
||||
. if "\\*[*$1]"." \
|
||||
. nr *all 0
|
||||
. if !F \\*[*$1] \
|
||||
. continue
|
||||
. \}
|
||||
.
|
||||
. t*index "\\*[*f]" \\*[*$1]
|
||||
.
|
||||
. ie (\\n[.y] > 18) \
|
||||
. if !F \\*[*$1] \{\
|
||||
. tm \\*[fonts_n]: \\n[.F]:\\n[.c]: Font \\*[*$1] not found.
|
||||
. continue
|
||||
. \}
|
||||
. el \{\
|
||||
. if !\\n[t*index] \{\
|
||||
. tm \\*[fonts_n]: \\n[.F]:\\n[.c]: Font \\*[*$1] not found.
|
||||
. continue
|
||||
. \}
|
||||
.
|
||||
. nr * \\n[.f]
|
||||
. ft \\*[*$1]
|
||||
. nr ** \\n[.f]
|
||||
. ft
|
||||
.
|
||||
. if (\\n[**] == \\n[*]) \
|
||||
. continue
|
||||
. \}
|
||||
.
|
||||
. if \\n[t*cptn] \
|
||||
. bp
|
||||
.
|
||||
. tm \\*[fonts_n]: listing font '\\*[*$1]'...
|
||||
.
|
||||
. TBL border=.1n bc=red cpd=0 csp=.1n bgc=
|
||||
. CPTN groff font name \\*[*$1]; \
|
||||
.br \
|
||||
val=b ".pso /usr/bin/grep -E internalname \\*[fontpath]/dev\*[.T]/\\*[*$1]" \
|
||||
.br \
|
||||
Grid is blank if font is not installed.
|
||||
. TR
|
||||
. TD
|
||||
. TBL cols=12 border=.1n bc=red csp=.1n cpd=.2n fgc=red4 bgc=beige \
|
||||
hal=c fsz='1.2 1.2' fst=\\*[*$1]
|
||||
. nr c# 0-1 1
|
||||
. nr y# 0-1 1
|
||||
. TR fst=HB fgc=blue
|
||||
. TD
|
||||
. nr x# 0-1 1
|
||||
. \" following 4 'PN's instead of 4 while-loops as in
|
||||
. \" font_x.roff; short and easy to write, but a little
|
||||
. \" bit slower.
|
||||
. PN 10 .TD \
|
||||
\&..\\\\n+[x#]
|
||||
. TD
|
||||
.
|
||||
. PN 27 .TR \
|
||||
".TD fgc=blue fst=HB" \
|
||||
\\\\n+[y#]. \
|
||||
".PN 10 .TD \
|
||||
"".if c \N'\En+[c#]' \
|
||||
\N'\En[c#]'""" \
|
||||
".TD fgc=blue fst=HB" \
|
||||
\\\\n[y#].
|
||||
.
|
||||
. TR fst=HB fgc=blue
|
||||
. TD
|
||||
. nr x# 0-1 1
|
||||
. PN 10 .TD \
|
||||
\&..\\\\n+[x#]
|
||||
. TD
|
||||
. ETB
|
||||
. ETB
|
||||
. \}
|
||||
..
|
||||
.
|
||||
.tm \*[fonts_n]: listing fonts in \*[fontpath]/dev\*[.T]
|
||||
.fontdump all
|
||||
.
|
||||
.\" Local Variables:
|
||||
.\" mode: nroff
|
||||
.\" fill-column: 72
|
||||
.\" End:
|
||||
.\" vim: set filetype=groff textwidth=72:
|
||||
104007
OGP64/usr/share/doc/groff-1.24.1/examples/hdtbl/fonts_x.ps
Normal file
104007
OGP64/usr/share/doc/groff-1.24.1/examples/hdtbl/fonts_x.ps
Normal file
File diff suppressed because it is too large
Load diff
175
OGP64/usr/share/doc/groff-1.24.1/examples/hdtbl/fonts_x.roff
Normal file
175
OGP64/usr/share/doc/groff-1.24.1/examples/hdtbl/fonts_x.roff
Normal file
|
|
@ -0,0 +1,175 @@
|
|||
.ig
|
||||
Copyright 2006 Free Software Foundation, Inc.
|
||||
|
||||
Written by Joachim Walsdorff <Joachim.Walsdorff@urz.uni-heidelberg.de>
|
||||
|
||||
This file is part of hdtbl.
|
||||
|
||||
hdtbl is distributed with groff, the GNU roff typesetting system.
|
||||
|
||||
groff is free software; you can redistribute it and/or modify it under
|
||||
the terms of the GNU General Public License as published by the Free
|
||||
Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
groff is distributed in the hope that it will be useful, but WITHOUT
|
||||
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
..
|
||||
.
|
||||
.
|
||||
.\" ******************************************************************
|
||||
.\" ** groff glyphs vs. character codes: **
|
||||
.\" ** .fontdump [font1 font2 ...] **
|
||||
.\" ** Print glyphs of font1, font2, ..., versus **
|
||||
.\" ** character code. **
|
||||
.\" ** 'all' as fontname prints all fonts in the **
|
||||
.\" ** specified string 'fontpath'. **
|
||||
.\" ** without arg: glyphs and codes of active font. **
|
||||
.\" ******************************************************************
|
||||
.
|
||||
.ds fonts_x fonts_x.roff\" name for diagnostic messages
|
||||
.
|
||||
.if !d sopath \
|
||||
. ds sopath
|
||||
.
|
||||
.ds lib examples/common.roff
|
||||
.soquiet \*[sopath]\*[lib]
|
||||
.if !d common \{\
|
||||
. tmc \n[.F]: cannot find "\*[lib]"; specify its location
|
||||
. tm1 " with groff '-I' or '-d sopath=' option
|
||||
. ab
|
||||
.\}
|
||||
.
|
||||
.
|
||||
.if !d fontpath \
|
||||
. ds fontpath /usr/share/groff/1.24.1/font
|
||||
.
|
||||
.if !\n[.U] \{\
|
||||
. tmc \*[fonts_n]: document requires unsafe mode;
|
||||
. tm1 " use groff's '-U' option
|
||||
. ab
|
||||
.\}
|
||||
.
|
||||
.de fontdump
|
||||
. ie \\n[.$] \
|
||||
. ds *args \\$*
|
||||
. el \
|
||||
. ds *args \\n[.fn]
|
||||
.
|
||||
.\" Solaris 10 `tr` barfs if POSIX character classes are used in a
|
||||
.\" locale other than "C".
|
||||
. pso sh -c \
|
||||
"printf '%s' '.ds *f ' ; \
|
||||
ls \\*[fontpath]/dev\*[.T] \
|
||||
| env LC_ALL=C tr '[:cntrl:]' '[ *]'; \
|
||||
echo"
|
||||
.
|
||||
. while !"\\*[*args]"" \{\
|
||||
. pops *$1 *args
|
||||
.
|
||||
. if "\\*[*$1]"all" \{\
|
||||
. ds *args \\*[*f] \\*[*args]
|
||||
. pops *$1 *args
|
||||
. nr *all 1
|
||||
. \}
|
||||
.
|
||||
. if \\n[*all] \{\
|
||||
. if "\\*[*$1]"." \
|
||||
. nr *all 0
|
||||
. if !F \\*[*$1] \
|
||||
. continue
|
||||
. \}
|
||||
.
|
||||
. t*index "\\*[*f]" \\*[*$1]
|
||||
.
|
||||
. ie (\\n[.y] > 18) \
|
||||
. if !F \\*[*$1] \{\
|
||||
. tm \\*[fonts_x]: \\n[.F]:\\n[.c]: Font \\*[*$1] not found.
|
||||
. continue
|
||||
. \}
|
||||
. el \{\
|
||||
. if !\\n[t*index] \{\
|
||||
. tm \\*[fonts_x]: \\n[.F]:\\n[.c]: Font \\*[*$1] not found.
|
||||
. continue
|
||||
. \}
|
||||
.
|
||||
. nr * \\n[.f]
|
||||
. ft \\*[*$1]
|
||||
. nr ** \\n[.f]
|
||||
. ft
|
||||
.
|
||||
. if (\\n[**] == \\n[*]) \
|
||||
. continue
|
||||
. \}
|
||||
.
|
||||
. if \\n[t*cptn] \
|
||||
. bp
|
||||
.
|
||||
. tm \\*[fonts_x]: listing font '\\*[*$1]'...
|
||||
.
|
||||
. TBL border=.1n bc=red cpd=0 csp=.1n bgc=
|
||||
. CPTN groff font name \\*[*$1]; \
|
||||
.br \
|
||||
val=b ".pso /usr/bin/grep -E internalname \\*[fontpath]/dev\*[.T]/\\*[*$1]" \
|
||||
.br \
|
||||
Grid is blank if font is not installed.
|
||||
. TR
|
||||
. TD
|
||||
. TBL cols=18 border=.1n bc=red csp=.1n cpd=.2n fgc=red4 bgc=beige \
|
||||
hal=c fsz='1.2 1.7' fst=\\*[*$1]
|
||||
. nr c# 0-1 1
|
||||
. nr y# 0 1
|
||||
. TR fst=HB fgc=blue
|
||||
. TD
|
||||
. nr x# 0-1 1
|
||||
. while (\\n+[x#] < 16) \{\
|
||||
. d2x \\n[x#]
|
||||
. TD
|
||||
. nop \&.\\*[hex#]
|
||||
. \}
|
||||
. TD
|
||||
.
|
||||
. nr y# -1
|
||||
. while (\\n+[y#] < 17) \{\
|
||||
. TR
|
||||
. TD fgc=blue fst=HB
|
||||
. d2x \\n[y#]
|
||||
. nop \\*[hex#].
|
||||
. nr x# 0-1 1
|
||||
. while (\\n+[x#] < 16) \{\
|
||||
. TD
|
||||
. if c \N'\\n+[c#]' \
|
||||
. nop \N'\\n[c#]'
|
||||
. \}
|
||||
. TD fgc=blue fst=HB
|
||||
. d2x \\n[y#]
|
||||
. nop \\*[hex#].
|
||||
. \}
|
||||
.
|
||||
. TR fst=HB fgc=blue
|
||||
. TD
|
||||
. nr x# 0-1 1
|
||||
. while (\\n+[x#] < 16) \{\
|
||||
. d2x \\n[x#]
|
||||
. TD
|
||||
. nop \&..\\*[hex#]
|
||||
. \}
|
||||
. TD
|
||||
. ETB
|
||||
. ETB
|
||||
. \}
|
||||
..
|
||||
.
|
||||
.tm \*[fonts_x]: listing fonts in \*[fontpath]/dev\*[.T]
|
||||
.fontdump all
|
||||
.
|
||||
.\" Local Variables:
|
||||
.\" mode: nroff
|
||||
.\" fill-column: 72
|
||||
.\" End:
|
||||
.\" vim: set filetype=groff textwidth=72:
|
||||
1018
OGP64/usr/share/doc/groff-1.24.1/examples/hdtbl/gnu.eps
Normal file
1018
OGP64/usr/share/doc/groff-1.24.1/examples/hdtbl/gnu.eps
Normal file
File diff suppressed because it is too large
Load diff
1401
OGP64/usr/share/doc/groff-1.24.1/examples/hdtbl/mixed_pickles.ps
Normal file
1401
OGP64/usr/share/doc/groff-1.24.1/examples/hdtbl/mixed_pickles.ps
Normal file
File diff suppressed because it is too large
Load diff
|
|
@ -0,0 +1,109 @@
|
|||
.ig
|
||||
Copyright 2006 Free Software Foundation, Inc.
|
||||
|
||||
Written by Joachim Walsdorff <Joachim.Walsdorff@urz.uni-heidelberg.de>
|
||||
|
||||
This file is part of hdtbl.
|
||||
|
||||
hdtbl is distributed with groff, the GNU roff typesetting system.
|
||||
|
||||
groff is free software; you can redistribute it and/or modify it under
|
||||
the terms of the GNU General Public License as published by the Free
|
||||
Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
groff is distributed in the hope that it will be useful, but WITHOUT
|
||||
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
..
|
||||
.
|
||||
.am pspic*error-hook
|
||||
. ab \\n[.F]:\\n[.c]: fatal error: PSPIC failed to include '\\$1'
|
||||
..
|
||||
.
|
||||
.if !d sopath \
|
||||
. ds sopath
|
||||
.
|
||||
.ds lib examples/common.roff
|
||||
.soquiet \*[sopath]\*[lib]
|
||||
.if !d common \{\
|
||||
. tmc \n[.F]: cannot find "\*[lib]"; specify its location
|
||||
. tm1 " with groff '-I' or '-d sopath=' option
|
||||
.\}
|
||||
.
|
||||
.
|
||||
.H Table with Mixed Content: \
|
||||
.br \
|
||||
EPS Image, eqn Equation, tbl Table, and pic Picture
|
||||
.
|
||||
Call groff with options \-t, \-e, and \-p!
|
||||
.
|
||||
.TBL width=90% tal=c csp=.2n cpd=0
|
||||
. TR
|
||||
. TD
|
||||
. TBL width='25% 75%' csp=.5n cpd=.5n hal=c
|
||||
. TR
|
||||
. TD hl=d vl=d rowspan=2 bgc=red4 fgc=linen fsz=1.2 fst=HB val=m
|
||||
. PSPIC -I -\\n[.l]u gnu.eps
|
||||
. sp .5
|
||||
. nop eps image with \fI.PSPIC\fP
|
||||
. TD bgc=linen
|
||||
.
|
||||
.EQ
|
||||
int from 0 to 1 {( ln x ) sup 2} over {sqrt {1 - x sup 2}} dx approx 0.245
|
||||
.EN
|
||||
.
|
||||
. nop \0\0\0\0\0equation with \fIeqn\fP
|
||||
.
|
||||
. TR
|
||||
. TD hl=d
|
||||
.
|
||||
.TS
|
||||
tab(@), center, doublebox, nospaces;
|
||||
c c c | c c c
|
||||
r rI lB | r rI lB.
|
||||
Bit @ Code @ Warning @ Bit @ Code @ Warning
|
||||
=
|
||||
0 @ 1 @ char @ 10 @ 1024 @ reg
|
||||
1 @ 2 @ number @ 11 @ 2048 @ tab
|
||||
2 @ 4 @ break @ 12 @ 4096 @ right-brace
|
||||
3 @ 8 @ delim @ 13 @ 8192 @ missing
|
||||
4 @ 16 @ el @ 14 @ 16384 @ input
|
||||
5 @ 32 @ scale @ 15 @ 32768 @ escape
|
||||
6 @ 64 @ range @ 16 @ 65536 @ space
|
||||
7 @ 128 @ syntax @ 17 @ 131072 @ font
|
||||
8 @ 256 @ di @ 18 @ 262144 @ ig
|
||||
9 @ 512 @ mac @ 19 @ 524288 @ color
|
||||
.TE
|
||||
.
|
||||
. sp .5
|
||||
. nop table with \fItbl\fP
|
||||
. TR
|
||||
. TD colspan=2 bgc=azure2 fgc=blue4
|
||||
.
|
||||
.PS
|
||||
ellipse "document";
|
||||
arrow 0.42;
|
||||
box width 0.6 "\fIgpic\/\fP(1)"
|
||||
arrow 0.42;
|
||||
box width 1.25 "\fIgtbl\/\fP(1) or \fIgeqn\/\fP(1)" "(optional)" dashed;
|
||||
arrow 0.42;
|
||||
box width 0.65 "\fIgtroff\/\fP(1)";
|
||||
arrow 0.42;
|
||||
ellipse "PostScript"
|
||||
.PE
|
||||
.
|
||||
. sp .5
|
||||
. nop picture with \fIpic\fP
|
||||
. ETB
|
||||
.ETB
|
||||
.
|
||||
.\" Local Variables:
|
||||
.\" mode: nroff
|
||||
.\" fill-column: 72
|
||||
.\" End:
|
||||
.\" vim: set filetype=groff textwidth=72:
|
||||
1032
OGP64/usr/share/doc/groff-1.24.1/examples/hdtbl/rainbow.ps
Normal file
1032
OGP64/usr/share/doc/groff-1.24.1/examples/hdtbl/rainbow.ps
Normal file
File diff suppressed because it is too large
Load diff
91
OGP64/usr/share/doc/groff-1.24.1/examples/hdtbl/rainbow.roff
Normal file
91
OGP64/usr/share/doc/groff-1.24.1/examples/hdtbl/rainbow.roff
Normal file
|
|
@ -0,0 +1,91 @@
|
|||
.ig
|
||||
Copyright 2006 Free Software Foundation, Inc.
|
||||
|
||||
Written by Joachim Walsdorff <Joachim.Walsdorff@urz.uni-heidelberg.de>
|
||||
|
||||
This file is part of hdtbl.
|
||||
|
||||
hdtbl is distributed with groff, the GNU roff typesetting system.
|
||||
|
||||
groff is free software; you can redistribute it and/or modify it under
|
||||
the terms of the GNU General Public License as published by the Free
|
||||
Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
groff is distributed in the hope that it will be useful, but WITHOUT
|
||||
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
..
|
||||
.
|
||||
.if !d sopath \
|
||||
. ds sopath
|
||||
.
|
||||
.ds lib examples/common.roff
|
||||
.soquiet \*[sopath]\*[lib]
|
||||
.if !d common \{\
|
||||
. tmc \n[.F]: cannot find "\*[lib]"; specify its location
|
||||
. tm1 " with groff '-I' or '-d sopath=' option
|
||||
.\}
|
||||
.
|
||||
.
|
||||
.nr *n 25
|
||||
.nr *# 0 1
|
||||
.
|
||||
.de ctab
|
||||
. nr #cc 0
|
||||
. PN \\$1 \
|
||||
".nr #cc +(1f / \\$1)" \
|
||||
".defcolor \En[t*#] rgb \\$2 \\$3 \\$4" \
|
||||
".TBL csp=\n[t*l]/(12*\\$1+2) border= cpd=0 bgc=\\\\n[t*#] bc=" \
|
||||
".if (\\\\n+[*#] == 1) \
|
||||
.CPTN Rainbow Colors \[em] Nested Tables with Colored Backgrounds \
|
||||
val=b" \
|
||||
.TR \
|
||||
.TD
|
||||
..
|
||||
.
|
||||
.ctab \n[*n] 1 0 \En[#cc]u \" rot -> magenta
|
||||
.ctab \n[*n] 1-\En[#cc]u 0 1 \" magenta -> blue
|
||||
.ctab \n[*n] 0 \En[#cc]u 1 \" blue -> cyan
|
||||
.ctab \n[*n] 0 1 1-\En[#cc]u \" cyan -> green
|
||||
.ctab \n[*n] \En[#cc]u 1 0 \" green -> yellow
|
||||
.ctab \n[*n] 1 1-\En[#cc]u 0 \" yellow -> red
|
||||
.
|
||||
.PN 6*\n[*n] .ETB
|
||||
.
|
||||
.bp
|
||||
.
|
||||
.nr *n 25
|
||||
.nr *# 0 1
|
||||
.
|
||||
.de ctab
|
||||
. nr #cc 0
|
||||
. PN \\$1 \
|
||||
".nr #cc +(1f / \\$1)" \
|
||||
".defcolor \En[t*#] rgb \\$2 \\$3 \\$4" \
|
||||
".TBL border=\n[t*l]/(12*\\$1+2) csp=0 cpd=0 bc=\\\\n[t*#] bgc=" \
|
||||
".if (\\\\n+[*#] == 1) \
|
||||
.CPTN Rainbow Colors \[em] Nested Tables with Colored Borders \
|
||||
val=b" \
|
||||
.TR \
|
||||
.TD
|
||||
..
|
||||
.
|
||||
.ctab \n[*n] 1 \En[#cc]u 0 \" red -> yellow
|
||||
.ctab \n[*n] 1-\En[#cc]u 1 0 \" yellow -> green
|
||||
.ctab \n[*n] 0 1 \En[#cc]u \" green -> cyan
|
||||
.ctab \n[*n] 0 1-\En[#cc]u 1 \" cyan -> blue
|
||||
.ctab \n[*n] \En[#cc]u 0 1 \" blue -> magenta
|
||||
.ctab \n[*n] 1 0 1-\En[#cc]u \" magenta -> red
|
||||
.
|
||||
.PN 6*\n[*n] .ETB
|
||||
.
|
||||
.\" Local Variables:
|
||||
.\" mode: nroff
|
||||
.\" fill-column: 72
|
||||
.\" End:
|
||||
.\" vim: set filetype=groff textwidth=72:
|
||||
|
|
@ -0,0 +1,394 @@
|
|||
%!PS-Adobe-3.0
|
||||
%%Creator: groff version 1.24.1
|
||||
%%CreationDate: Mon Mar 16 21:27:47 2026
|
||||
%%DocumentNeededResources: font Times-Bold
|
||||
%%+ font Times-Roman
|
||||
%%+ font Helvetica-Narrow-Bold
|
||||
%%+ font Helvetica-Narrow
|
||||
%%+ font Helvetica-Narrow-Oblique
|
||||
%%DocumentSuppliedResources: procset grops 1.24 1
|
||||
%%Pages: 2
|
||||
%%PageOrder: Ascend
|
||||
%%DocumentMedia: Default 612 792 0 () ()
|
||||
%%Orientation: Portrait
|
||||
%%EndComments
|
||||
%%BeginDefaults
|
||||
%%PageMedia: Default
|
||||
%%EndDefaults
|
||||
%%BeginProlog
|
||||
%%BeginResource: procset grops 1.24 1
|
||||
%!PS-Adobe-3.0 Resource-ProcSet
|
||||
/setpacking where{
|
||||
pop
|
||||
currentpacking
|
||||
true setpacking
|
||||
}if
|
||||
/grops 120 dict dup begin
|
||||
% The ASCII code of the space character.
|
||||
/SC 32 def
|
||||
/A/show load def
|
||||
/B{0 SC 3 -1 roll widthshow}bind def
|
||||
/C{0 exch ashow}bind def
|
||||
/D{0 exch 0 SC 5 2 roll awidthshow}bind def
|
||||
/E{0 rmoveto show}bind def
|
||||
/F{0 rmoveto 0 SC 3 -1 roll widthshow}bind def
|
||||
/G{0 rmoveto 0 exch ashow}bind def
|
||||
/H{0 rmoveto 0 exch 0 SC 5 2 roll awidthshow}bind def
|
||||
/I{0 exch rmoveto show}bind def
|
||||
/J{0 exch rmoveto 0 SC 3 -1 roll widthshow}bind def
|
||||
/K{0 exch rmoveto 0 exch ashow}bind def
|
||||
/L{0 exch rmoveto 0 exch 0 SC 5 2 roll awidthshow}bind def
|
||||
/M{rmoveto show}bind def
|
||||
/N{rmoveto 0 SC 3 -1 roll widthshow}bind def
|
||||
/O{rmoveto 0 exch ashow}bind def
|
||||
/P{rmoveto 0 exch 0 SC 5 2 roll awidthshow}bind def
|
||||
/Q{moveto show}bind def
|
||||
/R{moveto 0 SC 3 -1 roll widthshow}bind def
|
||||
/S{moveto 0 exch ashow}bind def
|
||||
/T{moveto 0 exch 0 SC 5 2 roll awidthshow}bind def
|
||||
% name size font SF -
|
||||
/SF{
|
||||
findfont exch
|
||||
[exch dup 0 exch 0 exch neg 0 0]makefont
|
||||
dup setfont
|
||||
[exch/setfont cvx]cvx bind def
|
||||
}bind def
|
||||
% name a c d font MF -
|
||||
/MF{
|
||||
findfont
|
||||
[5 2 roll
|
||||
0 3 1 roll % b
|
||||
neg 0 0]makefont
|
||||
dup setfont
|
||||
[exch/setfont cvx]cvx bind def
|
||||
}bind def
|
||||
/level0 0 def
|
||||
/RES 0 def
|
||||
/PL 0 def
|
||||
/LS 0 def
|
||||
% Enable manual feed.
|
||||
% MANUAL -
|
||||
/MANUAL{
|
||||
statusdict begin/manualfeed true store end
|
||||
}bind def
|
||||
% Guess the page length.
|
||||
% This assumes that the imageable area is vertically centered on the page.
|
||||
% PLG - length
|
||||
/PLG{
|
||||
gsave newpath clippath pathbbox grestore
|
||||
exch pop add exch pop
|
||||
}bind def
|
||||
% BP -
|
||||
/BP{
|
||||
/level0 save def
|
||||
1 setlinecap
|
||||
1 setlinejoin
|
||||
DEFS/BPhook known{DEFS begin BPhook end}if
|
||||
72 RES div dup scale
|
||||
LS{
|
||||
90 rotate
|
||||
}{
|
||||
0 PL translate
|
||||
}ifelse
|
||||
1 -1 scale
|
||||
}bind def
|
||||
/EP{
|
||||
level0 restore
|
||||
showpage
|
||||
}def
|
||||
% centerx centery radius startangle endangle DA -
|
||||
/DA{
|
||||
newpath arcn stroke
|
||||
}bind def
|
||||
% x y SN - x' y'
|
||||
% round a position to nearest (pixel + (.25,.25))
|
||||
/SN{
|
||||
transform
|
||||
.25 sub exch .25 sub exch
|
||||
round .25 add exch round .25 add exch
|
||||
itransform
|
||||
}bind def
|
||||
% endx endy startx starty DL -
|
||||
% we round the endpoints of the line, so that parallel horizontal
|
||||
% and vertical lines will appear even
|
||||
/DL{
|
||||
SN
|
||||
moveto
|
||||
SN
|
||||
lineto stroke
|
||||
}bind def
|
||||
% centerx centery radius DC -
|
||||
/DC{
|
||||
newpath 0 360 arc closepath
|
||||
}bind def
|
||||
/TM matrix def
|
||||
% width height centerx centery DE -
|
||||
/DE{
|
||||
TM currentmatrix pop
|
||||
translate scale newpath 0 0 .5 0 360 arc closepath
|
||||
TM setmatrix
|
||||
}bind def
|
||||
% these are for splines
|
||||
/RC/rcurveto load def
|
||||
/RL/rlineto load def
|
||||
/ST/stroke load def
|
||||
/MT/moveto load def
|
||||
/CL/closepath load def
|
||||
% fill the last path
|
||||
% r g b Fr -
|
||||
/Fr{
|
||||
setrgbcolor fill
|
||||
}bind def
|
||||
% c m y k Fk -
|
||||
/setcmykcolor where{
|
||||
pop
|
||||
/Fk{
|
||||
setcmykcolor fill
|
||||
}bind def
|
||||
}if
|
||||
% g Fg -
|
||||
/Fg{
|
||||
setgray fill
|
||||
}bind def
|
||||
% fill with the "current color"
|
||||
/FL/fill load def
|
||||
/LW/setlinewidth load def
|
||||
/Cr/setrgbcolor load def
|
||||
/setcmykcolor where{
|
||||
pop
|
||||
/Ck/setcmykcolor load def
|
||||
}if
|
||||
/Cg/setgray load def
|
||||
% new_font_name encoding_vector old_font_name RE -
|
||||
/RE{
|
||||
findfont
|
||||
dup maxlength 1 index/FontName known not{1 add}if dict begin
|
||||
{
|
||||
1 index/FID ne
|
||||
2 index/UniqueID ne
|
||||
and
|
||||
{def}{pop pop}ifelse
|
||||
}forall
|
||||
/Encoding exch def
|
||||
dup/FontName exch def
|
||||
currentdict end definefont pop
|
||||
}bind def
|
||||
/DEFS 0 def
|
||||
% hpos vpos EBEGIN -
|
||||
/EBEGIN{
|
||||
moveto
|
||||
DEFS begin
|
||||
}bind def
|
||||
/EEND/end load def
|
||||
/CNT 0 def
|
||||
/level1 0 def
|
||||
% llx lly newwid wid newht ht newllx newlly PBEGIN -
|
||||
/PBEGIN{
|
||||
/level1 save def
|
||||
translate
|
||||
div 3 1 roll div exch scale
|
||||
neg exch neg exch translate
|
||||
% set the graphics state to default values
|
||||
0 setgray
|
||||
0 setlinecap
|
||||
1 setlinewidth
|
||||
0 setlinejoin
|
||||
10 setmiterlimit
|
||||
[]0 setdash
|
||||
/setstrokeadjust where{
|
||||
pop
|
||||
false setstrokeadjust
|
||||
}if
|
||||
/setoverprint where{
|
||||
pop
|
||||
false setoverprint
|
||||
}if
|
||||
newpath
|
||||
/CNT countdictstack def
|
||||
userdict begin
|
||||
/showpage{}def
|
||||
%
|
||||
% Any included setpagedevice should be ignored.
|
||||
% See: http://www.w-beer.de/doc/ps/.
|
||||
%
|
||||
/setpagedevice{}def
|
||||
mark
|
||||
}bind def
|
||||
/PEND{
|
||||
cleartomark
|
||||
countdictstack CNT sub{end}repeat
|
||||
level1 restore
|
||||
}bind def
|
||||
end def
|
||||
/setpacking where{
|
||||
pop
|
||||
setpacking
|
||||
}if
|
||||
%%EndResource
|
||||
%%EndProlog
|
||||
%%BeginSetup
|
||||
%%BeginFeature: *PageSize Default
|
||||
<< /PageSize [ 612 792 ] /ImagingBBox null >> setpagedevice
|
||||
%%EndFeature
|
||||
%%IncludeResource: font Times-Bold
|
||||
%%IncludeResource: font Times-Roman
|
||||
%%IncludeResource: font Helvetica-Narrow-Bold
|
||||
%%IncludeResource: font Helvetica-Narrow
|
||||
%%IncludeResource: font Helvetica-Narrow-Oblique
|
||||
grops begin/DEFS 52 dict def DEFS begin/u{.001 mul}bind def end/RES 72
|
||||
def/PL 792 def/LS false def/ENC0[/asciicircum/asciitilde/Scaron/Zcaron
|
||||
/scaron/zcaron/Ydieresis/trademark/quotesingle/Euro/.notdef/.notdef
|
||||
/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef
|
||||
/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef
|
||||
/.notdef/.notdef/space/exclam/quotedbl/numbersign/dollar/percent
|
||||
/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen
|
||||
/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon
|
||||
/semicolon/less/equal/greater/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O
|
||||
/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/backslash/bracketright/circumflex
|
||||
/underscore/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y
|
||||
/z/braceleft/bar/braceright/tilde/.notdef/quotesinglbase/guillemotleft
|
||||
/guillemotright/bullet/florin/fraction/perthousand/dagger/daggerdbl
|
||||
/endash/emdash/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/hungarumlaut
|
||||
/dotaccent/breve/caron/ring/ogonek/quotedblleft/quotedblright/oe/lslash
|
||||
/quotedblbase/OE/Lslash/.notdef/exclamdown/cent/sterling/currency/yen
|
||||
/brokenbar/section/dieresis/copyright/ordfeminine/guilsinglleft
|
||||
/logicalnot/minus/registered/macron/degree/plusminus/twosuperior
|
||||
/threesuperior/acute/mu/paragraph/periodcentered/cedilla/onesuperior
|
||||
/ordmasculine/guilsinglright/onequarter/onehalf/threequarters
|
||||
/questiondown/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE
|
||||
/Ccedilla/Egrave/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex
|
||||
/Idieresis/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis
|
||||
/multiply/Oslash/Ugrave/Uacute/Ucircumflex/Udieresis/Yacute/Thorn
|
||||
/germandbls/agrave/aacute/acircumflex/atilde/adieresis/aring/ae/ccedilla
|
||||
/egrave/eacute/ecircumflex/edieresis/igrave/iacute/icircumflex/idieresis
|
||||
/eth/ntilde/ograve/oacute/ocircumflex/otilde/odieresis/divide/oslash
|
||||
/ugrave/uacute/ucircumflex/udieresis/yacute/thorn/ydieresis]def
|
||||
/Helvetica-Narrow-Oblique@0 ENC0/Helvetica-Narrow-Oblique RE
|
||||
/Helvetica-Narrow@0 ENC0/Helvetica-Narrow RE/Helvetica-Narrow-Bold@0
|
||||
ENC0/Helvetica-Narrow-Bold RE/Times-Roman@0 ENC0/Times-Roman RE
|
||||
/Times-Bold@0 ENC0/Times-Bold RE
|
||||
%%EndSetup
|
||||
%%Page: 1 1
|
||||
%%BeginPageSetup
|
||||
BP
|
||||
%%EndPageSetup
|
||||
115.204 90.888 MT 350.976 0 RL 0 26.6 RL -350.976 0 RL CL 0.545 0 0 Fr 1
|
||||
1 0 Cr/F0 20.4/Times-Bold@0 SF(Short Refer)123.064 107.86 Q(ence f)-.367
|
||||
E(or the HDtbl-Macr)-.51 E(os)-.367 E 109.204 102.36 EBEGIN
|
||||
0 setlinejoin 2 setlinecap
|
||||
EEND 6 LW 469.18 87.888 112.204 87.888 DL 469.18 120.488 469.18 87.888
|
||||
DL 112.204 120.488 469.18 120.488 DL 112.204 87.888 112.204 120.488 DL 0
|
||||
Cg/F0 12/Times-Roman@0 SF(This Short Reference describes the Heidelber)
|
||||
56.692 155.96 Q(ger T)-.216 E(able Macros using the macros themselv)-.96
|
||||
E(es.)-.18 E 58.492 167.322 MT 43.2 0 RL 0 15.12 RL -43.2 0 RL CL 1
|
||||
0.894 0.769 Fr 0.545 0 0 Cr/F1 12/Helvetica-Narrow-Bold@0 SF(Macr)65.722
|
||||
176.84 Q(o)-.24 E 105.292 167.322 MT 183.6 0 RL 0 15.12 RL -183.6 0 RL
|
||||
CL 1 0.894 0.769 Fr 0.545 0 0 Cr(Description)170.026 176.84 Q 292.492
|
||||
167.322 MT 113.4 0 RL 0 15.12 RL -113.4 0 RL CL 1 0.894 0.769 Fr 0.545 0
|
||||
0 Cr(Predecessor)317.008 176.84 Q(s)-.18 E 409.492 167.322 MT 113.4 0 RL
|
||||
0 15.12 RL -113.4 0 RL CL 1 0.894 0.769 Fr 0.545 0 0 Cr(Successor)
|
||||
438.658 176.84 Q(s)-.18 E 58.492 186.042 MT 43.2 0 RL 0 26.64 RL -43.2 0
|
||||
RL CL 1 0.894 0.769 Fr 0.545 0 0 Cr/F2 12/Helvetica-Narrow@0 SF(.TBL)
|
||||
60.292 201.32 Q 105.292 186.042 MT 183.6 0 RL 0 26.64 RL -183.6 0 RL CL
|
||||
1 0.894 0.769 Fr 0.545 0 0 Cr(Begin a ne)107.092 201.32 Q 2.736(wt)-.24
|
||||
G(ab)-2.736 E(le)-.24 E 292.492 186.042 MT 113.4 0 RL 0 26.64 RL -113.4
|
||||
0 RL CL 1 0.894 0.769 Fr 0.545 0 0 Cr(.TD .TH .ETB cell con-)294.292
|
||||
195.56 Q(tent)294.292 207.08 Q 409.492 186.042 MT 113.4 0 RL 0 26.64 RL
|
||||
-113.4 0 RL CL 1 0.894 0.769 Fr 0.545 0 0 Cr(.CPTN .TR)411.292 201.32 Q
|
||||
58.492 216.282 MT 43.2 0 RL 0 26.64 RL -43.2 0 RL CL 1 0.894 0.769 Fr
|
||||
0.545 0 0 Cr(.CPTN)60.292 231.56 Q 105.292 216.282 MT 183.6 0 RL 0 26.64
|
||||
RL -183.6 0 RL CL 1 0.894 0.769 Fr 0.545 0 0 Cr(Optional n)107.092 225.8
|
||||
Q(umbered or unn)-.12 E(umbered tab)-.12 E(le)-.24 E(caption)107.092
|
||||
237.32 Q 292.492 216.282 MT 113.4 0 RL 0 26.64 RL -113.4 0 RL CL 1 0.894
|
||||
0.769 Fr 0.545 0 0 Cr(.TBL)294.292 231.56 Q 409.492 216.282 MT 113.4 0
|
||||
RL 0 26.64 RL -113.4 0 RL CL 1 0.894 0.769 Fr 0.545 0 0 Cr(.TR)411.292
|
||||
231.56 Q 58.492 246.522 MT 43.2 0 RL 0 15.12 RL -43.2 0 RL CL 1 0.894
|
||||
0.769 Fr 0.545 0 0 Cr(.TR)60.292 256.04 Q 105.292 246.522 MT 183.6 0 RL
|
||||
0 15.12 RL -183.6 0 RL CL 1 0.894 0.769 Fr 0.545 0 0 Cr(Begin a ne)
|
||||
107.092 256.04 Q 2.736(wt)-.24 G(ab)-2.736 E(le ro)-.24 E(w)-.18 E
|
||||
292.492 246.522 MT 113.4 0 RL 0 15.12 RL -113.4 0 RL CL 1 0.894 0.769 Fr
|
||||
0.545 0 0 Cr(.TBL .CPTN cell content)294.292 256.04 Q 409.492 246.522 MT
|
||||
113.4 0 RL 0 15.12 RL -113.4 0 RL CL 1 0.894 0.769 Fr 0.545 0 0 Cr
|
||||
(.TD .TR)411.292 256.04 Q 58.492 265.242 MT 43.2 0 RL 0 26.64 RL -43.2 0
|
||||
RL CL 1 0.894 0.769 Fr 0.545 0 0 Cr(.TH)60.292 280.52 Q 105.292 265.242
|
||||
MT 183.6 0 RL 0 26.64 RL -183.6 0 RL CL 1 0.894 0.769 Fr 0.545 0 0 Cr
|
||||
(Optional begin tab)107.092 280.52 Q(le header cell)-.24 E 292.492
|
||||
265.242 MT 113.4 0 RL 0 26.64 RL -113.4 0 RL CL 1 0.894 0.769 Fr 0.545 0
|
||||
0 Cr(.TR .TD .TH .ETB cell)294.292 274.76 Q(content)294.292 286.28 Q
|
||||
409.492 265.242 MT 113.4 0 RL 0 26.64 RL -113.4 0 RL CL 1 0.894 0.769 Fr
|
||||
0.545 0 0 Cr(.TD .TH .TR .ETB cell)411.292 274.76 Q(content)411.292
|
||||
286.28 Q 58.492 295.482 MT 43.2 0 RL 0 26.64 RL -43.2 0 RL CL 1 0.894
|
||||
0.769 Fr 0.545 0 0 Cr(.TD)60.292 310.76 Q 105.292 295.482 MT 183.6 0 RL
|
||||
0 26.64 RL -183.6 0 RL CL 1 0.894 0.769 Fr 0.545 0 0 Cr(Begin tab)
|
||||
107.092 310.76 Q(le data cell)-.24 E 292.492 295.482 MT 113.4 0 RL 0
|
||||
26.64 RL -113.4 0 RL CL 1 0.894 0.769 Fr 0.545 0 0 Cr
|
||||
(.TR .TD .TH .ETB cell)294.292 305 Q(content)294.292 316.52 Q 409.492
|
||||
295.482 MT 113.4 0 RL 0 26.64 RL -113.4 0 RL CL 1 0.894 0.769 Fr 0.545 0
|
||||
0 Cr(.TD .TH .TR .ETB cell)411.292 305 Q(content)411.292 316.52 Q 58.492
|
||||
325.722 MT 43.2 0 RL 0 26.64 RL -43.2 0 RL CL 1 0.894 0.769 Fr 0.545 0 0
|
||||
Cr(.ETB)60.292 341 Q 105.292 325.722 MT 183.6 0 RL 0 26.64 RL -183.6 0
|
||||
RL CL 1 0.894 0.769 Fr 0.545 0 0 Cr(Finish and pr)107.092 341 Q(int tab)
|
||||
.18 E(le)-.24 E 292.492 325.722 MT 113.4 0 RL 0 26.64 RL -113.4 0 RL CL
|
||||
1 0.894 0.769 Fr 0.545 0 0 Cr(.TD .TH .ETB cell con-)294.292 335.24 Q
|
||||
(tent)294.292 346.76 Q 409.492 325.722 MT 113.4 0 RL 0 26.64 RL -113.4 0
|
||||
RL CL 1 0.894 0.769 Fr 0.545 0 0 Cr(.TBL .TR .TD .TH .ETB)411.292 335.24
|
||||
Q(cell content)411.292 346.76 Q 58.492 355.962 MT 43.2 0 RL 0 15.12 RL
|
||||
-43.2 0 RL CL 1 0.894 0.769 Fr 0.545 0 0 Cr(.t*free)60.292 365.48 Q
|
||||
105.292 355.962 MT 417.6 0 RL 0 15.12 RL -417.6 0 RL CL 1 0.894 0.769 Fr
|
||||
0.545 0 0 Cr(Utility macro to free held tab)107.092 365.48 Q(les)-.24 E
|
||||
5.472(.U)-.18 G(se it outside an)-5.472 E 2.736(yt)-.18 G(ab)-2.736 E
|
||||
(le)-.24 E(.)-.18 E -1.44(Ta)56.692 388.088 S -.24(bl)1.44 G 2.736(e1)
|
||||
.24 G 5.472(:B)-2.736 G(ase- Optional- and Utility-Macros)-5.472 E 0 Cg
|
||||
/F3 10/Times-Roman@0 SF(arbitrary te)186.072 817.889 Q
|
||||
(xt for page footer)-.15 E 2.5(,e)-.4 G(xcept on the last page)-2.65 E
|
||||
(1)124.38 E 0 Cg EP
|
||||
%%Page: 2 2
|
||||
%%BeginPageSetup
|
||||
BP
|
||||
%%EndPageSetup
|
||||
/F0 10/Times-Roman@0 SF(arbitrary te)183.852 48 Q(xt for page header)
|
||||
-.15 E 2.5(,e)-.4 G(xcept on the \214rst page)-2.65 E 58.492 83.362 MT
|
||||
90 0 RL 0 15.12 RL -90 0 RL CL 1 0.894 0.769 Fr 0.545 0 0 Cr/F1 12
|
||||
/Helvetica-Narrow-Bold@0 SF(Ar)80.35 92.88 Q(gument)-.18 E 152.092
|
||||
83.362 MT 146.16 0 RL 0 15.12 RL -146.16 0 RL CL 1 0.894 0.769 Fr 0.545
|
||||
0 0 Cr -.72(Va)212.404 92.88 S(lue).72 E 301.852 83.362 MT 33.84 0 RL 0
|
||||
15.12 RL -33.84 0 RL CL 1 0.894 0.769 Fr 0.545 0 0 Cr(.TBL)307.84 92.88
|
||||
Q 339.292 83.362 MT 33.84 0 RL 0 15.12 RL -33.84 0 RL CL 1 0.894 0.769
|
||||
Fr 0.545 0 0 Cr(.CPT)345.004 92.88 Q 376.732 83.362 MT 33.84 0 RL 0
|
||||
15.12 RL -33.84 0 RL CL 1 0.894 0.769 Fr 0.545 0 0 Cr(.TR)385.726 92.88
|
||||
Q 414.172 83.362 MT 33.84 0 RL 0 15.12 RL -33.84 0 RL CL 1 0.894 0.769
|
||||
Fr 0.545 0 0 Cr(.TH)423.166 92.88 Q 451.612 83.362 MT 33.84 0 RL 0 15.12
|
||||
RL -33.84 0 RL CL 1 0.894 0.769 Fr 0.545 0 0 Cr(.TD)460.606 92.88 Q
|
||||
489.052 83.362 MT 33.84 0 RL 0 15.12 RL -33.84 0 RL CL 1 0.894 0.769 Fr
|
||||
0.545 0 0 Cr(.ETB)494.764 92.88 Q 58.492 102.082 MT 90 0 RL 0 15.12 RL
|
||||
-90 0 RL CL 1 0.894 0.769 Fr 0.545 0 0 Cr/F2 12/Helvetica-Narrow@0 SF
|
||||
(border=)60.292 111.6 Q/F3 12/Helvetica-Narrow-Oblique@0 SF([n])A
|
||||
152.092 102.082 MT 146.16 0 RL 0 15.12 RL -146.16 0 RL CL 1 0.894 0.769
|
||||
Fr 0.545 0 0 Cr F2(border thic)153.892 111.6 Q(kness)-.24 E 301.852
|
||||
102.082 MT 33.84 0 RL 0 15.12 RL -33.84 0 RL CL 1 0.894 0.769 Fr 0.545 0
|
||||
0 Cr(X)315.49 111.6 Q 339.292 102.082 MT 33.84 0 RL 0 15.12 RL -33.84 0
|
||||
RL CL 1 0.894 0.769 Fr 376.732 102.082 MT 33.84 0 RL 0 15.12 RL -33.84 0
|
||||
RL CL FL 414.172 102.082 MT 33.84 0 RL 0 15.12 RL -33.84 0 RL CL FL
|
||||
451.612 102.082 MT 33.84 0 RL 0 15.12 RL -33.84 0 RL CL FL 489.052
|
||||
102.082 MT 33.84 0 RL 0 15.12 RL -33.84 0 RL CL FL 58.492 120.802 MT 90
|
||||
0 RL 0 26.64 RL -90 0 RL CL FL 0.545 0 0 Cr(bc=)60.292 136.08 Q F3([c])A
|
||||
152.092 120.802 MT 146.16 0 RL 0 26.64 RL -146.16 0 RL CL 1 0.894 0.769
|
||||
Fr 0.545 0 0 Cr F2(color of border and cellseper)153.892 130.32 Q(a-)
|
||||
-.12 E -2.556(tor lines)153.892 141.84 R 301.852 120.802 MT 33.84 0 RL 0
|
||||
26.64 RL -33.84 0 RL CL 1 0.894 0.769 Fr 0.545 0 0 Cr(X)315.49 136.08 Q
|
||||
339.292 120.802 MT 33.84 0 RL 0 26.64 RL -33.84 0 RL CL 1 0.894 0.769 Fr
|
||||
376.732 120.802 MT 33.84 0 RL 0 26.64 RL -33.84 0 RL CL FL 0.545 0 0 Cr
|
||||
(X)390.37 136.08 Q 414.172 120.802 MT 33.84 0 RL 0 26.64 RL -33.84 0 RL
|
||||
CL 1 0.894 0.769 Fr 0.545 0 0 Cr(X)427.81 136.08 Q 451.612 120.802 MT
|
||||
33.84 0 RL 0 26.64 RL -33.84 0 RL CL 1 0.894 0.769 Fr 0.545 0 0 Cr(X)
|
||||
465.25 136.08 Q 489.052 120.802 MT 33.84 0 RL 0 26.64 RL -33.84 0 RL CL
|
||||
1 0.894 0.769 Fr 178.107 170.088 MT 225.169 0 RL 0 25.2 RL -225.169 0 RL
|
||||
CL 0.545 0 0 Fr 1 1 0 Cr/F4 20.4/Times-Bold@0 SF
|
||||
(------ incomplete -------)193.844 186.36 Q 172.107 181.56 EBEGIN
|
||||
0 setlinejoin 2 setlinecap
|
||||
EEND 6 LW 406.276 167.088 175.107 167.088 DL 406.276 198.288 406.276
|
||||
167.088 DL 175.107 198.288 406.276 198.288 DL 175.107 167.088 175.107
|
||||
198.288 DL 0 Cg EP
|
||||
%%Trailer
|
||||
end
|
||||
%%EOF
|
||||
|
|
@ -0,0 +1,91 @@
|
|||
.ig
|
||||
Copyright 2006 Free Software Foundation, Inc.
|
||||
|
||||
Written by Joachim Walsdorff <Joachim.Walsdorff@urz.uni-heidelberg.de>
|
||||
|
||||
This file is part of hdtbl.
|
||||
|
||||
hdtbl is distributed with groff, the GNU roff typesetting system.
|
||||
|
||||
groff is free software; you can redistribute it and/or modify it under
|
||||
the terms of the GNU General Public License as published by the Free
|
||||
Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
groff is distributed in the hope that it will be useful, but WITHOUT
|
||||
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
..
|
||||
.
|
||||
.if !d sopath \
|
||||
. ds sopath
|
||||
.
|
||||
.ds lib examples/common.roff
|
||||
.soquiet \*[sopath]\*[lib]
|
||||
.if !d common \{\
|
||||
. tmc \n[.F]: cannot find "\*[lib]"; specify its location
|
||||
. tm1 " with groff '-I' or '-d sopath=' option
|
||||
.\}
|
||||
.
|
||||
.
|
||||
.t*pv 1.2 1.2 "" x
|
||||
.H Short Reference for the HDtbl-Macros
|
||||
This Short Reference describes the Heidelberger Table Macros
|
||||
using the macros themselves.
|
||||
.br
|
||||
.nr t*csp .3n
|
||||
.nr t*cpd .3n
|
||||
.ds t*ff HN
|
||||
.ds t*val m
|
||||
.ds t*hal l
|
||||
.xig
|
||||
.TBL "width=10% 40% 25% 25%" border= "fsz=1 .8"
|
||||
.CPTN Base- Optional- and Utility-Macros val=b
|
||||
.TR
|
||||
.TH Macro .TH Description .TH Predecessors .TH Successors
|
||||
.TR
|
||||
.TD \&.TBL .TD Begin a new table .TD \&.TD \&.TH \%.ETB cell content
|
||||
.TD \&.CPTN \&.TR
|
||||
.TR
|
||||
.TD \&.CPTN .TD Optional numbered or unnumbered table caption
|
||||
.TD \&.TBL .TD \&.TR
|
||||
.TR
|
||||
.TD \&.TR .TD Begin a new table row .TD \&.TBL \&.CPTN cell content
|
||||
.TD \&.TD \&.TR
|
||||
.TR
|
||||
.TD \&.TH .TD Optional begin table header cell
|
||||
.TD \&.TR \&.TD \&.TH \%.ETB cell content
|
||||
.TD \&.TD \&.TH \&.TR \%.ETB cell content
|
||||
.TR
|
||||
.TD \&.TD .TD Begin table data cell .TD \&.TR \&.TD \&.TH \%.ETB cell content
|
||||
.TD \&.TD \&.TH \&.TR \%.ETB cell content
|
||||
.TR
|
||||
.TD \&.ETB .TD Finish and print table .TD \&.TD \&.TH \%.ETB cell content
|
||||
.TD \&.TBL \&.TR \&.TD \&.TH \%.ETB cell content
|
||||
.TR
|
||||
.TD \&.t*free
|
||||
.TD colspan=3 val=t Utility macro to free held tables. Use it outside any table.
|
||||
.ETB
|
||||
.bp
|
||||
.x.
|
||||
.TBL "fsz=1 .8" "width=20% 32% 8% 8% 8% 8% 8% 8%" border=
|
||||
.TR
|
||||
.TH Argument .TH Value .TH \&.TBL .TH \&.CPT .TH \&.TR .TH \&.TH .TH \&.TD .TH \&.ETB
|
||||
.TR
|
||||
.TD border=\fI[n]\fP
|
||||
.TD border thickness .TD .ce X .TD .TD .TD .TD .TD
|
||||
.TR
|
||||
.TD bc=\fI[c]\fP
|
||||
.TD color of border and cellseperatorlines .TD .ce X .TD .TD .ce X .TD .ce X .TD .ce X .TD
|
||||
.ETB
|
||||
.H ------ incomplete -------
|
||||
.
|
||||
.\" Local Variables:
|
||||
.\" mode: nroff
|
||||
.\" fill-column: 72
|
||||
.\" End:
|
||||
.\" vim: set filetype=groff textwidth=72:
|
||||
Loading…
Add table
Add a link
Reference in a new issue