如何在乳膠上獲得更粗/更粗的字體

如何在乳膠上獲得更粗/更粗的字體

我知道我可以使用 \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}

在此輸入影像描述

相關內容