Fix inpreamble styles.

This commit is contained in:
Juergen Spitzmueller 2017-12-26 11:40:58 +01:00
parent 626f607db7
commit e55e9c842f

View File

@ -2426,7 +2426,7 @@ void Paragraph::latex(BufferParams const & bparams,
if (empty()) {
// For InTitle commands, we have already opened a group
// in output_latex::TeXOnePar.
if (style.isCommand() && style.intitle) {
if (style.isCommand() && (!style.intitle || style.inpreamble)) {
os << '{';
++column;
}
@ -2466,7 +2466,7 @@ void Paragraph::latex(BufferParams const & bparams,
}
// For InTitle commands, we have already opened a group
// in output_latex::TeXOnePar.
if (style.isCommand() && !style.intitle) {
if (style.isCommand() && (!style.intitle || style.inpreamble)) {
os << '{';
++column;
}