into the <literal>border=...</literal> attribute; in the
other formats only values 0 (no border), 1 (internal dividing lines),
and 2 (table frame) make sense.
+ <literal>latex</literal> and <literal>latex-longtable</literal>
+ also support a <literal>border</literal> value of 3 which adds
+ a dividing line between each row.
</para>
</listitem>
</varlistentry>
Sets the output format to one of <literal>unaligned</literal>,
<literal>aligned</literal>, <literal>wrapped</literal>,
<literal>html</literal>,
- <literal>latex</literal>, or <literal>troff-ms</literal>.
+ <literal>latex</literal> (uses <literal>tabular</literal>),
+ <literal>latex-longtable</literal>, or
+ <literal>troff-ms</literal>.
Unique abbreviations are allowed. (That would mean one letter
is enough.)
</para>
</para>
<para>
- The <literal>html</>, <literal>latex</>, and <literal>troff-ms</>
+ The <literal>html</>, <literal>latex</>,
+ <literal>latex-longtable</literal>, and <literal>troff-ms</>
formats put out tables that are intended to
be included in documents using the respective mark-up
- language. They are not complete documents! (This might not be
- so dramatic in <acronym>HTML</acronym>, but in <application>LaTeX</application> you must
- have a complete document wrapper.)
+ language. They are not complete documents! This might not be
+ necessary in <acronym>HTML</acronym>, but in
+ <application>LaTeX</application> you must have a complete
+ document wrapper. <literal>latex-longtable</literal>
+ also requires the <application>LaTeX</application>
+ <literal>longtable</literal> and <literal>booktabs</> packages.
</para>
</listitem>
</varlistentry>
<term><literal>tableattr</literal> (or <literal>T</literal>)</term>
<listitem>
<para>
- Specifies attributes to be placed inside the
- <acronym>HTML</acronym> <sgmltag>table</sgmltag> tag in
- <literal>html</> output format. This
+ In <acronym>HTML</acronym> format, this specifies attributes
+ to be placed inside the <sgmltag>table</sgmltag> tag. This
could for example be <literal>cellpadding</literal> or
<literal>bgcolor</literal>. Note that you probably don't want
to specify <literal>border</literal> here, as that is already
<replaceable class="parameter">value</replaceable> is given,
the table attributes are unset.
</para>
+ <para>
+ In <literal>latex-longtable</literal> format, this controls
+ the proportional width of each column containing a left-aligned
+ data type. It is specified as a space-separated list of values,
+ e.g. <literal>'0.2 0.2 0.6'</>. Unspecified output columns
+ use the last specified value.
+ </para>
</listitem>
</varlistentry>
if (cancel_pressed)
return;
- if (opt_border > 2)
- opt_border = 2;
+ if (opt_border > 3)
+ opt_border = 3;
if (cont->opt->start_table)
{
/* begin environment and set alignments and borders */
fputs("\\begin{tabular}{", fout);
- if (opt_border == 2)
+ if (opt_border >= 2)
fputs("| ", fout);
for (i = 0; i < cont->ncolumns; i++)
{
if (opt_border != 0 && i < cont->ncolumns - 1)
fputs(" | ", fout);
}
- if (opt_border == 2)
+ if (opt_border >= 2)
fputs(" |", fout);
fputs("}\n", fout);
- if (!opt_tuples_only && opt_border == 2)
+ if (!opt_tuples_only && opt_border >= 2)
fputs("\\hline\n", fout);
/* print headers */
if ((i + 1) % cont->ncolumns == 0)
{
fputs(" \\\\\n", fout);
+ if (opt_border == 3)
+ fputs("\\hline\n", fout);
if (cancel_pressed)
break;
}
{
printTableFooter *footers = footers_with_default(cont);
- if (opt_border == 2)
+ if (opt_border >= 2)
fputs("\\hline\n", fout);
fputs("\\end{tabular}\n\n\\noindent ", fout);
}
+static void
+print_latex_text_longtable(const printTableContent *cont, FILE *fout)
+{
+ bool opt_tuples_only = cont->opt->tuples_only;
+ unsigned short opt_border = cont->opt->border;
+ unsigned int i;
+ const char *opt_table_attr = cont->opt->tableAttr;
+ const char *next_opt_table_attr_char = opt_table_attr;
+ const char *last_opt_table_attr_char = NULL;
+ const char *const * ptr;
+
+ if (cancel_pressed)
+ return;
+
+ if (opt_border > 3)
+ opt_border = 3;
+
+ if (cont->opt->start_table)
+ {
+ /* begin environment and set alignments and borders */
+ fputs("\\begin{longtable}{", fout);
+
+ if (opt_border >= 2)
+ fputs("| ", fout);
+
+ for (i = 0; i < cont->ncolumns; i++)
+ {
+ /* longtable supports either a width (p) or an alignment (l/r) */
+ /* Are we left-justified and was a proportional width specified? */
+ if (*(cont->aligns + i) == 'l' && opt_table_attr)
+ {
+#define LONGTABLE_WHITESPACE " \t\n"
+
+ /* advance over whitespace */
+ next_opt_table_attr_char += strspn(next_opt_table_attr_char,
+ LONGTABLE_WHITESPACE);
+ /* We have a value? */
+ if (next_opt_table_attr_char[0] != '\0')
+ {
+ fputs("p{", fout);
+ fwrite(next_opt_table_attr_char, strcspn(next_opt_table_attr_char,
+ LONGTABLE_WHITESPACE), 1, fout);
+ last_opt_table_attr_char = next_opt_table_attr_char;
+ next_opt_table_attr_char += strcspn(next_opt_table_attr_char,
+ LONGTABLE_WHITESPACE);
+ fputs("\\textwidth}", fout);
+ }
+ /* use previous value */
+ else if (last_opt_table_attr_char != NULL)
+ {
+ fputs("p{", fout);
+ fwrite(last_opt_table_attr_char, strcspn(last_opt_table_attr_char,
+ LONGTABLE_WHITESPACE), 1, fout);
+ fputs("\\textwidth}", fout);
+ }
+ else
+ fputc('l', fout);
+ }
+ else
+ fputc(*(cont->aligns + i), fout);
+
+ if (opt_border != 0 && i < cont->ncolumns - 1)
+ fputs(" | ", fout);
+ }
+
+ if (opt_border >= 2)
+ fputs(" |", fout);
+
+ fputs("}\n", fout);
+
+ /* print headers */
+ if (!opt_tuples_only)
+ {
+ /* firsthead */
+ if (opt_border >= 2)
+ fputs("\\toprule\n", fout);
+ for (i = 0, ptr = cont->headers; i < cont->ncolumns; i++, ptr++)
+ {
+ if (i != 0)
+ fputs(" & ", fout);
+ fputs("\\small\\textbf{\\textit{", fout);
+ latex_escaped_print(*ptr, fout);
+ fputs("}}", fout);
+ }
+ fputs(" \\\\\n", fout);
+ fputs("\\midrule\n\\endfirsthead\n", fout);
+
+ /* secondary heads */
+ if (opt_border >= 2)
+ fputs("\\toprule\n", fout);
+ for (i = 0, ptr = cont->headers; i < cont->ncolumns; i++, ptr++)
+ {
+ if (i != 0)
+ fputs(" & ", fout);
+ fputs("\\small\\textbf{\\textit{", fout);
+ latex_escaped_print(*ptr, fout);
+ fputs("}}", fout);
+ }
+ fputs(" \\\\\n", fout);
+ /* If the line under the row already appeared, don't do another */
+ if (opt_border != 3)
+ fputs("\\midrule\n", fout);
+ fputs("\\endhead\n", fout);
+
+ /* table name, caption? */
+ if (!opt_tuples_only && cont->title)
+ {
+ /* Don't output if we are printing a line under each row */
+ if (opt_border == 2)
+ fputs("\\bottomrule\n", fout);
+ fputs("\\caption[", fout);
+ latex_escaped_print(cont->title, fout);
+ fputs(" (Continued)]{", fout);
+ latex_escaped_print(cont->title, fout);
+ fputs("}\n\\endfoot\n", fout);
+ if (opt_border == 2)
+ fputs("\\bottomrule\n", fout);
+ fputs("\\caption[", fout);
+ latex_escaped_print(cont->title, fout);
+ fputs("]{", fout);
+ latex_escaped_print(cont->title, fout);
+ fputs("}\n\\endlastfoot\n", fout);
+ }
+ /* output bottom table line? */
+ else if (opt_border >= 2)
+ {
+ fputs("\\bottomrule\n\\endfoot\n", fout);
+ fputs("\\bottomrule\n\\endlastfoot\n", fout);
+ }
+ }
+ }
+
+ /* print cells */
+ for (i = 0, ptr = cont->cells; *ptr; i++, ptr++)
+ {
+ /* Add a line under each row? */
+ if (i != 0 && i % cont->ncolumns != 0)
+ fputs("\n&\n", fout);
+ fputs("\\raggedright{", fout);
+ latex_escaped_print(*ptr, fout);
+ fputc('}', fout);
+ if ((i + 1) % cont->ncolumns == 0)
+ {
+ fputs(" \\tabularnewline\n", fout);
+ if (opt_border == 3)
+ fputs(" \\hline\n", fout);
+ }
+ if (cancel_pressed)
+ break;
+ }
+
+ if (cont->opt->stop_table)
+ fputs("\\end{longtable}\n", fout);
+}
+
+
static void
print_latex_vertical(const printTableContent *cont, FILE *fout)
{
else
print_latex_text(cont, fout);
break;
+ case PRINT_LATEX_LONGTABLE:
+ if (cont->opt->expanded == 1)
+ print_latex_vertical(cont, fout);
+ else
+ print_latex_text_longtable(cont, fout);
+ break;
case PRINT_TROFF_MS:
if (cont->opt->expanded == 1)
print_troff_ms_vertical(cont, fout);