如何在 Miktex 中使用印度卢比符号

如何在 Miktex 中使用印度卢比符号

我正在使用 Miktex 和 texstudio 进行排版。我必须在 tex 文件中使用这个印度卢比符号。但我无法在我的 texstudio 中使用它。

我如何使用它。

我正在使用什么??

  1. 我正在使用Windows 8.1企业版。

  2. MiKTeX 用于 LaTeX,TeXStudio 作为编辑器。

当我在 MiKTeX 中时,出现此错误:

Process started: pdflatex.exe -synctex=1 -interaction=nonstopmode "integers-decimal-rational".tex
Trying to make PK font tfrupee at 720 DPI...
Running miktex-makemf.exe...
miktex-makemf: The tfrupee source file could not be found. Running ttf2pk.exe...
miktex-makepk: PK font tfrupee could not be created.
Process exited with error(s)

答案1

\documentclass{article}
\usepackage{tfrupee}   %% for rupee symbol
\begin{document}
  \rupee
\end{document}

在此处输入图片描述

fontawesome软件包也提供了这个符号:

\documentclass{article}
\usepackage{fontawesome}
\begin{document}
  \faRupee
\end{document}

相关内容