comment

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

関連記事

no image

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

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

no image

python3 で、文字列の最後が特定の文字で終わるか判定する方法

endswith を使う。 例 str1 = “こんにちは” result1 = str1.endswith(“は”) result2 = str1.endswith(“わ”) print(resul …

no image

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

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

no image

tex で上極限・下極限の記号を入力する

\amsmath パッケージを使い、\varlimsup, \varliminf を使う。 例 \usepackage{amsmath} \usepackage{amssymb} \begin{doc …

no image

tex で href の色を変更する方法

例で、urlcolor=red と書けば、「link to google」の文字列は赤色(red)になる。 もし urlcolor=blue と書けば、リンクは青色になる。 例 \usepackage …