如何使花括号 { } 变为斜体?
我尝试:
{\it Method \rightarrow \{\ \!"EquationSimplification" \rightarrow "Solve"\}}
但它不起作用。括号不在 .pdf 输出中...
答案1
如果尽管芭芭拉发表了评论,但您确实想要斜体花括号,则可能需要以下解决方案之一:
\documentclass{article}
\usepackage{mathtools}
\usepackage[T1]{fontenc}
\begin{document}
Text mode with arrows in maths mode:
{\itshape
Method $\rightarrow$ \{\ ``EquationSimplification'' $\rightarrow$ ``Solve'' \}
}
Maths mode:
\[
Method \rightarrow \text{\itshape \{}\ \!``EquationSimplification" \rightarrow ``Solve" \text{\itshape \}}
\]
\end{document}
我不清楚您是否真的希望Method
等处于数学模式。如果不想,您\text{}
也可以在数学模式下使用文本。