How do you put Lorentz indices so that they are not right one above the other?
I need them to be spaced e.g. if I put
a_\mu ^\nu
, they would appear on top of each other without any spacing.a_\mu ^\nu
, they would appear on top of each other without any spacing.Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Code: Select all
${a_\mu}^\nu$
Code: Select all
\documentclass{article}
\usepackage{amsmath}
\usepackage{tensor}
\begin{document}
\[ \tensor{a}{^\mu_\nu} \]
\end{document}
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis