小文字のデルタ:δ
大文字のデルタ:Δ
例
$\delta, \Delta$
結果

雑記
投稿日:
小文字のデルタ:δ
大文字のデルタ:Δ
$\delta, \Delta$
執筆者:seyanen
関連記事
\hyperref パッケージを使って次のように書く。 例 \usepackage{hyperref} \begin{document} \href{mailto:taro@example.co.jp …
xcolor パッケージを使っておく。rowcolor で指定する。 例 \usepackage[table]{xcolor} \begin{document} \begin{table} \begi …
python3 で文字列のリストを結合して1つの文字列にする方法
リストに対して、join メソッドを実行する。 例 list1 = [‘hello, ‘,’good ‘, ‘morning’] str1 = ”.join(list1) print(str1) 結 …
2023/01/18
matplotlib のグラフ作成と gnuplot との対応 比較
2022/10/14
pythonで配列(リスト)の、ある要素がわかっているときにその次の要素を取得する方法。