comment

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

関連記事

no image

convert コマンドで最大画像サイズを指定して画像を変換する方法

-extent のオプションで画像の希望の最大サイズを入力しておくことにより、そのサイズ(下の例では5キロバイト)になる。 同時に、希望の画像の大きさも、-resize オプションを使って入力しておく …

no image

tex で行に色をつける方法

xcolor パッケージを使っておく。rowcolor で指定する。 例 \usepackage[table]{xcolor} \begin{document} \begin{table} \begi …

no image

tex の積分範囲の分数サイズを変更する方法

定積分の分数の大きさを調整するには、\mbox のサイズ指定を \small や \normalsize や \large 等に設定すると良い。 例 $\displaystyle \int _0 ^{ …

no image

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

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

no image

std::vector で、vector の要素を erase() で消去する

任意の要素を指定して、 養素を消去することができる。 例 #include <iostream> #include <vector> int main() { std::vector&lt …