0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

siunitx で \pi とか \sigma とかのギリシャ文字を入れる

Posted at

はじめに

siunitx の使い方で詰まったところの備忘録です.
日本語文献が見当たらなかったので作成しておきます.

失敗例

ふつうにやるとコンパイルが通りません.

真空の透磁率は $\mu_0 = \SI{4\pi e-7}{N/A^2}$
% Package siunitx Error: Invalid number '4\pi e-7'.

対策

siunitx の公式で対策方法の記載があります.
プリアンサンブルに以下のコードを追加します.
これによって \pi も数値のように扱うことができるようになります.

\sisetup{input-digits = 0123456789\pi}

こんな感じでコンパイルできます.

image.png

参考文献

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?