Search code examples
org-modereveal.js

columns in reveal.js with org-mode


How can I create columns in org-mode when I export this via org-reveal?

I found this link RevealJS with Bootstrap Columns. This seems to work, but how can I do this when using org mode? *** are already reserved for the structure of the document.


Solution

  • I found a solution in this presentation, where the column class is used.

    To use it with org-reveal, I did the following:

    #+REVEAL_HTML: <div class="column" style="float:left; width: 50%">
    Column 1
    #+REVEAL_HTML: </div>
    
    #+REVEAL_HTML: <div class="column" style="float:right; width: 50%">
    Column 2
    #+REVEAL_HTML: </div>