How do I make a large forward slash in a math environment for use when showing for example one fraction divided by fraction? A normal forward slash is too small and disappears between the fractions. I assume there is some symbol for making a larger forward slash that would scale up to the size of what it is next to?
Thanks.
Math & Science ⇒ Slanted division symbol
NEW: TikZ book now 40% off at Amazon.com for a short time.
Slanted division symbol
Like this?
Code: Select all
\documentclass{article}
\begin{document}
\[ \left. \frac12 \middle/ \frac34 \right. \]
\end{document}
-
- Posts: 707
- Joined: Tue Mar 25, 2008 5:02 pm
Slanted division symbol
phi's suggestion doesn't work without a package that defines \middle. Short of that, try
This may screw up if the right side is bigger than the left, in which case you can put the . and the / in opposite places.
Code: Select all
\documentclass{article}
\begin{document}
\[ \left. \frac12 \right/ \left. \frac34 \right. \]
\end{document}
Slanted division symbol
\middle only requires eTeX; most current TeX distributions come with most formats built with an eTeX-based system.kaiserkarl13 wrote:phi's suggestion doesn't work without a package that defines \middle. Short of that, try...
1,1,2,3,5,8,13,21,34,55,89,144,233,...
Re: Slanted division symbol
so if your latex dist does not provide the \left \middle \right construction, then your latex dist need a complete update (good idea anyways)