\addfontfeatures 属性在下一个 fontspec 命令后丢失(如 \textbf{})

\addfontfeatures 属性在下一个 fontspec 命令后丢失(如 \textbf{})
  1. 我正在使用 Linux Libertine 字体(来自系统)XeTeX.
  2. 在正文中,我使用OldStyle数字,而我想Lining在表格中使用数字。
  3. 我正在排版包含一些带\bfseries文本的单元格的表格。

不过该\addfontfeature设置只适用于常规文本,不适用于 中设置的文本\bfseries

平均能量损失

\documentclass{scrartcl}
\usepackage{array,booktabs,fontspec}
\setmainfont[Ligatures={Common},Numbers={OldStyle}]{Linux Libertine O}

\begin{document}
\begin{table}
  \addfontfeature{Numbers={Lining}}
  \begin{tabular}{>{\bfseries}ll} \toprule
    3 & 3 \\ \bottomrule
  \end{tabular}
\end{table}
\end{document}

得出:

<code>\bfseries</code> 中的数字仍为 <code>OldStyle</code>

如何设置\addfontfeatures{Numbers={Lining}}应用于组中的所有文本?

答案1

无需表格即可重现此问题:

\documentclass{scrartcl}
\usepackage{array,booktabs,fontspec}
\setmainfont[Ligatures={Common},Numbers={OldStyle}]{Linux Libertine O}

\begin{document}

1234567890

{\addfontfeatures{Numbers=Lining}

1234567890

\normalfont 1234567890

\bfseries 1234567890}

1234567890

\end{document}

在此处输入图片描述

如您所见,调用将\normalfont功能重置为开头所述的状态。该\bfseries命令会使\fontseries{\bfdefault}\selectfont所选功能无效。

\addfontfeatures我的建议是尽可能避免,即使是以一些代码重复为代价。

\documentclass{scrartcl}
\usepackage{array,booktabs,fontspec}
\setmainfont[Ligatures={Common},Numbers={OldStyle}]{Linux Libertine O}
\newfontfamily{\mainlining}[Ligatures=Common,Numbers=Lining]{Linux Libertine O}

\begin{document}

\begin{table}
\mainlining

\begin{tabular}{>{\bfseries}ll}
\toprule
3 & 3 \\
\bottomrule
\end{tabular}

\end{table}

\end{document}

在此处输入图片描述

答案2

使用

 \documentclass{scrartcl}
 \usepackage{array,booktabs,fontspec}
 \usepackage[oldstyle]{libertine}
 \defaultfontfeatures{Ligatures=Common}
 \begin{document}

\begin{table}[!htb]
\libertineLF
 \begin{tabular}{>{\bfseries}ll} \toprule
            123 & 31234 \\ \bottomrule
 \end{tabular}
\end{table}

 \end{document}

在此处输入图片描述

相关内容