Is it possible to write in the style of two columns in a restructured text?

I would like to write a research paper using restructured text, is it possible to have a two-column style inherent in this document? I looked at the specifications , but using appart with a table that will be a real pain, I can not find an alternative.

Any help would be greatly appreciated, thanks!

+4
source share
4 answers

You can output 2-column in any of the docutils output formats.

If you need a source of source , then this is much more complicated.

, (, 5000 ;-), , , HTML, PDF - .

PDF, rst2pdf, , -s twocolumn.

HTML CSS, , Google .

+7

reST, :

rst2latex --documentoptions=twocolumn source.rst
+4

ReST. LaTeX , (BibTex), . :

% remove "twocolumn" for a single column
\documentclass[twocolumn]{article}
\begin{document}
Text here...
\end{document}

See Wikibooks for a good reference.

+3
source

Maybe with rst2pdf, but your layout should be kept within PageBreak. In other words, you cannot have 1 column layout and 2 column layouts on the same page.

.. raw:: pdf 

      PageBreak twoColumn 

some text in two columns 


.. raw:: pdf 

      PageBreak oneColumn 

some text in one column
+3
source

All Articles