diff options
author | John MacFarlane <jgm@berkeley.edu> | 2021-12-28 16:06:25 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2021-12-28 16:06:25 -0800 |
commit | 7d56650e0137daf504fdd79187811f091d4eee37 (patch) | |
tree | 68c24291a945542e2b1cdfef0f085fad247d9feb /test/writer.opendocument | |
parent | 8bd22270c8ac5d4f76164f8c5854ba26e901e161 (diff) | |
download | pandoc-7d56650e0137daf504fdd79187811f091d4eee37.tar.gz |
OpenDocument writer: fix vertical align bug with display math.
Previously some displayed formulas would be floated above
a preceding text line. This is fixed by setting vertical-rel
to 'text' rather than 'paragraph-content'.
Closes #7777.
Diffstat (limited to 'test/writer.opendocument')
-rw-r--r-- | test/writer.opendocument | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/writer.opendocument b/test/writer.opendocument index 9e6ef336e..3095cef41 100644 --- a/test/writer.opendocument +++ b/test/writer.opendocument @@ -1017,7 +1017,7 @@ <style:style style:name="T6" style:family="text"><style:text-properties style:text-position="super 58%" /></style:style> <style:style style:name="T7" style:family="text"><style:text-properties fo:font-style="italic" style:font-style-asian="italic" style:font-style-complex="italic" style:text-position="super 58%" /></style:style> <style:style style:name="T8" style:family="text"><style:text-properties style:text-position="sub 58%" /></style:style> - <style:style style:name="fr2" style:family="graphic" style:parent-style-name="Formula"><style:graphic-properties style:vertical-pos="middle" style:vertical-rel="paragraph-content" style:horizontal-pos="center" style:horizontal-rel="paragraph-content" style:wrap="none" /></style:style> + <style:style style:name="fr2" style:family="graphic" style:parent-style-name="Formula"><style:graphic-properties style:vertical-pos="middle" style:vertical-rel="text" style:horizontal-pos="center" style:horizontal-rel="paragraph-content" style:wrap="none" /></style:style> <style:style style:name="fr1" style:family="graphic" style:parent-style-name="Formula"><style:graphic-properties style:vertical-pos="middle" style:vertical-rel="text" /></style:style> <style:style style:name="P1" style:family="paragraph" style:parent-style-name="Quotations"> <style:paragraph-properties fo:margin-left="0.5in" fo:margin-right="0in" fo:text-indent="0in" style:auto-text-indent="false" /> |