From 9de369aeabb484175f8784c41dbad0592b5db91e Mon Sep 17 00:00:00 2001 From: Ludovic Court`es Date: Mon, 11 Jun 2007 14:08:23 +0000 Subject: Lout engine: Work around bug with tables within floating figures. * src/guile/skribilo/engine/lout.scm (table): Check whether N is within a figure, in which case `@OneRow' must be preprended. git-archimport-id: lcourtes@laas.fr--2006-libre/skribilo--devo--1.2--patch-72 --- src/guile/skribilo/engine/lout.scm | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'src') diff --git a/src/guile/skribilo/engine/lout.scm b/src/guile/skribilo/engine/lout.scm index 664e046..6a8486f 100644 --- a/src/guile/skribilo/engine/lout.scm +++ b/src/guile/skribilo/engine/lout.scm @@ -2200,6 +2200,14 @@ ;; Mark each row with vertical spanning information (lout-table-mark-vspan! n) + (if (find1-up (lambda (n) + (is-markup? n 'figure)) + n) + ;; Work around a bug preventing `@VSpan' from working + ;; properly within floating figures: + ;; http://article.gmane.org/gmane.comp.type-setting.lout/1090 . + (display "\n@OneRow")) + (display "\n@Tbl # table\n") (if (number? border) -- cgit v1.2.3