LoginSignup
2
3

More than 5 years have passed since last update.

Sphinxでアンダーラインを引く(HTML限定)

Posted at

この方法を取っても、LaTeXを用いて作成したPDFには反映されないことに注意

カスタムCSSとして、以下のクラスを追加しておく。

.underline {
  text-decoration: underline;
}

アンダーラインを使いたいrstファイルの冒頭に以下の記述を追加。

.. role:: underline
  :class: underline

アンダーラインを引きたい箇所を以下の記述にする。

:underline:`アンダーライン引きたい場所`

参考URL

How to underline text in reStructuredText? - Stack Overflow

2
3
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
2
3