tex

tex でチェックマークを入力する方法

投稿日:2020年12月12日 更新日:

\surd で入力する。または、amssymb パッケージを使って \checkmark で入力する。

\usepackage{amssymb}

\begin{document}
$\surd \checkmark$
\end{document}

結果

-tex
-

執筆者:


comment

メールアドレスが公開されることはありません。 * が付いている欄は必須項目です

関連記事

no image

tex で絶対値記号やノルムの縦棒を長くする方法

ノルムの絶対値記号を単純に入力しただけでは短くて困ることがあるので、長くしたいときがある。 \amsmath パッケージで、 \lVert や \rVert, \lvert や \rvert&nbsp …

no image

tex の equation で式番号を表示しないようにする方法

\nonumber を使うと式番号を表示しないようにできる。 例 \usepackage{amsmath} \begin{document} \begin{equation} \nonumber y …

no image

tex で表の縦横軸を調整する方法

例 \begin{center} \begin{table}[] \begin{tabular}{|c|c|c|c|} \hline 氏名 & 生年 & 没年 & 著書 …

no image

tex でスクリプト体で数式を入力する方法

大文字のスクリプト体を入力するには、mathrsfs パッケージを使う。 例 \usepackage{mathrsfs} \begin{document} $$\mathscr{ABCDEFGHIJK …

no image

tex で積分範囲の位置を調整する方法

\int に \limits を書くと、積分範囲の位置を少し上下に移動させることができる。 例 $$\int\limits_{a+b}^{c+d} f(x) dx$$ $$\int_{a+b}^{c+ …