yhmath
在文档类的 17pt 字母大小的文档中调用该包时我遇到了问题extarticle
。
指数与根号的线相交。
只需使用一个字符就可以轻松避免它phantom
。
使用 11pt 尺寸时该问题不再发生。
\documentclass[17pt]{extarticle}
\usepackage{yhmath}
\begin{document}
\begin{equation}
\sqrt[n]{\frac{a}{b}} %the problem is showed here
\end{equation}
\begin{equation}
\sqrt[3\phantom{1}]{\frac{10}{5}} %the problem is solved here
\end{equation}
\end{document}
我向你展示这个问题:
由于我是新手,我不知道是否要向软件包的创建者报告以修复它,或者只是在这里留下消息让专家来判断我是对还是错。
目的只是为了帮助其他用户。
答案1
您可以使用 来amsmath
调整根订单的放置,\leftroot
并且\uproot
:
\documentclass[17pt]{extarticle}
\usepackage{yhmath}
\begin{document}
\begin{equation}
\sqrt[\leftroot{3}\uproot{3}n]{\frac{a}{b}} %the problem is showed here
\end{equation}
\begin{equation}
\sqrt[\leftroot{3}\uproot{3}3]{\frac{10}{5}} %the problem is solved here
\end{equation}
\end{document}
答案2
- 我建议您使用默认字体大小。
- 请更改纸张尺寸。
- 这样,您就不必对定位进行微观管理。
- 效果是一样的(对于您的用例:演示)。
- 这不太可能产生意想不到的副作用(
beamer
文档类也使用这种方法)。
\documentclass{article}
\usepackage[paperwidth = 120mm, paperheight = 90 mm, margin=5mm]{geometry}
\begin{document}
\begin{equation}
\sqrt[n]{\frac{a}{b}} % NO problem is shown here
\end{equation}
\begin{equation}
\sqrt[3\phantom{1}]{\frac{10}{5}} % not needed anymore
\end{equation}
\end{document}