4
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Sphinxのドキュメントのテーマをいつものにしたいとき

Posted at

はじめに

Sphinxのデフォルトのテーマは、ものすごくスタイリッシュでなんか違うんだよな になります。

やはり、いつものアレを使いたいですね。

いつものアレ

スクリーンショット 2019-11-14 13.12.54.png

やけに使用頻度の高いコレです。

どうやら、これは公式のテーマではなくサードパーティ製のテーマのため、別途インストールする必要があります。

手順

テーマを使用したいディレクトリに適用されたPythonのpipで

$ pip install sphinx-rtd-theme

をします。

その後、設定ファイルのconf.pyに

conf.py
extensions = [
    'sphinx.ext.autodoc',
    'sphinx.ext.viewcode',
    'sphinx.ext.todo',
    'sphinx.ext.napoleon',
    'sphinx_rtd_theme'
]
html_theme = 'sphinx_rtd_theme'

extensionsとhtml_themeを追記すればよいです。

テーマサイト

sphinx-themesに、使用できるテーマ一覧があるため、
活用するとよさそうです。

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?