-
Notifications
You must be signed in to change notification settings - Fork 30
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
subscript position #645
Comments
in all flavours of tex the subscript offset is a parameter set by the font metrics (the Math table in opentype fonts) so if you select a different font the parameters change. Here you are switching between computer modern tfm fonts and Latin Modern math Opentype. |
I have considered this reason, but I switched several fonts and found that they all moved down to varying degrees. So I want to ask if there is a way to prevent it from moving down when using XITS Math, and where can I control the amount of movement? @davidcarlisle |
It seems to have nothing to do with the font. The same font, but the subscript position is different after using the unicode-math macro package. |
When you use the \documentclass{article}
% \usepackage{unicode-math}
% \setmathfont{XITS Math}
\usepackage{stix}
\begin{document}
$A_i$\par
$W_i$\par
$A^i$\par
$W^i$
\end{document} |
A I wrote originally: one of your examples is using computer modern math italic (Knuth's original 8 bit tfm font metrics) and your second example is using Latin Modern OpenType. So completely different font technology. |
Description
After using
\usepackage{unicode-math}
, the subscript position moves down.Add info or delete as appropriate:
Minimal example demonstrating the issue
result is on the left.
then change the code
result is on the right, which the subscript position is moves down.
The text was updated successfully, but these errors were encountered: