comment

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

関連記事

no image

tex 表の一部の列のみを中央揃えにする

中央揃えにしたい列を、c で指定すればよい。その他は l (左)または r (右)揃えに指定する 例 \begin{table} \begin{tabular}{ |r|c|r|} \hline Ta …

no image

vi, vim で行番号を指定して移動する方法

「行番号の数字を入力」→「G」(=shift+g)キーを押す で移動できる。 詳細:https://vim.jp.net/stepuptonovice_movecursor_linenumber.ht …

no image

常用対数、自然対数を外国語で言う方法

常用対数 10を底とする対数のことを、常用対数という。 翻訳 英語 common logarithm 発音:kɑ́mən lɔ́(ː)gərɪ̀ðm 中国語 常用对数 発音:chángyòng duì …

no image

tex で文中の文字に \textcolor で色をつける方法

color パッケージを使っておき、本文中 \textcolor で色をつける。 例 \usepackage{color} \begin{document} {\bf \textcolor{red}{ …

no image

matplotlib で、凡例を表示する方法

データに label を関連付け、plt.legend() で凡例を表示する。 例 from matplotlib import pyplot as plt data_x = [25,26,2 …