[Tex/LaTex] How to change the greek symbol $\nu$ into upright bold

font-encodingsfontsfontsize

How can I change the font of the Greek symbol \nu into upright bold?

Best Answer

The Idea

Using the upgreek package gives you access to the upright Greek symbols. The bm package defines commands to access bold math symbols.

The Code

\documentclass{article}

\usepackage{upgreek}

\usepackage{newtxtext,newtxmath}
\usepackage{bm} 

\begin{document}

Everyday $\nu$: $\nu$

Upright $\nu$: $\upnu$

Upright bold $\nu$ using the \verb@\mathbf@ command: $\mathbf{\upnu}$

Upright bold $\nu$ using the \texttt{bm} package: $\bm{\upnu}$

\end{document}

The Output

enter image description here