Columns in show.js with org-mode

How to create columns in org-mode when I export it via org-open?

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

+4
source share
2 answers

I found a solution in this presentation that uses a column class.

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>
+9
source

I could find one possible solution. Probably not the most elegant.

. , css bootstrap.css.

org:

#+REVEAL_EXTRA_CSS: bootstrap.css

org:

#+REVEAL_HTML: <div class='span6'>
...
#+REVEAL_HTML: </div>

#+REVEAL_HTML: <div class='span6'>
...
#+REVEAL_HTML: </div>

?

+2

Source: https://habr.com/ru/post/1611784/


All Articles