0

I want to align super and subscript in the display and inline equations

It should be:

enter image description here

Now:

enter image description here

There are n-number of occurrences in my manuscript, is there any possibility to achieve by a single move.

MWE:

\documentclass{article}


\begin{document}


$${_{gij}^{bj}\textbf{\textit{R}}}$$

\end{document}

1 Answers1

4

The \prescript command, from mathtools, has this alignment:

\documentclass{article}
\usepackage{mathtools, bm}

\begin{document}
\[
\prescript{bj}{gij}{\bm{R}}
\]
\end{document} 

enter image description here

Denis
  • 5,267
Bernard
  • 271,350