Math Mode Subscripts – Problem Formatting a Subscript in Math Mode

fontsizekerningmath-modesubscripts

$\nu_{\rm FWHM}$

prints FWHM too large. But when I try:

$\nu_{\mbox{\tiny FWHM}}$

the size is okay but the kerning looks wrong.

What is the best way to make a compact little FWHM subscript tag on my variables?

Solution:

$\nu_{\textsc{\tiny fwhm}}$

\newcommand{\FWHM}{{\textsc{\tiny fwhm}}}
$\nu_\FWHM$

Best Answer

This will overlap with Mico's answer, but there are couple of extra points that I'd like to make.

Loading amsmath has the nice feature that text font changing commands may be used in mathematics and the text resizes appropriately in subscripts etc. The commands \textrm, \textit etc. may be used directly without having to invoke an additional \text command. Often these direct commands are to be preferred over \text, because the latter inherits the font characterisitics from the surounding text. My standard solution for such situation is to define a macro and use the \textnormal command to avoid this.

\documentclass{article}

\usepackage{amsmath,amsthm}

\newtheorem{theorem}{Theorem}

\newcommand{\FHWM}{\textnormal{FHWM}}

\begin{document}

\( B_\FHWM \) vs. \( B_{\text{FHWM}} \) and
\( X_{B_\FHWM} \) vs. \( X_{B_{\text{FHWM}}} \)

\begin{theorem}
 Preferring \( B_\FHWM \) to  \( B_{\text{FHWM}} \)
\end{theorem}

\textbf{\( B_\FHWM \) vs. \( B_{\text{FHWM}} \)}
\end{document}

Sample output

An alternative to \textnormal is \textup, which will produce upright inside italic and slanted text, but will turn bold inside bold text.

However, in your case you are putting the subscript on a small symbol \nu and the above looks too big. The small caps shape from \textsc is often designed to give the best spacing for such combinations and is a standard choice for acronyms. You need to remember to write \textsc{fwhm} instead of \textsc{FWHM} as the latter usually produces capitals of the same size as \textrm capitals. One thing to be aware of is that the standard fonts have no bold variant of \textsc, so I suggest you additionally use \textnormal to avoid surprises. Your request for a very small font is provided by the \tiny command. (My personal preference would be to omit that or to use a command from the relsize package.) Below is an example with \tiny included.

\documentclass{article}

\usepackage{amsmath,amsthm}

\newtheorem{theorem}{Theorem}

\newcommand{\FHWM}{\textnormal{\tiny \textsc{fhwm}}}

\begin{document}

\( \nu_\FHWM \) vs. \( \nu_{\textsc{fhwm}} \) vs. \( \nu_{\text{FHWM}} \) 
and
\( X_{\nu_\FHWM} \) vs. \( X_{\nu_{\textsc{fhwm}}} \) vs. \( X_{\nu_{\text{FHWM}}} \)

\begin{theorem}
 Preferring \( \nu_\FHWM \) to  \( \nu_{\text{FHWM}} \)
\end{theorem}

\textbf{\( \nu_\FHWM \) vs. \( \nu_{\textsc{fhwm}} \) vs. \( \nu_{\text{FHWM}} \)}
\end{document}

Sample with textsc and tiny

The bold cases in the above examples are there just to illustrate pitfalls. If you really intend to use this in such contexts, then you need to think about what fonts you wish to appear and build the commands appropriately.

Related Question