라텍스에서 더 두껍고 두꺼운 굵은 글꼴을 얻는 방법

라텍스에서 더 두껍고 두꺼운 굵은 글꼴을 얻는 방법

\mathbf w와 같은 \mathbf를 사용하여 문자나 기호를 굵게 표시할 수 있다는 것을 알고 있습니다. 그러면 아래에 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. 수학은 Computer Modern에 있고 텍스트는 Times에 있습니다.

mathptmx대신 으로 전환하면 times출력은 다음과 같습니다.

여기에 이미지 설명을 입력하세요

조금 나아졌지만 실제로는 최첨단은 아닙니다.

다른 선택은 다음 \usepackage{times}으로 대체하는 것입니다.

mtpro2(에서 lite) 버전

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

여기에 이미지 설명을 입력하세요

newtx

\usepackage{newtx}

여기에 이미지 설명을 입력하세요

stix2

\usepackage{stix2}

여기에 이미지 설명을 입력하세요

관련 정보