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

雑記
投稿日:2020年12月13日 更新日:
amssymb パッケージを導入して、\checkmark でチェックマークが入力できる。
\usepackage{amssymb} \begin{document} $\checkmark \times$ \end{document}
執筆者:seyanen
関連記事
大文字のスクリプト体を入力するには、mathrsfs パッケージを使う。 例 \usepackage{mathrsfs} \begin{document} $$\mathscr{ABCDEFGHIJK …
tex の equation で式番号を表示しないようにする方法
\nonumber を使うと式番号を表示しないようにできる。 例 \usepackage{amsmath} \begin{document} \begin{equation} \nonumber y …
tex で文中の文字に \textcolor で色をつける方法
color パッケージを使っておき、本文中 \textcolor で色をつける。 例 \usepackage{color} \begin{document} {\bf \textcolor{red}{ …
tex でスラッシュ(/)を大きく表示したいときがある。 このとき、\left. または \right. (ドットは表示されない)と、\right/ や \left/ (スラッシュ記号を表示)を組み合 …
2023/01/18
matplotlib のグラフ作成と gnuplot との対応 比較
2022/10/14
pythonで配列(リスト)の、ある要素がわかっているときにその次の要素を取得する方法。