added beamer

This commit is contained in:
Abraham Raji 2020-01-14 22:03:40 +05:30
parent 1052443269
commit 690f3a51a6
1 changed files with 17 additions and 0 deletions

View File

@ -14,3 +14,20 @@ Asterisk can be boring to look at.
#+BEGIN_SRC emacs-lisp
(setq org-ellipsis " ▶")
#+END_SRC
** Exporting
Allow export to markdown and beamer (for presentations).
#+BEGIN_SRC emacs-lisp
(require 'ox-md)
(require 'ox-beamer)
#+END_SRC
Allow =babel= to evaluate Emacs lisp, Ruby, dot, or Gnuplot code.
#+BEGIN_SRC emacs-lisp
(org-babel-do-load-languages
'org-babel-load-languages
'((emacs-lisp . t)
(python . t)
(C . t)))
#+END_SRC