在 microtype 文档中,它建议使用与所选字体相匹配的设置。我使用 libertine 字体。有人知道有哪些选项或设置特别适合此字体吗?
答案1
microtype
我为和建立了一些初步配置文件,libertine
供 和 一起使用pdflatex
。它们在我的 Bitbucket 网站上公开提供。
它们都有名称mt-<fontname>.cfg
,如果放置在本地 TEXMF 树中的合适位置,就会被 自动拾取microtype
。这些文件是远的并非完整,而且肯定需要很多改进,如以下示例文档的输出所示。尤其是突出列表仍然或多或少只是 Computer Modern 的列表:
% part of `mt-LinuxLibertineT-OsF.cfg':
\SetProtrusion[name=LLO,load=cmr-T1]{
encoding = *,
family = LinuxLibertineT-OsF
}{
{,} = { ,600},
- = {400,600},
? = {200,300}
}
不幸的是,我的排版知识仅基于阅读几本书和我未经训练的眼睛。如果有更有经验的人愿意改进这些文件,我会非常高兴。
\documentclass[twocolumn]{scrartcl}
\usepackage[english]{babel}
\usepackage[T1]{fontenc}
\usepackage{libertine}
\usepackage{microtype}
% this is the contents of my `microtype.cfg':
% \DeclareMicrotypeSet{scshape}{
% encoding = {*} ,
% shape = {sc,scit,si}
% }
% \DeclareMicrotypeSet{romansans}{
% encoding = {*},
% family = {rm*,sf*}
% }
\microtypesetup{
tracking = scshape ,
protrusion = romansans ,
expansion = romansans
}
\usepackage{blindtext}
\begin{document}
\blinddocument
\end{document}