アスタリスクは、「*」記号で入力できる。
tex の数式モードと、数式モードの外で書き方が異なるので注意。
例
数式モードの中:math mode $x^{*} A* B^{**}$
数式モードの外:text \textasteriskcentered mode
結果

雑記
投稿日:2020年11月8日 更新日:
アスタリスクは、「*」記号で入力できる。
tex の数式モードと、数式モードの外で書き方が異なるので注意。
数式モードの中:math mode $x^{*} A* B^{**}$
数式モードの外:text \textasteriskcentered mode

執筆者:seyanen
関連記事
マル記号、バツ記号、マルの中にバツ記号をそれぞれ入力するには次のようにする。 例 $$\circ \times \otimes$$ 結果 美味しんぼ(70)【電子書籍】[ 雁屋哲 ]価格:605円(税 …
ギリシャ文字は、α・β・ζ・σ・・・などの文字のことである。gnuplot では、例えば、アルファ(α)を入力したい場合には、{/Symbol a} と入力する。 例 set xlabel “{/Sy …
tex の equation 環境で複数行の数式を入力する(\split を使う)
\equation の中で \split を使う。 \tag を使って、自分で定義した式番号を使える。 例 \begin{equation} \begin{split} a \\ b \\ c \en …
tex の equation で式番号を表示しないようにする方法
\nonumber を使うと式番号を表示しないようにできる。 例 \usepackage{amsmath} \begin{document} \begin{equation} \nonumber y …
2023/01/18
matplotlib のグラフ作成と gnuplot との対応 比較
2022/10/14
pythonで配列(リスト)の、ある要素がわかっているときにその次の要素を取得する方法。