Subversion-Projekte lars-tiefland.php_share

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
1 lars 1
% $Header: /cvsroot/html2ps/postscript/table.row.ps,v 1.1 2005/12/18 07:21:38 Konstantin Exp $
2
 
3
/get-row-baseline {                % => Row
4
% Calculate maximal baseline for each cell contained
5
% Cell baseline is the baseline of its first line box
6
  {
7
    get-content
8
    dup length 0 gt {
9
 
10
      get-baseline
11
      max
12
    } {
13
      pop
14
    } ifelse
15
  }
16
  exch
17
 
18
  reduce
19
 
20
} def