我正在寻找一种字体,用于标题并与拉丁现代字体搭配,拉丁现代字体对于正文来说是不可替代的。我特别希望得到无衬线字体系列的建议,但每一条建议都值得赞赏。
答案1
Latin Modern 是一个完整的字体系列,包括 serif、sans、typewriter 和一些其他字体系列。
以下实际上是拉丁现代的一个相对较小的样本:
\documentclass{article}
\usepackage{cfr-lm,microtype}
\begin{document}
\newcommand\dog{The quick brown fox jumped over the lazy dog.}
\dog
\textbf{\dog}
\textsc{\dog}
\textsi{\dog}
\textit{\dog}
\textui{\dog}
{\normalfont\fontfamily{clmqs}\selectfont
\dog
\bfseries\dog}
{\sffamily\dog
\bfseries\dog
\fontseries{sbc}\selectfont\dog}
{\ttfamily\dog
\bfseries\dog
\lgweight\dog}
{\tmstyle\dog
\bfseries\dog
\lgweight\dog
\cdwidth\dog}
{\tistyle\dog
\itshape\dog}
\end{document}