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

(cherry picked from commit 6d05e78168)
This commit is contained in:
Juergen Spitzmueller 2021-01-29 15:45:54 +01:00
parent 25b4920fef
commit f05f70f05b
2 changed files with 4 additions and 0 deletions

View File

@ -72,6 +72,8 @@ public:
///
void addToToc(DocIterator const & di, bool output_active,
UpdateType utype, TocBackend & backend) const;
/// This assures we never output \maketitle in table cells
bool isInTitle() const { return true; }
private:
/// unimplemented
InsetTableCell();

View File

@ -50,6 +50,8 @@ What's new
- Fix output of bibliography environment to make backref work
(bug 12041).
- Fix tables in title.
* USER INTERFACE