comment

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

関連記事

no image

php で、画面に文字を表示する方法

ブラウザの画面に文字を表示するには、echo を使う。 例 <? echo “こんにちは”; ?> 結果

no image

matplotlib でグラフ表示ウィンドウの画面上の位置を自由に設定する方法

matplotlib.use(‘TkAgg’) としておき、 get_current_fig_manager().window.wm_geometry(“+20+50”) として、(+20+50)のと …

no image

python3 で、文字列の末尾の文字を削除する方法

[:-1] で、最後の文字を取り除いた文字列を取得することができる。 例 str1 = “こんにちは。” result = str1[:-1] print(result) 結果 こんにちは

no image

tex で、集合の元でないことを表現する方法

\not \in を使う。 例 x \not \in A 結果

no image

tex で脚注を表示する方法

\footnote を使う。 例 \footnote{this is a footnote.} 結果