mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 10:00:33 +00:00
parent
bd879efaa8
commit
961b79975c
@ -2428,7 +2428,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;
|
||||
}
|
||||
@ -2468,7 +2468,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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user