comment

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

関連記事

no image

matplotlib で csv ファイルからデータを読み込んでグラフを表示する方法

np loadtext で csv ファイルを読み込む。 pyplot.bar で棒グラフを表示する。 例 import numpy as np from matplotlib import pypl …

no image

tex の表で、複数行を1行内に入れる方法

multirow パッケージを使っておき、表内で multirow で入力する。 例 \usepackage{multirow} \begin{document} \begin{table} \beg …

no image

ザンビアの位置

在留人 ザンビア在留日本人109人(2020年10月現在:外務省) 在日ザンビア人137人(2020年6月現在:法務省) https://www.mofa.go.jp/mofaj/area/zambi …

no image

tex で数式モード内に普通の文字列を入力する方法

\textrm を使う。 例 $$y = f (x) \hspace{1cm} \textrm{This is a function.}$$ 結果

no image

C言語で printf 出力を左詰めにする方法

% のときに、マイナスを前に付けると、 出力結果を左詰めにすることができる。 例 #include <stdio.h> int main () { int i; for(i=1;i<100 …