3

Sometimes I find the subscript is located too far from the letter (to which it is the subscript) such as in

\mathbf{v_{_\text{B}}}

How to get the subcript closer to the letter?

lockstep
  • 250,273
user26634
  • 31
  • 2

1 Answers1

2

Reducing the size of the subscript is not the right solution, in my opinion. And \text is not the correct command to use, because it doesn't ensure an upright font, for instance in the statement of a theorem printed in italics.

A "double subscript" is definitely not the best way to reduce the size, in any case.

If you really need to push a bit down the subscript, add an empty superscript.

\documentclass{article}
\usepackage{amsmath}
\begin{document}
$\mathbf{v}^{}_\textnormal{B}$ is good

$\mathbf{v}_{\scriptscriptstyle\textnormal{B}}$ is not so good

$\mathbf{v_{_\text{B}}}$ is bad
\end{document}

enter image description here

egreg
  • 1,121,712