在數學模式下使用 tfrupee 中的印度盧比符號

在數學模式下使用 tfrupee 中的印度盧比符號

如果我處於數學模式,我似乎無法使用 tfrupee 套件使用盧比符號。輸出產生一條垂直線而不是符號。對於如何解決這個問題,有任何的建議嗎?

\documentclass[11pt,letterpaper]{article}
\usepackage{tfrupee}
\begin{document}

\begin{enumerate}
    \item Current Fuel Consumption ($\frac{Volume}{Time}$)  \& Cost of Fuel ($\frac{\rupee}{Volume}$)
\end{enumerate}

\end{document}

上面的輸出

答案1

此解決方案會檢查是否處於數學模式,並自動選擇符合的命令。

盧比

\documentclass[11pt,letterpaper]{article}
\usepackage{amsmath}
\usepackage{tfrupee}

\let\orupee\rupee
\def\rupee{\ifmmode\text{\orupee}\else\orupee\fi}

\begin{document}

\begin{enumerate}
    \item a \rupee
    \item Current Fuel Consumption ($\frac{Volume}{Time}$)  \& Cost of Fuel ($\frac{\rupee}{Volume}$)
\end{enumerate}

\end{document}

相關內容