Math & Science ⇒ Fraction without Bar
-
- Posts: 4
- Joined: Wed Aug 24, 2011 7:59 pm
Fraction without Bar
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Fraction without Bar
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
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
Best regards,
André