未分類

tex で小文字のL(リットル)記号を入力する方法

投稿日:2020年11月8日 更新日:

tex で小文字のL(l)リットル記号を入力するには、\ell を使う。
通常の小文字の l は、\\l であるのに注意。

5 \\ell

結果

-未分類

執筆者:


  1. より:

    \ell (\\ell)ですね
    どっちもフォーマットされててソース見ないとわからなくなっていますよ

comment

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

関連記事

no image

tex で期待値記号を入力する方法

\mathbf を使う。 例 $\mathbf{E}(\xi)$ 結果

no image

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

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

no image

c++ で文字列(string)の長さを取得する方法

length() で取得する。 例 #include <iostream> #include <string> using namespace std; int main () { str …

no image

mac の convert コマンドで画像ファイルをサイズ変更する

convert コマンドを使うには、imagemagick というソフトがインストールされていることが必要。 インストールの確認 $ which convert で、imagemagick がインスト …

no image

tex で同値記号(⇔)を入力する方法

同値記号を入力するには、\Leftrightarrow を使う。 例 $b \leftrightarrow c$, $b \Leftrightarrow c$