comment

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

関連記事

no image

tex でπ積(総乗、乗積)を表示する方法

tex で大文字のπ(Π)を使って乗積を表示する方法 例 $\displaystyle \prod_{i=0}^{N} a_i$または$\prod_{i=0}^{N} a_i$ 結果 このお姉さんはフ …

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 で微分(ダッシュ、プライム)を書く

微分に使うダッシュ(数学では、正式にはプライムと呼ぶことが多い)の tex での書き方。 例 $y’ = x$または$y^{\prime} = x$どちらでも同じ表示になる。 結果 このお …

no image

tex でチェックマークとバツ記号を入力する方法

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