comment

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

関連記事

no image

python3 で、すべて小文字かどうかを判定する方法

islower() 関数を使う。 例 print(‘abcde’.islower()) print(‘abcDe’.islower()) 結果 True False

no image

matplotlib で、2種類のデータをプロットする方法

下では、凡例(legend)を設定している。 例 from matplotlib import pyplot as plt data_x = [25,26,27] data_y = [ …

no image

less で文字列を検索する方法:スラッシュ

less some.txt で、ファイルの内容を表示する。 ファイル内 文字列検索 ここで、キーボードの / を押し、検索文字列を入力→ enter ボタンを押す これで、ファイルの内容を検索できる。

no image

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

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

no image

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

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