Sphinx: Difference between revisions

From 탱이의 잡동사니
Jump to navigation Jump to search
(Created page with "== Overview == Sphinx 사용 법 정리. == See also == * http://www.sphinx-doc.org/en/stable/rest.html - reStructuredText Primer category:linux")
 
No edit summary
Line 1: Line 1:
== Overview ==
== Overview ==
Sphinx 사용 법 정리.
Sphinx 사용 법 정리.
== Miscellaneous markup ==
=== Tables ===
다음의 추가적인 Markup 을 사용 할 수 있다.
==== tabularcolumns ====
테이블의 칼럼 속성을 지시할 수 있다. LaTex tabulary package 의 인자값으로 사용된다.
<pre>
.. tabularcolumns:: column spec
</pre>
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
다음과 같이 사용된다.
<pre>
.. tabularcolumns:: |r|l|
</pre>


== See also ==
== See also ==

Revision as of 08:30, 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