mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
Recent multirow finally allows multiple paragraphs
This commit is contained in:
parent
22ee249c3e
commit
9dd71b9e4a
@ -577,7 +577,11 @@
|
||||
%%% Specific package versions
|
||||
% This only works if the package has been loaded before
|
||||
\IfFileExists{babel.sty}{\RequirePackage{babel}}{}
|
||||
% This introduces \babelfonts
|
||||
\TestPackageVersion{babel}{2017/11/03}
|
||||
\IfFileExists{multirow.sty}{\RequirePackage{multirow}}{}
|
||||
% This introduces multiple paragraphs in multirows
|
||||
\TestPackageVersion{multirow}{2021/01/29}
|
||||
|
||||
%%% Document classes
|
||||
% The list of layout files has been put in this file here by the
|
||||
|
@ -3198,7 +3198,7 @@ void Tabular::TeXRow(otexstream & os, row_type row,
|
||||
} else if (!isPartOfMultiRow(row, c)) {
|
||||
if (!runparams.nice)
|
||||
os.texrow().start(par.id(), 0);
|
||||
if (isMultiRow(cell))
|
||||
if (isMultiRow(cell) && !LaTeXFeatures::isAvailable("multirow-2021/01/29"))
|
||||
newrp.isNonLong = true;
|
||||
inset->latex(os, newrp);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user