[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: constructs with texi2dvi failing
From: |
Karl Berry |
Subject: |
Re: constructs with texi2dvi failing |
Date: |
Mon, 9 Feb 2004 18:25:56 -0500 |
@multitable @columnfractions 1
Here's a patch for this one (I updated the texinfo.tex in gnulib, on
tug.org, etc., as usual).
Thanks.
*** texinfo.tex 6 Feb 2004 16:20:53 -0000 1.27
--- texinfo.tex 9 Feb 2004 23:23:06 -0000 1.28
***************
*** 2535,2547 ****
\def\xcolumnfractions{\columnfractions}
\newif\ifsetpercent
! % #1 is the part of the @columnfraction before the decimal point, which
! % is presumably either 0 or the empty string (but we don't check, we
! % just throw it away). #2 is the decimal part, which we use as the
! % percent of \hsize for this column.
! \def\pickupwholefraction#1.#2 {%
\global\advance\colcount by 1
! \expandafter\xdef\csname col\the\colcount\endcsname{.#2\hsize}%
\setuptable
}
--- 2535,2546 ----
\def\xcolumnfractions{\columnfractions}
\newif\ifsetpercent
! % #1 is the @columnfraction, usually a decimal number like .5, but might
! % be just 1. We just use it, whatever it is.
! %
! \def\pickupwholefraction#1 {%
\global\advance\colcount by 1
! \expandafter\xdef\csname col\the\colcount\endcsname{#1\hsize}%
\setuptable
}