comment

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

関連記事

no image

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

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

no image

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

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

no image

tex でブロック行列を入力する方法

ゼロの成分が多いブロック行列を tex で出力する。 \usepackage{amsmath} を使う。 例 \usepackage{amsmath} \begin{document} $$ \lef …

no image

tex で無限の記号を入力する

「無限大」を表す記号を入力するには、\inftyを使う。 例 $$\infty , -infty$$ 結果

no image

tex で数式の場所を右揃え・左揃えにする

align 環境のもとで、& をつけると右揃えや左揃えにすることができる。改行には \\ 記号を使う。 例 \begin{align*} f(x) = x^2 + 2x + 1 &\\ …