Sphinx: Difference between revisions

From 탱이의 잡동사니
Jump to navigation Jump to search
No edit summary
Line 23: Line 23:
== See also ==
== See also ==
* http://www.sphinx-doc.org/en/stable/rest.html - reStructuredText Primer
* http://www.sphinx-doc.org/en/stable/rest.html - reStructuredText Primer
* http://www.sphinx-doc.org/en/stable/markup/misc.html - Miscellaneous markup


[[category:linux]]
[[category:linux]]

Revision as of 08:31, 6 July 2016

Overview

Sphinx 사용 법 정리.

Miscellaneous markup

Tables

다음의 추가적인 Markup 을 사용 할 수 있다.

tabularcolumns

테이블의 칼럼 속성을 지시할 수 있다. LaTex tabulary package 의 인자값으로 사용된다.

 .. tabularcolumns:: column spec

column spec 값으로는 다음의 값들이 사용 가능하다. Sphinx 에서는 기본값으로 모든 column 에 L 값을 지정한다.

  • L flush left column with automatic width
  • R flush right column with automatic width
  • C centered column with automatic width
  • J justified column with automatic width

다음과 같이 사용된다.

.. tabularcolumns:: |r|l|

See also