tex で大文字のπ(Π)を使って乗積を表示する方法
例
$\displaystyle \prod_{i=0}^{N} a_i$
または
$\prod_{i=0}^{N} a_i$
結果


雑記
投稿日:2020年11月7日 更新日:
tex で大文字のπ(Π)を使って乗積を表示する方法
$\displaystyle \prod_{i=0}^{N} a_i$
または
$\prod_{i=0}^{N} a_i$


執筆者:seyanen
関連記事
amssymb パッケージを導入して、\checkmark でチェックマークが入力できる。 例 \usepackage{amssymb} \begin{document} $\checkmark \t …
テキストの下線に色を付けたい場合には、color, soul パッケージを使用する。 そして、下線をつけたいテキストを\ul で囲む。 例 \usepackage{color, soul} \begi …
amsmath パッケージを使っておき、\begin{equation} と \end{equation} の数式中で \tag を使うと式番号を自分で指定したとおりに表示できる。(式番号の中に日本語 …
tex で「なぜならば」記号(∵)を入力するには、数式モードで $\because$ と書く。ams のパッケージを使う。 例 \usepackage{amsmath}\usepackage{amss …
tex の equation で式番号を表示しないようにする方法
\nonumber を使うと式番号を表示しないようにできる。 例 \usepackage{amsmath} \begin{document} \begin{equation} \nonumber y …
2023/01/18
matplotlib のグラフ作成と gnuplot との対応 比較
2022/10/14
pythonで配列(リスト)の、ある要素がわかっているときにその次の要素を取得する方法。