amssymb パッケージを導入して、\checkmark でチェックマークが入力できる。
例
\usepackage{amssymb} \begin{document} $\checkmark \times$ \end{document}
結果

雑記
投稿日:2020年12月13日 更新日:
amssymb パッケージを導入して、\checkmark でチェックマークが入力できる。
\usepackage{amssymb} \begin{document} $\checkmark \times$ \end{document}
執筆者:seyanen
関連記事
tex で、ページ全体の体裁をそのままにして 分母と分子の間の距離を広げたり狭めたりするには、\raisebox を使う。 例 通常$$ a=\frac{\raisebox{0ex}[0ex][0ex …
\amsmath パッケージを使い、\varlimsup, \varliminf を使う。 例 \usepackage{amsmath} \usepackage{amssymb} \begin{doc …
tex の equation 環境で複数行の数式を入力する(\split を使う)
\equation の中で \split を使う。 \tag を使って、自分で定義した式番号を使える。 例 \begin{equation} \begin{split} a \\ b \\ c \en …
2023/01/18
matplotlib のグラフ作成と gnuplot との対応 比較
2022/10/14
pythonで配列(リスト)の、ある要素がわかっているときにその次の要素を取得する方法。