使用悬挂标点符号保持视觉边距

使用悬挂标点符号保持视觉边距

实现绞刑引号,我在序言中更改了它们的突出设置:

\documentclass{minimal}

\setlength{\parindent}{0cm}
\usepackage{luatextra}
  \setmainfont{Times}
\usepackage{microtype}
  {
  \SetProtrusion{encoding=EU2}
  {\textquotedblleft={1000,},\textquotedblright={,1000}}
  }

\begin{document}

This minimal instance\\
of a left-side margin\\
“should help”\\
should help\\
to provide an example\\
of the issues faced\\
“of the issues faced”\\
with optical alignment\\
and hanging punctuation.

\end{document}

由于microtype只对最靠近边距的字形执行突出处理,因此使用此方法时,与悬挂引号相邻的每个字形都不会突出。我希望在文本块中保持视觉边距对齐,并将悬挂引号的相邻字形突出以与文本块对齐。

有没有办法将适当的突出部分应用于这些相邻的字形?它不能是特定于字体的,因为我想将相同的设置应用于任何字体。

相关内容