我正在嘗試寫
^nP_k=\frac{n!}{(n-k)!}
\binom nk=^nC_k=\frac{n!}{k!(n-k)!}
但依照我的喜好,編譯時 n 與 P 和 C 有點遠。有命令可以寫這個嗎?我知道有一個\binom
所以我充滿希望。如果不是,有沒有辦法迫使 n 更接近?
\documentclass{article}
\begin{document}
$ ^nP_k=\frac{n!}{(n-k}!} - permutation \\
\binom nk=^nC_k=\frac{n!}{k!(n-k)!} - combination $
end{document}
答案1
您可以使用\prescript
來自mathtools
封裝並定義兩個命令;大致如下:
\documentclass{article}
\usepackage{mathtools}
\newcommand\Myperm[2][^n]{\prescript{#1\mkern-2.5mu}{}P_{#2}}
\newcommand\Mycomb[2][^n]{\prescript{#1\mkern-0.5mu}{}C_{#2}}
\begin{document}
\[
\Myperm{k} = \frac{n!}{(n-k)!}\quad
\Mycomb{k} = \frac{n!}{k!(n-k)!}\quad
\Myperm[m]{k} = \frac{m!}{(m-k)!}\quad
\Mycomb[m]{k} = \frac{m!}{k!(m-k)!}\quad
\]
\end{document}
答案2
您可以定義自己的:
代碼:
\documentclass{article}
\usepackage{amsmath}
\newcommand*{\Perm}[2]{{}^{#1}\!P_{#2}}%
\newcommand*{\Comb}[2]{{}^{#1}C_{#2}}%
\begin{document}
$\Perm{n}{k}=\frac{n!}{(n-k)!}$ - permutation
$\binom nk=\Comb{n}{k}=\frac{n!}{k!(n-k)!}$ - combination
\end{document}
答案3
我提供了一個通用\permcomb
宏,將用於設定\perm
和\comb
.
間距位於規定和後續字元之間,借助 進行字距調整\mkern
。
prescript 和 之間的預設字距調整P
是-3mu
, 和-1mu
with C
,可以透過使用所有三個巨集的可選參數來更改。
程式碼
\documentclass{article}
\usepackage{amsmath}
\newcommand*{\permcomb}[4][0mu]{{{}^{#3}\mkern#1#2_{#4}}}
\newcommand*{\perm}[1][-3mu]{\permcomb[#1]{P}}
\newcommand*{\comb}[1][-1mu]{\permcomb[#1]{C}}
\begin{document}
$\perm{n}{k}$
$\comb{n}{k}$
$\permcomb[-3mu]{J}{l}{k}$
\end{document}