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!
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 .
reST, :
rst2latex --documentoptions=twocolumn source.rst
ReST. LaTeX , (BibTex), . :
% remove "twocolumn" for a single column \documentclass[twocolumn]{article} \begin{document} Text here... \end{document}
See Wikibooks for a good reference.
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.
PageBreak
.. raw:: pdf PageBreak twoColumn some text in two columns .. raw:: pdf PageBreak oneColumn some text in one column