Hey guys,
Please how is this expression written in markdown;
General ⇒ Permutation and Combination
NEW: TikZ book now 40% off at Amazon.com for a short time.
- Stefan Kottwitz
- Site Admin
- Posts: 10324
- Joined: Mon Mar 10, 2008 9:44 pm
Permutation and Combination
Hi Bracketman,
welcome to the forum!
I guess you mean LaTeX and not Markdown? With LaTeX, I would use
amsmath:
Stefan
welcome to the forum!
I guess you mean LaTeX and not Markdown? With LaTeX, I would use
\binom
from 
Code: Select all
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\[
\binom{n}{k} = {}^{52}C_2 = \cdots
\]
\end{document}
LaTeX.org admin