Andrea Crotti <andrea.crott...@gmail.com> writes: > "Eric Schulte" <schulte.e...@gmail.com> writes: >> So, I hope it goes well, and I'd second Tom's point that if you do end >> up working Org-mode/babel into your talk we'd love to see a video and/or >> hear how it was received. > > Ok finally I did the talk...
That's great > > Unfortunately it had to be in italian and I have no video yet, BUT > I've set up an emacs configuration with org-mode for the talk which > now I've extended quite a lot > http://github.com/AndreaCrotti/Emacs-configuration > > you might be interested to give it a look. > > I want to do something very generic that everyone can use, setting its > own private variables somewhere else (for example in custom.el). > One option for placing personal configuration into public config files is to use org-babel and to place the personal variables *outside* of emacs-lisp code blocks in tables or external lists. For example with recent versions of org-babel the following --8<---------------cut here---------------start------------->8--- #+tblname: configuration-variables | parameter | value | |-------------+--------------------| | script-path | ~/.emacs.d/scripts | #+begin_src emacs-lisp :var config=configuration-variables[2,1] (message "script dir is %s" config) #+end_src --8<---------------cut here---------------end--------------->8--- will tangle to --8<---------------cut here---------------start------------->8--- (let ((config (quote "~/.emacs.d/scripts"))) (message "script dir is %s" config) ) --8<---------------cut here---------------end--------------->8--- Cheers -- Eric > > > The slides I've used are in the file "slides.org", they're not many > because the talk had to be mainly interactive, but I've finally really > appreciated the org-beamer stuff, great job really! > > Thanks for the help > > > _______________________________________________ > Emacs-orgmode mailing list > Please use `Reply All' to send replies to the list. > Emacs-orgmode@gnu.org > http://lists.gnu.org/mailman/listinfo/emacs-orgmode _______________________________________________ Emacs-orgmode mailing list Please use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode