为什么 baskervald(x) 与默认一样是半粗体?

为什么 baskervald(x) 与默认一样是半粗体?

baskervald(x)包是字体的克隆Baskerville。如果我将这张图片(摘自一本物理书)与它进行比较

在此处输入图片描述

和我的MWE

\documentclass[12pt]{article}
\usepackage{baskervald}
\usepackage[baskervaldx]{newtxmath}
\begin{document} 
\[\Delta t=t_f-t_i\]
\end{document}

我得到了这个:

在此处输入图片描述

在数学模式下,是否有可能使字符变得更轻,就像第一张图片那样?

答案1

数学中使用的字体似乎并不比文本字体更粗,我更改了示例以便于比较。用于和的字体与\mathrm直立\mathit和斜体的文本相同,用于默认数学斜体的字体正如预期的那样具有更宽的侧边距,但没有更粗。

在此处输入图片描述

\documentclass[12pt]{article}
%\usepackage{librebaskerville}
\usepackage{baskervald}
\usepackage[baskervaldx]{newtxmath}
\showoutput
\begin{document} 
This is an example.

$\mathrm{This\ is\ an\ example.}$

\textit{This is an example.}

$This\ is\ an\ example.$

$\mathit{This\ is\ an\ example.}$

\end{document}

pdffonts将 PDF 中的字体报告为

name                                 type              encoding         emb sub uni object ID
------------------------------------ ----------------- ---------------- --- --- --- ---------
VCRPNQ+BaskervaldADFStd-Regular      Type 1            Custom           yes yes no       4  0
GWOGHS+rtxmi                         Type 1            Builtin          yes yes no       5  0
LNASWP+BaskervaldADFStd-Italic       Type 1            Custom           yes yes no       6  0
UCLGTI+Baskervaldx-Ita               Type 1            Custom           yes yes no       7  0

相关内容