ラテックスで太い太字フォントを取得する方法

ラテックスで太い太字フォントを取得する方法

\mathbf w などの \mathbf を使用して文字や記号を太字にできることはわかっていますが、以下のように 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. 数学はComputer Modernで、テキストはTimesで学びます。

mathptmxをに切り替えるとtimes、出力は次のようになります。

ここに画像の説明を入力してください

少しは良くなりましたが、最先端というわけではありません。

他の選択肢としては\usepackage{times}

mtpro2lite)バージョン

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

ここに画像の説明を入力してください

newtx

\usepackage{newtx}

ここに画像の説明を入力してください

stix2

\usepackage{stix2}

ここに画像の説明を入力してください

関連情報