如何在乳胶上获得更粗/更粗的粗体字体

如何在乳胶上获得更粗/更粗的粗体字体

我知道我可以使用 \mathbf 将字母或符号变为粗体,例如 \mathbf w,它给出下面的 w,但是我怎样才能获得像下面的 x 和 t 那样的字母粗体呢?

在此处输入图片描述

答案1

你实际上想要重现这一点。

在此处输入图片描述

\documentclass[11pt]{article}
\usepackage{amsmath}
\usepackage{times}

\numberwithin{equation}{section}

\newcommand{\bsf}[1]{\textnormal{\sffamily\bfseries #1}}

\begin{document}

%% the following two lines just to faithfully reproduce the picture
\setcounter{section}{1}
\setcounter{equation}{59}\refstepcounter{equation}\label{previous}
%%

We now use the training data $\{\bsf{t}|\bsf{x}\}$ to determine the values
of the unknown parameters $\mathbf{w}$ and $\beta$ by maximum likelihood. 
If the data are assumed to be drawn independently from the 
distribution~\eqref{previous}, then the likelihood function is given by
\[ \label{another}
p(\bsf{t}|\bsf{x},\mathbf{w},\beta)=
\prod_{n=1}^{N}\mathcal{N}(t_{n}|y(x_{n},\mathbf{w}),\beta^{-1}).
\]

\end{document}

为什么不?

  1. 无衬线字母比衬线字母高得多。
  2. 数学在《计算机现代》中,文本在《时代》中。

如果我切换到mathptmx而不是times,输出将是

在此处输入图片描述

稍微好一点,但不是最先进的。

其他选择是替换\usepackage{times}

mtpro2(在lite)版本中

\usepackage{newtxtext}
\usepackage[lite]{mtpro2}

在此处输入图片描述

newtx

\usepackage{newtx}

在此处输入图片描述

stix2

\usepackage{stix2}

在此处输入图片描述

相关内容