[Tex/LaTex] Wedge Power symbol

symbols

I want the upper index to appear on slightly right and below the topmost part of
wedge symbol.
But \[ bigwedge^k V \] gives me the k at the top. How do I do this?
I want this in the definition of exterior power of a vector space.

Best Answer

If you don't like the default location in inline math, you can use \raisebox{<length>}{} to tweak the vertical position. To get the same behavior in display math use \nolimits:

enter image description here

Code:

\documentclass{article}
\usepackage{graphicx}

\begin{document}
Inline math mode it works as $\bigwedge^{\raisebox{-0.4ex}{\scriptsize $k$}} V$.

In display math:
\[
    \bigwedge\nolimits^k V
\]
\end{document}