有没有什么方法可以全局改善 sffamily 的字距调整?(例如在我的文档序言中;我真的不想编辑字体文件或系统设置)
这种Tw
组合看起来很糟糕,Two
甚至更糟。我想在文档标题的某个地方设置它,而不必修复每个实例。
我不是专业的印刷工,所以我不知道应该使用什么。
\documentclass[border=1mm]{standalone}
\usepackage{tikz}
\pagecolor{white}
\usetikzlibrary{positioning}
\begin{document}
\begin{tikzpicture}[every node/.style={font=\sffamily}]
\node[align=left] at (0,0) {One is the loneliest number \\ Two can be as bad as one \\ Three Dog Night};
\node[align=left] at (0,-2) {with manual kerning:\\One is the loneliest number \\ T{\kern -0.1em}w{}o can be as bad as one \\ Three Dog Night};
\end{tikzpicture}
\end{document}