嗯,非常漂亮。
我想知道是否有任何方法可以改变转义特殊字符的默认样式,因为有时我发现它们有点“不合适”,尤其是\&
,它看起来比平常的稍微大一些、更弯曲一些&
。
我知道这不是那么重要,但我发现它在美学方面很不吸引人。
答案1
默认情况下, \&
只是&
来自当前字体 tex 无法控制它。因此,选择的形状&
就像选择的形状一样g
:你只需要选择一个你喜欢的字体。
但是如果您确实想\&
在保持相同字体的情况下进行更改那么...
\documentclass{article}
\begin{document}
\catcode`\&=12 % make & a normal punctuation character not a table cell separator
abc \& xyz is the same as abc & xyz.
Like g it shows a lot of variation
g & \textit{g &} \textsf{g &} {\fontfamily{ptm}\selectfont g &}
But being a command you can redefin it to be anything
0 abc \& xyz
1\renewcommand\&{{\tiny&}} abc \& xyz
2\renewcommand\&{\raisebox{-.3ex}{&}} abc \& xyz
3\renewcommand\&{{\large\bfseries AND}} abc \& xyz
\end{document}