我有以下一段代码:
\documentclass{article}
\usepackage{textcomp}
\begin{document}
\begin{equation}
\Upsilon\textquotesingle^{hr}
\end{equation}
\end{document}
其输出中两个单引号看起来都呈斜体:
相反,有可能有一个直接的引用,就像这样:Y'
我已经应用了以下问题,但似乎它不起作用equation
:直接引号?
答案1
如果您确实想要垂直引用,我建议使用宏\textup
。
\documentclass{article}
\usepackage{textcomp}
\newcommand{\quot}{\textup{\textquotesingle}}
\begin{document}
\begin{equation}
\Upsilon\quot^{hr}
\end{equation}
\end{document}
或者,您可以使用
\Upsilon^{\quot hr}
,它会产生
\quot
还有一个选择是在内部定义\raisebox
:
\newcommand{\quot}{\raisebox{.3ex}{\textup\textquotesingle}{}}
然后\Upsilon\quot^{hr}
产生
当然,你可以通过改变来增加或减少.3ex
。