texttt 中的括号不会被解释为括号,而是被解释为 f 和 g

texttt 中的括号不会被解释为括号,而是被解释为 f 和 g

当我复制粘贴花括号(又名大括号)从\texttt{}模式来看,它们被解释为FG。我该怎么做才能得到正确的花括号?我试过使用,\string但这似乎不允许跨多行拆分


这是我的最小工作示例

\documentclass{article}
\usepackage{empheq}
\newcommand*\widefbox[1]{\fbox{\hspace{2em}#1\hspace{2em}}}

\begin{document}

Compiles but gives "f g"-problem:
\begin{empheq}[box=\fbox]{align*}
&\texttt{\{}\\
&\texttt{something}\\
&\texttt{\}} 
\end{empheq}

Compiles and gives proper curly brackets, but I need three lines not one:
\begin{empheq}[box=\fbox]{align*}
\texttt{\string{ something \string}}
\end{empheq}

\iffalse
Does not compile:
\begin{empheq}[box=\fbox]{align*}
\texttt{\string{ \\
 something \\
 \string}}
\end{empheq}
\fi

\end{document} 

答案1

我无法重现该问题;另一方面,如果您想让括号变成等宽字体,您可以加载

\usepackage[T1]{fontenc}

或者输入为

\texttt{\symbol{`\{}}

\texttt{\symbol{`\}}}

相关内容