comment

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

関連記事

no image

matplotlib で、ヒストグラムを作成する方法

ヒストグラムを描くには、data_hist を使う。 ヒストグラムの縦棒の数は bins で指定する。 例 from matplotlib import pyplot as plt data_hist …

no image

tex でインテグラルが小さくなる→大きくする方法

文章中でインテグラル(積分記号)を大きくするには、\displaystyle と書けばよい。 例 usual $\int \frac{ax+b}{cx+d} dx$display style $\di …

no image

tex で米印(アスタリスク)を入力する方法

アスタリスクは、「*」記号で入力できる。tex の数式モードと、数式モードの外で書き方が異なるので注意。 例 数式モードの中:math mode $x^{*} A* B^{**}$数式モードの外:te …

no image

ruby で mysql2 のインストールのときに ld: library not found for -lssl エラーが出る場合の対処法。

ruby on rails アプリを動かしているときに起きた問題。 ruby で bundle install しようとすると、 ld: library not found for -lssl を含む …

no image

tex で差集合の記号を入力する方法

\setminus を使う。 例 $A \setminus B$ 結果