Does anyone know what is the code for this symbol in latex ?

Asked
Active
Viewed 6,036 times
1
-
2It is simply w in math mode with Times font? – May 20 '19 at 03:41
-
Looks a bit like the w from here. – May 20 '19 at 04:04
1 Answers
1
My answer simply confirms the comment of the very good @JouleV user, adding a minimum compilation code and a clarification of the font used. newtxtext package give a font Times clone; in mathematical mode to have the same characters Times you can add newtxmath.
\documentclass[a4paper,12pt]{article}
\usepackage{newtxtext,newtxmath}
\begin{document}
w in text mode and w in math-mode: $w$.
\end{document}
Very similar also with Cambria Math, often used in other writing programs is very close to the image. See this code compilable with LuaLaTeX.
\documentclass{article}
\usepackage{unicode-math}
\usepackage{fontspec}
\setmainfont{Cambria}
\setmathfont{Cambria Math}
\begin{document}
$w$
\end{document}
Sebastiano
- 54,118

