我目前正在尝试使用 构建一些二维码pst-barcode
。我将使用它来传达我的联系方式。因此,我使用了该\psbarcode
命令。
梅威瑟:
\documentclass{standalone}
\usepackage[T1]{fontenc}
\usepackage{pstricks}
\usepackage{pst-barcode}
\pagestyle{empty}
\begin{document}
\begin{pspicture}(1.2in,1.2in)
\psbarcode{MECARD\string:N\string:Doé,John\string;\string;}%
{eclevel=L width=1.161 height=1.161}{qrcode}
\end{pspicture}
\end{document}
不幸的是,我的手机无法很好地识别口音é
。我尝试用以下代码替换代码
\begin{pspicture}(1.2in,1.2in)
\psbarcode{MECARD\string:N\string:Do^233,John\string;\string;}%
{eclevel=L width=1.161 height=1.161}{qrcode}
\end{pspicture}
但是在我的手机上显示的结果是Doe^233
,ascii码好像没有转换成相关的字符。
我也尝试过以下代码
\begin{pspicture}(1.2in,1.2in)
\psbarcode{BEGIN:VCARD
N:Do^233;John^010
TEL;WORK:+1 ^040234^041 567-8910^010
EMAIL:[email protected]^010
END:VCARD}
{eclevel=L width=1.161 height=1.161 parse}{qrcode}
\end{pspicture}
但是我的手机无法识别 Vcard。
因此,我认为我的手机在读取二维码和识别特殊字符方面存在一些问题,但哪个 LaTeX 代码可以处理重音呢?