Compare commits

..

No commits in common. "f6741c72e1333d717e2e508dcbaf5d4ff4dd8782" and "124f441a00289788554958caee871641887db7be" have entirely different histories.

3 changed files with 461 additions and 473 deletions

926
po/de.po

File diff suppressed because it is too large Load Diff

View File

@ -3110,7 +3110,7 @@ void Paragraph::latex(BufferParams const & bparams,
OutputParams rp = runparams;
rp.free_spacing = style.free_spacing;
rp.local_font = &current_font;
rp.intitle |= style.intitle;
rp.intitle = style.intitle;
// Two major modes: LaTeX or plain
// Handle here those cases common to both modes

View File

@ -346,10 +346,10 @@ void InsetLabel::latex(otexstream & os, OutputParams const & runparams_in) const
if (runparams_in.postpone_fragile_stuff)
runparams_in.post_macro += command;
else {
// protect label in \thanks notes (#9404)
// protect label in moving argument (#9404),
// but not in subfloat caption (#11950)
if (runparams.moving_arg
&& runparams.intitle
&& runparams.inFootnote)
&& runparams.inFloat != OutputParams::SUBFLOAT)
os << "\\protect";
os << command;
}