Skip to content

Commit

Permalink
added Emacs Org documentation, Tag groups, export options
Browse files Browse the repository at this point in the history
  • Loading branch information
novoid committed Jun 5, 2013
1 parent aa4e3d4 commit 8b9229d
Showing 1 changed file with 52 additions and 1 deletion.
53 changes: 52 additions & 1 deletion featureshow/org-mode-teaser.org
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,24 @@ http://orgmode.org/org.html#Setting-tags
(setq org-log-done t)
#+END_SRC

- Org-mode *minor mode* (structure editing and lists) ~orgstruct-mode~ ([[http://orgmode.org/org.html#Orgstruct-mode][docu]])
- Org-mode *minor mode* (structure editing and lists) ~orgstruct-mode~
([[http://orgmode.org/org.html#Orgstruct-mode][docu]])

** Org-mode documentation

- http://orgmode.org/org.html is up to date
- ~C-h i~ (while being in an Org-mode file) gives you a local version :-)

*** In case of Org-mode documentation does not work

For using Org-mode from a local git repository: add following to your
configuration:

: (add-to-list 'Info-additional-directory-list "~/.emacs.d/<YOURDIRECTORY>/org-mode/doc/")

OR: install Org-mode documentation to your system with:

: cd $ORGMODEDIRECTORY && sudo make install-info

** text formatting syntax [[http://orgmode.org/org.html#Emphasis-and-monospace][(docu)]]

Expand Down Expand Up @@ -437,6 +454,24 @@ foo bar

*** example :tag:

*** Tag groups ([[http://orgmode.org/manual/Tag-groups.html][docu]])

- searching for a group tag return matches of all member tags as well
- example:

#+TAGS: { @read: @read_book @read_ebook }

#+BEGIN_SRC elisp
(setq org-tag-alist '((:startgroup . nil)
("@read" . nil)
(:grouptags . nil)
("@read_book" . nil)
("@read_ebook" . nil)
(:endgroup . nil)))
#+END_SRC

- searching for "@read" also returns "@read_book" and "@read_ebook"

** tables simple [[http://orgmode.org/org.html#Tables][(docu)]]

- ~C-c C-c~ *update table*
Expand Down Expand Up @@ -836,6 +871,22 @@ Greek characters \alpha \beta \phi \LaTeX{} $\varphi$
- [ ] DEMO: export this as PDF (plain)
- [ ] DEMO: export this as PDF (beamer)

*** Export options ([[http://orgmode.org/manual/Export-options.html][docu]])
:PROPERTIES:
:EXPORT_FILE_NAME: my-file-name
:EXPORT_TITLE: the title to be shown (default is the heading name)
:EXPORT_TEXT: Some descriptive text to be inserted at the beginning.
:EXPORT_AUTHOR: the author (default taken from user-full-name)
:EXPORT_DATE: a date, an Org timestamp, or a format string for format-time-string
:EXPORT_OPTIONS: toc:nil author:nil ^:nil *:nil
:END:

- per file:
- ~C-c C-e t~ (org-insert-export-options-template)
- per heading:
- see properties drawer above
- EXPORT_OPTIONS: see [[http://orgmode.org/manual/Export-options.html][docu]]

** Mobile-org ([[http://orgmode.org/org.html#MobileOrg][docu]])

- great [[http://mobileorg.ncogni.to/][iOS app]]
Expand Down

0 comments on commit 8b9229d

Please sign in to comment.