0

I was wondering how to write that symbol in latex? the \wedge does not look fine since it looks too acute.

enter image description here

RFZ
  • 333

1 Answers1

2

Not sure if this does what you want, but you could use \scalebox to scale \wedge vertically but not horizontally. Of course you can change the scale factors however you want. This is assuming you're only going to use the symbol as a subscript. If you plan on using the symbol in other ways, I suggest you take a look at a more general solution using mathchoice or mathpalette.

enter image description here

\documentclass{article}

\usepackage{graphicx}

\newcommand{\newwedge}{\scalebox{1}[0.5]{$\scriptstyle\wedge$}}

\begin{document}

$f_{\newwedge}$ vs. $f_{\wedge}$

\end{document}

Sandy G
  • 42,558