mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-25 10:58:52 +00:00
Longtable: only output the caption contents in a caption row.
Fixes: #10791
(cherry picked from commit 538b38f78c
)
This commit is contained in:
parent
3561caa3a1
commit
7c8d167f8e
@ -33,6 +33,7 @@
|
||||
#include "DispatchResult.h"
|
||||
#include "FuncRequest.h"
|
||||
#include "FuncStatus.h"
|
||||
#include "InsetIterator.h"
|
||||
#include "InsetList.h"
|
||||
#include "Language.h"
|
||||
#include "LaTeXFeatures.h"
|
||||
@ -2652,6 +2653,17 @@ void Tabular::TeXRow(otexstream & os, row_type row,
|
||||
tail.setMacrocontextPositionRecursive(dit);
|
||||
tail.latex(os, newrp);
|
||||
}
|
||||
} else if (ltCaption(row)) {
|
||||
// Inside longtable caption rows, we must only output the caption inset
|
||||
// with its content and omit anything outside of that (see #10791)
|
||||
InsetIterator it = inset_iterator_begin(*const_cast<InsetTableCell *>(inset));
|
||||
InsetIterator i_end = inset_iterator_end(*const_cast<InsetTableCell *>(inset));
|
||||
for (; it != i_end; ++it) {
|
||||
if (it->lyxCode() != CAPTION_CODE)
|
||||
continue;
|
||||
it->latex(os, runparams);
|
||||
break;
|
||||
}
|
||||
} else if (!isPartOfMultiRow(row, c)) {
|
||||
if (!runparams.nice)
|
||||
os.texrow().start(par.id(), 0);
|
||||
|
Loading…
Reference in New Issue
Block a user