我的反斜杠去哪儿了?

我的反斜杠去哪儿了?

当我尝试使用更“老套”的方法获取文字“特殊字符”(例如反斜杠或括号)时,我得到的是不同的字符:反斜杠似乎是开引号,左括号是破折号,右括号是闭引号。我的特殊字符怎么了?

\documentclass{minimal}

\begin{document}

\char`\\
\char`\{
\char`\}

\end{document}

产生:("-"只有两个"s 不同)。

答案1

您的特殊字符位于默认加载的错误字体表中!使用不同的字符集打印它们将恢复原状!

\documentclass{minimal}
\begin{document}
  \texttt{\char`\\}\\
  \texttt{\char`\{}\\
  \texttt{\char`\}}\\
\end{document}

为什么小写数学字母会显示为随机符号?寻求有关如何打印字体表的一些帮助。

答案2

正如 Yiannis 所写,这是字体表。但是,使用fontenc,您可以让它们按您想要的方式显示。

\documentclass{minimal}
\usepackage[T1]{fontenc}
\begin{document}
\char`\\
\char`\{
\char`\}
\end{document}

相关内容