Math & Science ⇒ Fraction without Bar
-
- Posts: 4
- Joined: Wed Aug 24, 2011 7:59 pm
Fraction without Bar
Hi. How can I write a fraction without the bar? Like this:
Thanks!
Last edited by andremelzi on Wed Aug 24, 2011 9:37 pm, edited 2 times in total.
NEW: TikZ book now 40% off at Amazon.com for a short time.

- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Fraction without Bar
The amsmath package provides the \genfrac command which allows to create your own fractional structures. So you can build an own fraction very easy.
The package manual has the details. For instant access open a command line.
Your example has probably been done with an array environment enclosed by curly braces. For more about math typesetting refer to the excellent »Math mode« document.
Best regards and welcome to the board
Thorsten
Code: Select all
\documentclass[11pt]{article}
\usepackage[T1]{fontenc}
\usepackage{mathtools} % loads »amsmath«
\newcommand*{\bfrac}[2]{\genfrac{\lbrace}{\rbrace}{0pt}{}{#1}{#2}}
\begin{document}
\[
\left(\nabla^2+n^2(x)\,k^2\right)\bfrac{E}{K}=0
\]
\end{document}
Code: Select all
texdoc amsmath
Best regards and welcome to the board
Thorsten
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
-
- Posts: 4
- Joined: Wed Aug 24, 2011 7:59 pm
Re: Fraction without Bar
Thank you!
Best regards,
André
Best regards,
André