mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-12 22:14:35 +00:00
Fix problem with unbalanced braces in XeTeX output (bug #8765)
This commit is contained in:
parent
0f72029c9b
commit
2dfe540371
@ -284,6 +284,9 @@ int Font::latexWriteStartChanges(odocstream & os, BufferParams const & bparams,
|
||||
tmp += "{";
|
||||
os << from_ascii(tmp);
|
||||
count += tmp.length();
|
||||
} else {
|
||||
os << '{';
|
||||
count += 1;
|
||||
}
|
||||
} else if (language()->babel() != base.language()->babel() &&
|
||||
language() != prev.language()) {
|
||||
|
@ -52,6 +52,8 @@ What's new
|
||||
|
||||
* DOCUMENT INPUT/OUTPUT
|
||||
|
||||
- Fix problem with unbalanced braces in XeTeX output (bug 8765).
|
||||
|
||||
- Added h5 and h6 as tags for Paragraph and Subparagraph.
|
||||
|
||||
- Include alt tag when exporting math as images (bug 8746).
|
||||
|
Loading…
Reference in New Issue
Block a user