comment

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

関連記事

no image

tex でアンダーライン(下線)に色をつける方法

テキストの下線に色を付けたい場合には、color, soul パッケージを使用する。 そして、下線をつけたいテキストを\ul で囲む。 例 \usepackage{color, soul} \begi …

no image

tex でギリシャ文字のベータ(β)を入力する方法

ベータ(β)は、ギリシャ文字の2番目の文字。数学等でよく使われる。 例 $\beta$ 結果

no image

tex で表を横にぶち抜きしたものを作成する方法

multicolumn を使う。 例 \begin{center} \begin{table}[] \begin{tabular}{|c|c|c|c|} \hline \multicolumn …

no image

tex でイプシロン記号を入力する方法

\epsilon または \varepsilon を使う。 例 $\epsilon, \varepsilon$ 結果

no image

tex の equation 環境で複数行の数式を入力する(\split を使う)

\equation の中で \split を使う。 \tag を使って、自分で定義した式番号を使える。 例 \begin{equation} \begin{split} a \\ b \\ c \en …