Skip to content

Instantly share code, notes, and snippets.

@tsdh
Created September 9, 2013 06:28
Show Gist options
  • Save tsdh/6492120 to your computer and use it in GitHub Desktop.
Save tsdh/6492120 to your computer and use it in GitHub Desktop.
A minimal org sample presentation
#+AUTHOR: Tassilo Horn
#+EMAIL: me@home
#+TITLE: This is the title
* Ex.: Relational Querying
#+BEGIN_HTML
<center><table width="40%"><tr><td>
#+END_HTML
#+BEGIN_SRC clojure
(defn grandparento [model grandparent grandchild]
(fresh [child]
(+->children model grandparent child)
(+->children modes child grandchild)))
#+END_SRC
#+BEGIN_HTML
</td></tr></table></center>
#+END_HTML
| grandparent | grandchild | semantics |
|-------------+------------+-----------------------------------------------|
| ground | ground | predicate |
| ground | fresh | all grandchildren of grandparent |
| fresh | ground | all grandparents of grandchild |
| fresh | fresh | all grandparents with all their grandchildren |
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment