Do not output \maketitle in table cells if the table is in the title

This commit is contained in:
Juergen Spitzmueller 2021-01-29 15:45:54 +01:00
parent 911b01a3ca
commit 6d05e78168

View File

@ -93,6 +93,8 @@ public:
bool allowMultiPar() const override { return !isMultiRow && (!isMultiColumn || isFixedWidth); }
///
bool canPaintChange(BufferView const &) const override { return false; }
/// This assures we never output \maketitle in table cells
bool isInTitle() const override { return true; }
private:
///
InsetTableCell() = delete;