我无法弄清楚图中所示的 Capital Nu 的命令。我试过了,\Nu
但它不起作用。
我用 Google 搜索,但没有发现任何有用的信息。
答案1
有些希腊大写字母看起来与拉丁大写字母相同,因此没有独特的命令。Nu 就是其中之一。这些希腊大写字母的列表可从多个来源获得,包括
http://www.mathworks.com/matlabcentral/answers/14751-greek-alphabet-and-latex-commands-not-a-question 和 https://tex.stackexchange.com/a/49602/61108
从链接的 TeX.SX 答案中,列表是
Α α alpha
Β β beta
Ε ε epsilon
Ζ ζ zeta
Η η eta
Ι ι iota
Κ κ kappa
Μ μ mu
Ν ν nu
Ο ο omicron
Ρ ρ rho
Τ τ tau
Υ υ upsilon
Χ χ chi
仅用于N
大写 nu。
答案2
这当然是一个数学书法 V。以下是尽可能忠实地再现的公式:
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{amsmath}
\newcommand\I{\mathrm i}
\newcommand\E{\mathrm e}
\begin{document}
\begin{alignat*}{2}
& \widetilde{\mathcal{V}} &{} = -\hbar \Omega \Bigl\{ &\sigma_ + \E^{-\I(\Delta t-\varphi)}\bigl[1 + \I\eta(b\E^{-\I\nu t} + b^{\dagger}\E^{\I\nu t})\bigr]\Bigr. \\
& & \Bigl. {}+{} &\sigma_ -\E^{\I(\Delta t-\varphi)}\bigl[1 - \I\eta(b\E^{-\I\nu t} + b^{\dagger}\E^{\I\nu t})\bigr]\Bigr\}.
\end{alignat*}%
\end{document}