[Tex/LaTex] Big forward slash in math

amsmathequationsmath-mode

I have an equation in from of

a=VERYBIGSTUFF / VERYBIGSTUFF

And I would like to have a "verybig" forward slash in the middle of them. I don't like \frac mode, as I would like to have them left-to-right, not one above the other. I tried also changing the size of the "/" like \text{\LARGE $/$} but this gives a non centered slash, it goes upwards (as a different typography size would do, of course).

How can I insert that big forward slash?

Best Answer

It is also possible to put the equation into the brackets and then use the \middle/ instead of the regular slash.

So, for example, this equation:

\int \limits_{a}^{b} \frac{x}{y} / \int \limits_c^d \frac{x}{y}

would turn into this one:

\left[ \int \limits_{a}^{b} \frac{x}{y} \middle/ \int \limits_c^d \frac{x}{y} \right]

Or if you do not need any visible brackets, you may use the "fake" brackets instead:

\left. \int \limits_{a}^{b} \frac{x}{y} \middle/ \int \limits_c^d \frac{x}{y} \right.

Example of large slash in math

Related Question