mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-10 20:04:46 +00:00
change order of ^ and _ in LaTeX output
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2860 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
ba61c3aa4c
commit
30d9929153
@ -353,17 +353,17 @@ void MathAtom::write(std::ostream & os, bool fragile) const
|
||||
} else
|
||||
os << "{}";
|
||||
|
||||
if (up()) {
|
||||
os << "^{";
|
||||
up()->write(os, fragile);
|
||||
os << "}";
|
||||
}
|
||||
|
||||
if (down()) {
|
||||
os << "_{";
|
||||
down()->write(os, fragile);
|
||||
os << "}";
|
||||
}
|
||||
|
||||
if (up()) {
|
||||
os << "^{";
|
||||
up()->write(os, fragile);
|
||||
os << "}";
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user