Re: [O] custom emacs org-emphasis-alist breaks EXPORT, help ;-) ?

2013-11-02 Thread Xebar Saram
Hi again all

i have been using the before discussed font lock with great success over
the past few weeks, thx alot for that tip!

one short question i have from using it thourhgly is weather its possible
to color specific words , IE not just text bound between symbols ( ie 
!text! ) but rather lets say i always want to make the word server appear
with blue FG. is this possible? currently i tried

(font-lock-add-keywords
 'org-mode
'((\\(server[^server\n]+server\\) (0 '(:foreground #00 :underline t
:background #FF9AEA :weight ultra-bold) t

instead of the original

(font-lock-add-keywords
 'org-mode
'((\\(₆[^₆\n]+₆\\) (0 '(:foreground #00 :underline t :background
#FF9AEA :weight ultra-bold) t


again i apologize for my regrex ignorance :)

best

Z




On Sun, Oct 6, 2013 at 8:04 AM, Eric Abrahamsen e...@ericabrahamsen.netwrote:

 Xebar Saram zelt...@gmail.com writes:

  thx again Eric
 
  i still have an issue with this when one of the symbols used to start
  /end the highlight is used in a sentence, for example using your
  code:
 
  (font-lock-add-keywords
   'org-mode
   '((-1-\\([^-1-]+\\)-1- (0 '(:weight ultra-bold :background #
  DDFFDD :foreground #00) t
 
  if i write this:
 
  -1- this is a test of 1x1 to show higlight -1-
 
  it will kill the highlight, if i use the same text omitting the '1'
  it works well, anyway around this issue? i thought it would have
  matcehd -1- but it seems it matches also just 1 by itself
 
  best wishes and thx again

 Yup, the things inside the [^] construct, to _not_ be matched, are
 treated as a list of single characters. So you're saying anything
 that's not a '1' or a '-', but then you've got a '1' in the middle of
 the line. If you want the highlighting to include any character, but not
 span newlines, you could just use [^\n] instead.

 At this point you'll probably want to read the regular expression part
 of the manual:

 (elisp) Regular Expressions

 I think you mentioned you don't have a lot of programming experience.
 That's a bit unfortunate, since regexps aren't a great place to start!
 I'd recommend getting something that's close enough, and not going
 down the rabbit hole of perfect. Then start at the top of the
 introduction to elisp...

 Good luck,
 Eric





Re: [O] custom emacs org-emphasis-alist breaks EXPORT, help ;-) ?

2013-11-02 Thread Eric Abrahamsen
Xebar Saram zelt...@gmail.com writes:

 Hi again all

 i have been using the before discussed font lock with great success
 over the past few weeks, thx alot for that tip!

 one short question i have from using it thourhgly is weather its
 possible to color specific words , IE not just text bound between
 symbols ( ie  !text! ) but rather lets say i always want to make the
 word server appear with blue FG. is this possible? currently i tried 

 (font-lock-add-keywords
  'org-mode
 '((\\(server[^server\n]+server\\) (0 '(:foreground #00
 :underline t :background #FF9AEA :weight ultra-bold) t

At some point you're definitely going to want to read up on regular
expressions!

But in the meantime yes, it's entirely (mostly) possible. A regular
expression is just a way of finding desired pieces of text in a larger
run of text. Think of the regexp as an instruction that starts: Find
all pieces of text that are...

All the special regexp characters are just a way of making the
instruction general (_any_ number, four of _any_ character, _anything_
that's not a p).

In the most basic case, however, a regexp is simply the text you want to
find: Find all pieces of text that are 'server'. In this case, that's
your regexp: server.

The reason regexps are difficult, of course, is that they can't read
your mind, and will find things you didn't want, and not find things you
did want. So much of messing with regexps is telling them: _yes_ this
too, _no_ not that. In your case, you'd probably want to put word
boundaries around the regexp (\b on either side), and find both
capitalized and lowercase instances of the word. So your instruction
might be:

Find all pieces of text that are 'server' or 'Server', but only as a
complete word.

Which would look like

\\b[Ss]erver\\b

Give that a shot. You're jumping into the middle of something fairly
complicated, so be patient and go slow!

E

 instead of the original

 (font-lock-add-keywords
  'org-mode
 '((\\(₆[^₆\n]+₆\\) (0 '(:foreground #00 :underline t
 :background #FF9AEA :weight ultra-bold) t


 again i apologize for my regrex ignorance :)

 best

 Z




 On Sun, Oct 6, 2013 at 8:04 AM, Eric Abrahamsen 
 e...@ericabrahamsen.net wrote:

 Xebar Saram zelt...@gmail.com writes:

  thx again Eric
 
  i still have an issue with this when one of the symbols used to
 start
  /end the highlight is used in a sentence, for example using
 your
  code:
 
  (font-lock-add-keywords
   'org-mode
   '((-1-\\([^-1-]+\\)-1- (0 '(:weight ultra-bold :background 
 #
  DDFFDD :foreground #00) t
 
  if i write this:
 
  -1- this is a test of 1x1 to show higlight -1-
 
  it will kill the highlight, if i use the same text omitting the
 '1'
  it works well, anyway around this issue? i thought it would
 have
  matcehd -1- but it seems it matches also just 1 by itself
 
  best wishes and thx again

 Yup, the things inside the [^] construct, to _not_ be matched,
 are
 treated as a list of single characters. So you're saying
 anything
 that's not a '1' or a '-', but then you've got a '1' in the
 middle of
 the line. If you want the highlighting to include any character,
 but not
 span newlines, you could just use [^\n] instead.

 At this point you'll probably want to read the regular expression
 part
 of the manual:

 (elisp) Regular Expressions

 I think you mentioned you don't have a lot of programming
 experience.
 That's a bit unfortunate, since regexps aren't a great place to
 start!
 I'd recommend getting something that's close enough, and not
 going
 down the rabbit hole of perfect. Then start at the top of the
 introduction to elisp...

 Good luck,
 Eric






Re: [O] export to odt, change the default font.

2013-11-02 Thread Jambunathan K

Looks like there are many people who are new to LibreOffice in general.
I strongly recommend this document.

http://wiki.documentfoundation.org/File:Ooo_for_students.odt

for introductory reading.

Jambunathan K kjambunat...@gmail.com writes:

 Uwe Brauer o...@mat.ucm.es writes:

 Hello

 I am searching the docs in order to configure the odt-export function. I
 cannot find anything concerning fonts. 

 I would like to have hebrew text exported using a particular font. 

 Can anybody give me a hint?

 1. Search for Stylist in the LibreOffice documents.  
 2. Make your font selection or whatever you want to change.
 3. Create a .ott file for the Hebrew document.
 4. Use ODT_STLYES_FILE to use a document-specific style.

 If that doesn't work and if you report back, I can investigate further
 and cook up a fix.

 

 As an aside, LibreOffice Stylist doesn't cater to table related
 elements.  Meaning, the Tables have to be styled using automatic styles
 (i.e., on a one-off basis, by hand).  So styling of Tables, is really an
 issue - Not exactly an issue, but a hassle - compared to other things.

 thanks

 Uwe Brauer 



Re: [O] problem with titles in odt export

2013-11-02 Thread Jambunathan K

I acknowledge the bug. (But I won't send a patch.)

What is your coding system? iso-latin-1... Switch to utf-8.  The
corruption will no longer happen.

M-x add-file-local-variable RET coding RET utf-8 RET
C-x C-s
C-x C-v RET
C-c C-e o

In a day or two, I will queue up a fix in my private repo.

http://repo.or.cz/w/org-mode/org-kjn.git

Vicente Vera vicente...@gmail.com writes:

 Hello. I think there's a problem when exporting to odt format with
 certain characters in #+TITLE lines. For example, exporting an org
 file with ñ (ntilde in HTML) or letters with acute accents
 (aacute, oacute, etc.) in the title---my document is written in
 spanish---results in a file with no title at all (nor author/date).
 Also, an error warning appears in LibreOffice when opening.
 The body of the document (headers, etc.) exports normally.

 I'm using GNU Emacs 24.3.1.
 Org-mode version 8.2.1 (8.2.1-15-ge5cecc-elpa @
 c:/emacs/.emacs.d/elpa/org-20131021/).

 Thank you very much for the great work.



Re: [O] RLT (hebrew) tables and org-odt-export-to-odt problems

2013-11-02 Thread Jambunathan K

In LibreOffice, 

Right click on the table-Table-Text Direction-Right-to-Left.

Now, does what you see seem right to you?

As a side-note, the OrgOdtStyles.xml using a LibreOffice that uses en-GB
(IN).  So, there could be issues when it is used with other
languages.

You will be better of creating a .ott file that uses language and
country of your choice.

See Tools-Options-Language Settings-Languages-Default Languages for
Documents-Whatever.

I have seen recommendations of using CTL-Hebrew.



As an experiment, look at your *Messages* buffer and see where the
exporter is loading OrgOdtStyles.xml from.  In the same directory, there
would be a OrgOdtContentTemplate.xml.  Look for the OrgTable style
spec.

style:style style:name=OrgTable style:family=table
  style:table-properties style:rel-width=96% fo:margin-top=0cm 
fo:margin-bottom=0.20cm table:align=center/
/style:style

Add a style:writing-mode=rl-tb to the table-properties. i.e., do this

style:style style:name=OrgTable style:family=table
  style:table-properties style:rel-width=96% fo:margin-top=0cm
  fo:margin-bottom=0.20cm table:align=center 
style:writing-mode=rl-tb/
/style:style

Now re-export.  See whether things are OK.

Rememeber, the style OrgTable (which is an automatic style because it
comes from content.xml and not styles.xml) gets applied to ALL your
tables.



As a developer note, the ox-odt.el already can create automatic-style
for tables.  If a table has a rel-width attr_odt line, it would use an
automatic style.  So it is just a matter of few 15 minutes for one to
add support for how a table is rendered.



Since we have an exporter framework in place, the question I would
probably ask is what does LaTeX do.  Meaning, is there a need to mark a
table as rtl when being exported to LaTeX.  If yes, what would be the
specific attribute that the maintainer of ox.el recommend.



I will queue up a fix for this in my private repo:

http://repo.or.cz/w/org-mode/org-kjn.git

I WILL merge my fixes and improvements once Emacs has the current
release cycle for Emacs is over.  If you try out the suggestions above
and give me feedback, I will factor in input in to my fix.



Uwe Brauer o...@mat.ucm.es writes:

 Hello 


 Please consider the following example of a hebrew text, which is written
 in logical form. 

   פרויקט   לשמור  מגדל   פיזה  שעלה  20  מיליון   אירו  השלים  לאחרונה. 

 When exported to odt, the first sentence is displayed correctly.
 However when I try to put it in a table as the following lines
 indicates.

 Then this table is displayed L2R.

 | פרויקט| לשמור| מגדל| פיזה| שעלה| 20| מיליון | אירו| השלים |
 לאחרונה.|
  

 I attach the odt file.

 This seems a sort of bug?

 Uwe Brauer 



Re: [O] Emulate a wiki a la wikidpad

2013-11-02 Thread Jambunathan K

I am in the process of adding support for Org-mode markup to the Oddmuse
wiki engine.  I call the new wiki Orgmuse.

Interested people can watch for my announcements in this space.

http://www.oddmuse.org/wiki/Org_Markup_Extension

or watch the churnings in 
  
http://repo.or.cz/w/orgmuse.git 

I planning to merge the Org modules to Oddmuse repo.

Marcelo de Moraes Serpa celose...@gmail.com writes:

 Hey guys,

 I love orgmode and I've been using it for many years. I know there are
 wiki extensions for it and other extensions for emacs, but I've never
 found something as easy and straightforwards as WikiDPad. Wikidpad is
 a real-time wiki. It's really cool (http://wikidpad.sourceforge.net/).

 What I'm looking for is an extension that could automatically link
 camecased words in org files, and create its respective file in a
 specific directory, if the file does not exist. I know it wouldn't be
 too difficult to implement, but I'd like to check here first before
 trying to come up with a solution myself.

 The rationale is that it's a really great way to keep reference data,
 and since it's in real time, you don't need to export to a format like
 HTML to view it. It's just so convenient when brainstorming or for
 keeping notes.

 Cheers!

 Marcelo.



Re: [O] Importing from Oddmuse?

2013-11-02 Thread Jambunathan K
Peter Davis p...@pfdstudio.com writes:

 I've used Oddmuse for years to maintain my own personal Wiki, but now
 I'm looking to move to Org mode.

I am in the process of adding Org-mode markup support to the Oddmuse
wiki engine.  (By support I mean, only the text markup not agenda or
babel related stuff) 

I have some changes in my local work-area that is promising.

Interested people can watch out for activity in this space - 

   http://oddmuse.org/wiki/Org_Markup_Extension

One can also look at the churnings happening here:

   http://repo.or.cz/w/orgmuse.git



Re: [O] export to odt, change the default font.

2013-11-02 Thread Jambunathan K
Uwe Brauer o...@mat.ucm.es writes:

 Hello

 I am searching the docs in order to configure the odt-export function. I
 cannot find anything concerning fonts. 

 I would like to have hebrew text exported using a particular font. 

 Can anybody give me a hint?

1. Search for Stylist in the LibreOffice documents.  
2. Make your font selection or whatever you want to change.
3. Create a .ott file for the Hebrew document.
4. Use ODT_STLYES_FILE to use a document-specific style.

If that doesn't work and if you report back, I can investigate further
and cook up a fix.



As an aside, LibreOffice Stylist doesn't cater to table related
elements.  Meaning, the Tables have to be styled using automatic styles
(i.e., on a one-off basis, by hand).  So styling of Tables, is really an
issue - Not exactly an issue, but a hassle - compared to other things.

 thanks

 Uwe Brauer 



[O] Feature request for ox.el: add input-buffer attribute to INFO list

2013-11-02 Thread Thorsten Jolitz

Hi List, 

in ox.el I find 

#+begin_src emacs-lisp
(defun org-export--get-buffer-attributes ()
  Return properties related to buffer attributes, as a plist.
  ;; Store full path of input file name, or nil.  For internal use.
  (list :input-file (buffer-file-name (buffer-base-buffer
#+end_src

and consequently :input-file is nil if I export a buffer without an
associated file (what I do quite often for some reason). 

Wouldn't it make sense to call this attribute :input-buffer-or-file or
so and store 'full path of input file name' if there is an associated
file, and the buffer name otherwise (instead of just nil)?

Obviously, this extra information did not seem useful for the default
use case of the Org exporter so it wasn't included in the communication
channel. However, for other use cases it might be necessary to e.g. tag
headlines with a unique ID of the original parse-tree they belonged to,
and using the input-file (or input-buffer) name when creating this unique
ID seems only logical. 

-- 
cheers,
Thorsten




Re: [O] custom emacs org-emphasis-alist breaks EXPORT, help ;-) ?

2013-11-02 Thread Xebar Saram
Thanks Eric , really appreciate the continuous help!

i do plan to get into rexeg on the future (i promise :)) but real life now
just allow me to allocate time (i started an assistant professor position
and time is at a huge premium..).

i tried using this as i tried to understand from your email, but i guess im
again doing something wrong. shouldn't the below example color salt, it
dosent see to work.

;test
(font-lock-add-keywords
 'org-mode
'((\b[Ss]alt\\b) (0 '(:weight ultra-bold :foregroun #FF9800) t

thank you for all your help



On Sat, Nov 2, 2013 at 12:15 PM, Eric Abrahamsen e...@ericabrahamsen.netwrote:

 Xebar Saram zelt...@gmail.com writes:

  Hi again all
 
  i have been using the before discussed font lock with great success
  over the past few weeks, thx alot for that tip!
 
  one short question i have from using it thourhgly is weather its
  possible to color specific words , IE not just text bound between
  symbols ( ie  !text! ) but rather lets say i always want to make the
  word server appear with blue FG. is this possible? currently i tried
 
  (font-lock-add-keywords
   'org-mode
  '((\\(server[^server\n]+server\\) (0 '(:foreground #00
  :underline t :background #FF9AEA :weight ultra-bold) t

 At some point you're definitely going to want to read up on regular
 expressions!

 But in the meantime yes, it's entirely (mostly) possible. A regular
 expression is just a way of finding desired pieces of text in a larger
 run of text. Think of the regexp as an instruction that starts: Find
 all pieces of text that are...

 All the special regexp characters are just a way of making the
 instruction general (_any_ number, four of _any_ character, _anything_
 that's not a p).

 In the most basic case, however, a regexp is simply the text you want to
 find: Find all pieces of text that are 'server'. In this case, that's
 your regexp: server.

 The reason regexps are difficult, of course, is that they can't read
 your mind, and will find things you didn't want, and not find things you
 did want. So much of messing with regexps is telling them: _yes_ this
 too, _no_ not that. In your case, you'd probably want to put word
 boundaries around the regexp (\b on either side), and find both
 capitalized and lowercase instances of the word. So your instruction
 might be:

 Find all pieces of text that are 'server' or 'Server', but only as a
 complete word.

 Which would look like

 \\b[Ss]erver\\b

 Give that a shot. You're jumping into the middle of something fairly
 complicated, so be patient and go slow!

 E

  instead of the original
 
  (font-lock-add-keywords
   'org-mode
  '((\\(₆[^₆\n]+₆\\) (0 '(:foreground #00 :underline t
  :background #FF9AEA :weight ultra-bold) t
 
 
  again i apologize for my regrex ignorance :)
 
  best
 
  Z
 
 
 
 
  On Sun, Oct 6, 2013 at 8:04 AM, Eric Abrahamsen 
  e...@ericabrahamsen.net wrote:
 
  Xebar Saram zelt...@gmail.com writes:
 
   thx again Eric
  
   i still have an issue with this when one of the symbols used to
  start
   /end the highlight is used in a sentence, for example using
  your
   code:
  
   (font-lock-add-keywords
'org-mode
'((-1-\\([^-1-]+\\)-1- (0 '(:weight ultra-bold :background 
  #
   DDFFDD :foreground #00) t
  
   if i write this:
  
   -1- this is a test of 1x1 to show higlight -1-
  
   it will kill the highlight, if i use the same text omitting the
  '1'
   it works well, anyway around this issue? i thought it would
  have
   matcehd -1- but it seems it matches also just 1 by itself
  
   best wishes and thx again
 
  Yup, the things inside the [^] construct, to _not_ be matched,
  are
  treated as a list of single characters. So you're saying
  anything
  that's not a '1' or a '-', but then you've got a '1' in the
  middle of
  the line. If you want the highlighting to include any character,
  but not
  span newlines, you could just use [^\n] instead.
 
  At this point you'll probably want to read the regular expression
  part
  of the manual:
 
  (elisp) Regular Expressions
 
  I think you mentioned you don't have a lot of programming
  experience.
  That's a bit unfortunate, since regexps aren't a great place to
  start!
  I'd recommend getting something that's close enough, and not
  going
  down the rabbit hole of perfect. Then start at the top of the
  introduction to elisp...
 
  Good luck,
  Eric
 
 





Re: [O] Feature request for ox.el: add input-buffer attribute to INFO list

2013-11-02 Thread Nicolas Goaziou
Hello,

Thorsten Jolitz tjol...@gmail.com writes:

 in ox.el I find

 #+begin_src emacs-lisp
 (defun org-export--get-buffer-attributes ()
   Return properties related to buffer attributes, as a plist.
   ;; Store full path of input file name, or nil.  For internal use.
   (list :input-file (buffer-file-name (buffer-base-buffer
 #+end_src

 and consequently :input-file is nil if I export a buffer without an
 associated file (what I do quite often for some reason). 

 Wouldn't it make sense to call this attribute :input-buffer-or-file or
 so and store 'full path of input file name' if there is an associated
 file, and the buffer name otherwise (instead of just nil)?

 Obviously, this extra information did not seem useful for the default
 use case of the Org exporter so it wasn't included in the communication
 channel. However, for other use cases it might be necessary to e.g. tag
 headlines with a unique ID of the original parse-tree they belonged to,
 and using the input-file (or input-buffer) name when creating this unique
 ID seems only logical.

I added :input-buffer to the communication channel.


Regards,

-- 
Nicolas Goaziou



Re: [O] Feature request for ox.el: add input-buffer attribute to INFO list

2013-11-02 Thread Thorsten Jolitz
Nicolas Goaziou n.goaz...@gmail.com writes:

 Wouldn't it make sense to call this attribute :input-buffer-or-file or
 so and store 'full path of input file name' if there is an associated
 file, and the buffer name otherwise (instead of just nil)?

 I added :input-buffer to the communication channel.

Thanks for the quick response! Helps me to avoid inventing some
workaround ...

-- 
cheers,
Thorsten




Re: [O] Beamer export: one question and one bug

2013-11-02 Thread Ista Zahn
On Mon, Oct 28, 2013 at 10:13 AM, Nick Dokos ndo...@gmail.com wrote:
 Jarmo Hurri jarmo.hu...@syk.fi writes:

 Greetings again.

 1. First the question: when I export the org file below as Beamer (C-c
C-e l O), I get an empty outline. How do I fix this?

 Seems to work fine for me with the older version that I was running,
 but I upgraded to latest and I get the beamer presentation I expected.

 I think I posed my initial question in a way that begs for a
 misunderstanding. When I export the file as Beamer, I get a title page,
 two slides _and_ an empty outline. Maybe someone interpreted my initial
 question to mean that I get _only_ an empty outline. I would like for
 the titles of the slides to appear in the outline. How do I achieve
 this?

 (I know that I can get rid of the outline by setting toc:nil.)


 Ah, indeed I misunderstood.

 AFAIK, toc-entries are created by \section{...} and the beamer exporter
 does not add \section headers - there might be a way to do that but I
 don't know it.

Set '#OPTIONS: H:2', then top level headlines become sections (and are
listed in the table of contents) and second-level headlines become the
frames. For example:

#+TITLE: Beamer test
#+OPTIONS: ':nil *:t -:t ::t :t H:2 \n:nil ^:t arch:headline
#+OPTIONS: author:t c:nil creator:comment d:(not LOGBOOK) date:t e:t
#+OPTIONS: email:nil f:t inline:t num:t p:nil pri:nil prop:nil stat:t
#+OPTIONS: tags:t tasks:t tex:t timestamp:t toc:t todo:t |:t
#+CREATOR: Emacs 24.2.1 (Org mode 8.2.1)
#+DESCRIPTION:
#+EXCLUDE_TAGS: noexport
#+KEYWORDS:
#+LANGUAGE: en
#+SELECT_TAGS: export

* This is the first section
** This is the first slide
   - with some fancy text

* This is the second section
** And this is the second slide
  - with one commented item...
#  - ... containing a [[https://www.google.com/#q%3Dorg%2Bmode][link]]
that will amaze the reader


Best,
Ista

 There also might be a beamer way of having frames add their title to the
 TOC without \section help, but again I don't know whether that's
 possible.

 Nick





[O] list labels - fixing a label

2013-11-02 Thread paul

In LaTeX we can specifically set enumi, enumii etc. to skip list items. 

Is there any way to do something similar with org lists? Simply started
at 2) or whatever doesn't work - when you add new items they all get
renumbered.





Re: [O] list labels - fixing a label

2013-11-02 Thread Achim Gratz
p...@rudin.co.uk writes:
 In LaTeX we can specifically set enumi, enumii etc. to skip list items. 

 Is there any way to do something similar with org lists? Simply started
 at 2) or whatever doesn't work - when you add new items they all get
 renumbered.

You could consult the manual and find that starting an ordered list
entry with e.g. [@20] would set the enumeration to that value and then
increment later entries from there.



Regards,
Achim.
-- 
+[Q+ Matrix-12 WAVE#46+305 Neuron microQkb Andromeda XTk Blofeld]+

Waldorf MIDI Implementation  additional documentation:
http://Synth.Stromeko.net/Downloads.html#WaldorfDocs




Re: [O] list labels - fixing a label

2013-11-02 Thread paul
Achim Gratz strom...@nexgo.de writes:

 p...@rudin.co.uk writes:
 In LaTeX we can specifically set enumi, enumii etc. to skip list items. 

 Is there any way to do something similar with org lists? Simply started
 at 2) or whatever doesn't work - when you add new items they all get
 renumbered.

 You could consult the manual and find that starting an ordered list
 entry with e.g. [@20] would set the enumeration to that value and then
 increment later entries from there.

Aha! Thank you. The manual does indeed describe that.

However it doesn't seem to work in quite the way one (or at least I)
might expect. If I type:

1)
2)

and then I hit M-RET I'll get:

1)
2)
3)

But if have:

1)
[@3])

and then I hit M-RET I'll get:

1)
[@3])
*

so it seems that that the last item isn't recognised as a list item. I
guess I was expecting to get:

1)
[@3])
4)







Re: [O] list labels - fixing a label

2013-11-02 Thread Achim Gratz
Try:

 1)
 2) [@3]


Regards,
Achim.
-- 
+[Q+ Matrix-12 WAVE#46+305 Neuron microQkb Andromeda XTk Blofeld]+

Factory and User Sound Singles for Waldorf Blofeld:
http://Synth.Stromeko.net/Downloads.html#WaldorfSounds




Re: [O] Org-Mode newbie, configuration?

2013-11-02 Thread Mark Edgington
Hi Joe,

While it isn't org-mode specific, you might want to take a look at Eric
Schulte's Emacs Starter Kit configuration
(http://eschulte.github.io/emacs24-starter-kit/) -- it includes some
org-mode settings, and is an example of a great way of maintaining your
emacs configuration.

Regards,

Mark





[O] Org-protocol not working

2013-11-02 Thread Marcin Borkowski
Hi list,

I had a bookmarklet in Firefox to grab page addresses as bookmarks in
a capture.org file.  A few days (or so) ago, it seemingly stopped
working.  (AFAIR, I did an upgrade of Firefox version.)  Did anyone else
noticed something like this?  How to debug this (both on Emacs and
Firefox side), since I even don't know how to file a proper bug report
(other than it doesn't work, which is probably not very helpful)?

TIA,

-- 
Marcin Borkowski
http://octd.wmi.amu.edu.pl/en/Marcin_Borkowski
Adam Mickiewicz University



[O] [Exporter] Why is :author a list in the communication channel?

2013-11-02 Thread Thorsten Jolitz

Hi List, 

I wonder why the :author attribute in INFO is a list (while :email,
:creator and others are not)?

It would make sense if several authors would be collected as a list of
strings, like e.g.

,-
| (Thorsten Jolitz Thomas Mueller)
`-

but I don't know how to write the #+AUTHOR: information to achieve
that.

This

,
| #+AUTHOR: Thorsten Jolitz Thomas Mueller
`

and other versions I tried (with comma or double quotes as separators)
always results in a single string element inside the :author list

,---
| (Thorsten Jolitz Thomas Mueller)
`---

so why make the value a list and not a string?


-- 
cheers,
Thorsten





[O] Very large svg file output from latex block using =#+header: :imagemagick=

2013-11-02 Thread John Hendy
I'm trying to following along with the example here:
- http://orgmode.org/worg/org-contrib/babel/languages/ob-doc-LaTeX.html#sec-4-3

I don't need dual export, so I tried this instead for straight html
compatible output:

#+header: :file tree.svg
#+header: :imagemagick
#+begin_src latex
  \usetikzlibrary{trees}
  \begin{tikzpicture}
\node [circle, draw, fill=red!20] at (0,0) {1}
child { node [circle, draw, fill=blue!30] {2}
  child { node [circle, draw, fill=green!30] {3} }
  child { node [circle, draw, fill=yellow!30] {4} }};
  \end{tikzpicture}
#+end_src

Should this work? I get this error:

org-babel-execute:latex: Can not create svg files, please specify a
.png or .pdf file or try the :imagemagick header argument

In perusing another thread, it looks like the argument might be
=:imagemagic yes=?
- http://lists.gnu.org/archive/html/emacs-orgmode/2011-02/msg01302.html

When I do that and run the above, I get a 30.9mb file as the .svg
output. Surely I'm doing something incorrectly?

Just pulled this morning before executing:

Org-mode version 8.2.1 (release_8.2.1-163-ge7397d @
/home/jwhendy/.elisp/org.git/lisp/)


Thanks for any suggestions!
John



Re: [O] [Exporter] Why is :author a list in the communication channel?

2013-11-02 Thread Nicolas Goaziou
Hello,

Thorsten Jolitz tjol...@gmail.com writes:

 I wonder why the :author attribute in INFO is a list (while :email,
 :creator and others are not)?

:author's value is parsed, as all keywords in
`org-element-document-properties'. So its value is a secondary string,
i.e. an element without type.


Regards,

-- 
Nicolas Goaziou



Re: [O] custom emacs org-emphasis-alist breaks EXPORT, help ;-) ?

2013-11-02 Thread Jambunathan K

Working with font-lock keywords is quite messy.  The good news is that
you don't have to do it.  

If you want highlighting in the buffer or a file (and but not in the
exported buffer), just go with hi-lock-mode.

The relevant manual page is at

C-h K C-x w b

In your Org file do this,

C-x C-f somefile.org
M-x hi-lock-mode RET
C-x w p server 
M-
C-x w b
C-x C-s
C-x k
C-x C-f somefile.org

When you reopen the file hi-lock may ask some confusing questions.
Answer those.

You will see that now whenever you open the file, the word `server' is
always highlighted.

If you are adventurous, you can do

   C-h v font-lock-keywords 

within the org file and examine how it looks like for specific keywords
you have added.



Xebar Saram zelt...@gmail.com writes:

 Thanks Eric , really appreciate the continuous help!

 i do plan to get into rexeg on the future (i promise :)) but real life
 now just allow me to allocate time (i started an assistant professor
 position and time is at a huge premium..).

 i tried using this as i tried to understand from your email, but i
 guess im again doing something wrong. shouldn't the below example
 color salt, it dosent see to work.

 ;test
 (font-lock-add-keywords
 'org-mode
 '((\b[Ss]alt\\b) (0 '(:weight ultra-bold :foregroun #FF9800) t

 thank you for all your help

 On Sat, Nov 2, 2013 at 12:15 PM, Eric Abrahamsen
 e...@ericabrahamsen.net wrote:

 Xebar Saram zelt...@gmail.com writes:
 
  Hi again all
 
  i have been using the before discussed font lock with great
 success
  over the past few weeks, thx alot for that tip!
 
  one short question i have from using it thourhgly is weather its
  possible to color specific words , IE not just text bound
 between
  symbols ( ie  !text! ) but rather lets say i always want to
 make the
  word server appear with blue FG. is this possible? currently i
 tried 
 
  (font-lock-add-keywords
  'org-mode
  '((\\(server[^server\n]+server\\) (0 '(:foreground #00
  :underline t :background #FF9AEA :weight ultra-bold) t
 
 
 At some point you're definitely going to want to read up on
 regular
 expressions!
 
 But in the meantime yes, it's entirely (mostly) possible. A
 regular
 expression is just a way of finding desired pieces of text in a
 larger
 run of text. Think of the regexp as an instruction that starts:
 Find
 all pieces of text that are...
 
 All the special regexp characters are just a way of making the
 instruction general (_any_ number, four of _any_ character, _
 anything_
 that's not a p).
 
 In the most basic case, however, a regexp is simply the text you
 want to
 find: Find all pieces of text that are 'server'. In this case,
 that's
 your regexp: server.
 
 The reason regexps are difficult, of course, is that they can't
 read
 your mind, and will find things you didn't want, and not find
 things you
 did want. So much of messing with regexps is telling them: _yes_
 this
 too, _no_ not that. In your case, you'd probably want to put word
 boundaries around the regexp (\b on either side), and find both
 capitalized and lowercase instances of the word. So your
 instruction
 might be:
 
 Find all pieces of text that are 'server' or 'Server', but only
 as a
 complete word.
 
 Which would look like
 
 \\b[Ss]erver\\b
 
 Give that a shot. You're jumping into the middle of something
 fairly
 complicated, so be patient and go slow!
 
 
 
 E
 
  instead of the original
 
  (font-lock-add-keywords
  'org-mode
  '((\\(₆[^₆\n]+₆\\) (0 '(:foreground #00 :underline t
  :background #FF9AEA :weight ultra-bold) t
 
 
  again i apologize for my regrex ignorance :)
 
  best
 
  Z
 
 
 
 
  On Sun, Oct 6, 2013 at 8:04 AM, Eric Abrahamsen 
  e...@ericabrahamsen.net wrote:
 
  Xebar Saram zelt...@gmail.com writes:
 
   thx again Eric
  
   i still have an issue with this when one of the symbols used
 to
  start
   /end the highlight is used in a sentence, for example using
  your
   code:
  
   (font-lock-add-keywords
   'org-mode
   '((-1-\\([^-1-]+\\)-1- (0 '(:weight ultra-bold :background 
  #
   DDFFDD :foreground #00) t
  
   if i write this:
  
   -1- this is a test of 1x1 to show higlight -1-
  
   it will kill the highlight, if i use the same text omitting
 the
  '1'
   it works well, anyway around this issue? i thought it would
  have
   matcehd -1- but it seems it matches also just 1 by itself
  
   best wishes and thx again
 
  Yup, the things inside the [^] construct, to _not_ be matched,
  

Re: [O] [RFC] Do not declare drawers to use them

2013-11-02 Thread Samuel Wales
I think these patches are increasing Org load time by orders of
magnitude.  Finding 7 files now takes a minute and a half.

-- 
The Kafka Pandemic: http://thekafkapandemic.blogspot.com

The disease DOES progress.  MANY people have died from it.  ANYBODY can get it.

Denmark: free Karina Hansen NOW.



Re: [O] [RFC] Do not declare drawers to use them

2013-11-02 Thread Samuel Wales
Beforehand, I could find them in a second or two max.

On 11/2/13, Samuel Wales samolog...@gmail.com wrote:
 I think these patches are increasing Org load time by orders of
 magnitude.  Finding 7 files now takes a minute and a half.

-- 
The Kafka Pandemic: http://thekafkapandemic.blogspot.com

The disease DOES progress.  MANY people have died from it.  ANYBODY can get it.

Denmark: free Karina Hansen NOW.



Re: [O] [Exporter] Why is :author a list in the communication channel?

2013-11-02 Thread Thorsten Jolitz
Nicolas Goaziou n.goaz...@gmail.com writes:

 Hello,

 Thorsten Jolitz tjol...@gmail.com writes:

 I wonder why the :author attribute in INFO is a list (while :email,
 :creator and others are not)?

 :author's value is parsed, as all keywords in
 `org-element-document-properties'. So its value is a secondary string,
 i.e. an element without type.

Ah, ok, so these

,-
| org-element-document-properties is a variable defined in
| `org-element.el'.
| Its value is (AUTHOR DATE TITLE)
`-

are different from the others. Thanks.

--
cheers,
Thorsten




Re: [O] [RFC] Do not declare drawers to use them

2013-11-02 Thread Nicolas Goaziou
Hello,

Samuel Wales samolog...@gmail.com writes:

 Beforehand, I could find them in a second or two max.

 On 11/2/13, Samuel Wales samolog...@gmail.com wrote:
 I think these patches are increasing Org load time by orders of
 magnitude.  Finding 7 files now takes a minute and a half.

Interesting. Could you provide some profiling information?

Thank you.


Regards,

-- 
Nicolas Goaziou



[O] org-babel-load-file

2013-11-02 Thread Sam Flint
I'm trying to switch to using a org-mode based LP configuration.  When I
put `(org-babel-load-file ~/.emacs.org)` after I load org-mode, I get
load-file: Cannot open load file: /home/swflint/.emacs.el
I am using Org version 8.2.1

Any help would be appreciated.

Thanks,
Sam

-- 
Sam Flint
swfl...@flintfam.org
freenode: swflint
(402) 517-8468
http://flintfam.org/~swflint
BAFBF3FF



Re: [O] [Exporter] Why is :author a list in the communication channel?

2013-11-02 Thread Aaron Ecay
Hi Thorsten,

I would have expected multiple author lines to have this effect, so that
your desired list of two authors would be generated by:
,
| #+author: Thorsten Jolitz
| #+author: Thomas Mueller
`

But it seems that only the last #+author line is used; previous ones are
discarded.  Maybe the :author plist entry should just be converted into
a string.  But if it remains a list to somehow support multiply-authored
documents, I think the most natural way to specify the entries is with
multiple lines as above.

--
Aaron Ecay



Re: [O] [RFC] Do not declare drawers to use them

2013-11-02 Thread Samuel Wales
It is the difference between instantaneous and more than 10 seconds
per Org file.

If you tell me the symbols to elp profile, I will do so.  I can't do
the polling profiler.

On 11/2/13, Nicolas Goaziou n.goaz...@gmail.com wrote:
 Hello,

 Samuel Wales samolog...@gmail.com writes:

 Beforehand, I could find them in a second or two max.

 On 11/2/13, Samuel Wales samolog...@gmail.com wrote:
 I think these patches are increasing Org load time by orders of
 magnitude.  Finding 7 files now takes a minute and a half.

 Interesting. Could you provide some profiling information?

 Thank you.


 Regards,

 --
 Nicolas Goaziou



-- 
The Kafka Pandemic: http://thekafkapandemic.blogspot.com

The disease DOES progress.  MANY people have died from it.  ANYBODY can get it.

Denmark: free Karina Hansen NOW.



Re: [O] [RFC] Do not declare drawers to use them

2013-11-02 Thread Nicolas Goaziou
Hello,

Samuel Wales samolog...@gmail.com writes:

 It is the difference between instantaneous and more than 10 seconds
 per Org file.

 If you tell me the symbols to elp profile, I will do so.  I can't do
 the polling profiler.

Instrumenting package org would be useful.


Regards,

-- 
Nicolas Goaziou



Re: [O] [RFC] Do not declare drawers to use them

2013-11-02 Thread Samuel Wales
Instrumenting package org is not an option.

On 11/2/13, Nicolas Goaziou n.goaz...@gmail.com wrote:
 Hello,

 Samuel Wales samolog...@gmail.com writes:

 It is the difference between instantaneous and more than 10 seconds
 per Org file.

 If you tell me the symbols to elp profile, I will do so.  I can't do
 the polling profiler.

 Instrumenting package org would be useful.


 Regards,

 --
 Nicolas Goaziou



-- 
The Kafka Pandemic: http://thekafkapandemic.blogspot.com

The disease DOES progress.  MANY people have died from it.  ANYBODY can get it.

Denmark: free Karina Hansen NOW.



Re: [O] [RFC] Do not declare drawers to use them

2013-11-02 Thread Nicolas Goaziou
Samuel Wales samolog...@gmail.com writes:

 Instrumenting package org is not an option.

Hmmm. Could you send me an example file then? You can replace
[a-zA-Z0-9] with x if needed.


Regards,

-- 
Nicolas Goaziou



[O] org-mode in the wild

2013-11-02 Thread John Kitchin
Hi everyone,

We had another manuscript written in org-mode accepted in Topics in
Catalysis (http://link.springer.com/article/10.1007%2Fs11244-013-0166-3)!
Check out references 14, 39 and 40 ;)

The supporting information seems to be freely available (
http://link.springer.com/content/esm/art:10.1007/s11244-013-0166-3/file/MediaObjects/11244_2013_166_MOESM1_ESM.pdf)
was also prepared in org-mode. It is probably best read with the Adobe PDF
reader. This file is an interesting hybrid of data sharing methods. Some of
the data is in the pdf, some of it is embedded in the pdf, including the
org-mode files for the manuscript and the supporting information file
itself. Anyone interested in seeing how we did it can check it out.

John

---
John Kitchin
Associate Professor
Doherty Hall A207F
Department of Chemical Engineering
Carnegie Mellon University
Pittsburgh, PA 15213
412-268-7803
http://kitchingroup.cheme.cmu.edu


Re: [O] org-mode in the wild

2013-11-02 Thread William Denton

On 2 November 2013, John Kitchin wrote:


We had another manuscript written in org-mode accepted in Topics in
Catalysis (http://link.springer.com/article/10.1007%2Fs11244-013-0166-3)!
Check out references 14, 39 and 40 ;)


Lovely!  Here's the start of section 4, Manuscript Preparation Method:

This manuscript was prepared in a manner sufficiently different than 
standard methods that we feel it warrants discussion. In this work, we 
have prepared a single document containing all of the raw data, the 
analysis of the raw data that has led to the figures and conclusions in 
the manuscript, and the manuscript itself. The document is in plain text 
format, marked up using org-mode syntax [14]. Org-mode is a lightweight 
text markup language that enables intermingling of narrative text, data 
and analysis code in an active document [39] when viewed in the editor 
Emacs (http://www.gnu.org/software/emacs/). This approach is known as 
literate programming and reproducible research [40]. Notably, files in 
org-mode syntax can be exported to a variety of other formats including 
LaTEX, PDF and html. The export can be done selectively to include only 
portions of the complete document. The published manuscript was exported 
from this document to create LaTEX source which was submitted to this 
journal. The Supplementary information file is the document itself, which 
includes all of the data used in the analysis. All analysis was done using 
Python (http://python.org), and figures were generated with Matplotlib 
[24]. All of these software packages are open-source and freely 
available.


The citations:

14. Dominik C (2010) The Org Mode 7 Reference Manual: Organize your life with 
GNU Emacs. Network Theory, UK.
39. Schulte E, Davison D (2011) Active documents with org-mode. Comput Sci Eng 
13(3):66–73
40. Schulte E, Davison D, Dye T, Dominik C (2012) A multi-language computing 
environment for literate programming and reproducible research. J Stat Softw 
46(3):1–24


Bill
--
William Denton
Toronto, Canada
http://www.miskatonic.org/


Re: [O] Very large svg file output from latex block using =#+header: :imagemagick=

2013-11-02 Thread Vladimir Lomov
Hello,
** John Hendy [2013-11-02 16:31:02 -0500]:

 I'm trying to following along with the example here:
 - 
 http://orgmode.org/worg/org-contrib/babel/languages/ob-doc-LaTeX.html#sec-4-3

 I don't need dual export, so I tried this instead for straight html
 compatible output:

 #+header: :file tree.svg
 #+header: :imagemagick
 #+begin_src latex
   \usetikzlibrary{trees}
   \begin{tikzpicture}
 \node [circle, draw, fill=red!20] at (0,0) {1}
 child { node [circle, draw, fill=blue!30] {2}
   child { node [circle, draw, fill=green!30] {3} }
   child { node [circle, draw, fill=yellow!30] {4} }};
   \end{tikzpicture}
 #+end_src

 Should this work? I get this error:

 org-babel-execute:latex: Can not create svg files, please specify a
 .png or .pdf file or try the :imagemagick header argument

 In perusing another thread, it looks like the argument might be
 =:imagemagic yes=?
 - http://lists.gnu.org/archive/html/emacs-orgmode/2011-02/msg01302.html

 When I do that and run the above, I get a 30.9mb file as the .svg
 output. Surely I'm doing something incorrectly?

I don't know details how latex fragments are translated into SVG but
there is good tool for this: dvisvgm. It is provided by TeX Live though
it works only on DVI files.

 Just pulled this morning before executing:

 Org-mode version 8.2.1 (release_8.2.1-163-ge7397d @
 /home/jwhendy/.elisp/org.git/lisp/)

 Thanks for any suggestions!
 John

---
WBR, Vladimir Lomov

-- 
Some performers on television appear to be horrible people, but when
you finally get to know them in person, they turn out to be even worse.
-- Avery



[O] set global visibility set to CONTENTS in a defun?

2013-11-02 Thread Matt Price
I am sure it's possible to do this ,but I can't seem to figure out how
to set the global visibility level of org headings to a pre-specified
level in a list function.

(org-global-cycle) cycles the visibility among OVERVIEW -- CONTENTS -- ALL
it accepts an optional argument, but whatever I put in the argument
(number, string, whatever) has the effet of setting visibility to
OVERVIEW, e.g..  I'm sure there's a trick I'm missing, could someone
please tell me what it is?

Thanks,
Matt



Re: [O] org-writers-room sort of works! just in time for NaNoWriMo

2013-11-02 Thread Matt Price
I've pushed a new version of org-writers-room to the repo,

https://github.com/titaniumbones/org-writers-room

It's still rather simple, but some of the awful usability bugs are less severe:
- org-writers-room can only be called from an org-mode buffer
- when disabled, org-writers-room gets rid of the extra windows it
created  Doesn't restore a pre-existing windowing setup yet,
unfortunately -- I would love some advice about how to do that.
- the guide window displays a half-decent collapsed outline of the
document by default.

Unfortunately, one you start typing the guide mode starts to display
your new text.  I don't know if there's a way around this, and
probably it would be better to use one of the existing outline modes
for the guide window, but I don't know how to use those.  Maybe
Thorsten or someone can comment on how to improve that.

I would also like to figure out better ways to manipulate the metadata
-- there must be an org-next-property or a way to simulate it with
org-element, but I haven't figured it out yet...

Anyway, it's a start.  Still very eager to hear from people trying it
out, or who would like to help out (I'm so slow!!!).

Thanks,
Matt



Re: [O] custom emacs org-emphasis-alist breaks EXPORT, help ;-) ?

2013-11-02 Thread Eric Abrahamsen
Xebar Saram zelt...@gmail.com writes:

 Thanks Eric , really appreciate the continuous help!

 i do plan to get into rexeg on the future (i promise :)) but real
 life now just allow me to allocate time (i started an assistant
 professor position and time is at a huge premium..).

 i tried using this as i tried to understand from your email, but i
 guess im again doing something wrong. shouldn't the below example
 color salt, it dosent see to work.

 ;test
 (font-lock-add-keywords
  'org-mode
 '((\b[Ss]alt\\b) (0 '(:weight ultra-bold :foregroun #FF9800)
 t

Looks like you're missing a backslash at the beginning of the regexp --
make sure it reads \\b...

E

 thank you for all your help



 On Sat, Nov 2, 2013 at 12:15 PM, Eric Abrahamsen 
 e...@ericabrahamsen.net wrote:

 Xebar Saram zelt...@gmail.com writes:

  Hi again all
 
  i have been using the before discussed font lock with great
 success
  over the past few weeks, thx alot for that tip!
 
  one short question i have from using it thourhgly is weather
 its
  possible to color specific words , IE not just text bound
 between
  symbols ( ie  !text! ) but rather lets say i always want to
 make the
  word server appear with blue FG. is this possible? currently i
 tried 
 
  (font-lock-add-keywords
   'org-mode
  '((\\(server[^server\n]+server\\) (0 '(:foreground #00
  :underline t :background #FF9AEA :weight ultra-bold) t

 At some point you're definitely going to want to read up on
 regular
 expressions!

 But in the meantime yes, it's entirely (mostly) possible. A
 regular
 expression is just a way of finding desired pieces of text in a
 larger
 run of text. Think of the regexp as an instruction that starts:
 Find
 all pieces of text that are...

 All the special regexp characters are just a way of making the
 instruction general (_any_ number, four of _any_ character,
 _anything_
 that's not a p).

 In the most basic case, however, a regexp is simply the text you
 want to
 find: Find all pieces of text that are 'server'. In this case,
 that's
 your regexp: server.

 The reason regexps are difficult, of course, is that they can't
 read
 your mind, and will find things you didn't want, and not find
 things you
 did want. So much of messing with regexps is telling them: _yes_
 this
 too, _no_ not that. In your case, you'd probably want to put word
 boundaries around the regexp (\b on either side), and find both
 capitalized and lowercase instances of the word. So your
 instruction
 might be:

 Find all pieces of text that are 'server' or 'Server', but only
 as a
 complete word.

 Which would look like

 \\b[Ss]erver\\b

 Give that a shot. You're jumping into the middle of something
 fairly
 complicated, so be patient and go slow!

 E

  instead of the original
 
  (font-lock-add-keywords
   'org-mode
  '((\\(₆[^₆\n]+₆\\) (0 '(:foreground #00 :underline t
  :background #FF9AEA :weight ultra-bold) t
 
 
  again i apologize for my regrex ignorance :)
 
  best
 
  Z
 
 
 
 
  On Sun, Oct 6, 2013 at 8:04 AM, Eric Abrahamsen 
  e...@ericabrahamsen.net wrote:
 
      Xebar Saram zelt...@gmail.com writes:
 
       thx again Eric
      
       i still have an issue with this when one of the symbols
 used to
      start
       /end the highlight is used in a sentence, for example
 using
      your
       code:
      
       (font-lock-add-keywords
        'org-mode
        '((-1-\\([^-1-]+\\)-1- (0 '(:weight ultra-bold
 :background 
      #
       DDFFDD :foreground #00) t
      
       if i write this:
      
       -1- this is a test of 1x1 to show higlight -1-
      
       it will kill the highlight, if i use the same text
 omitting the
      '1'
       it works well, anyway around this issue? i thought it
 would
      have
       matcehd -1- but it seems it matches also just 1 by itself
      
       best wishes and thx again
 
      Yup, the things inside the [^] construct, to _not_ be
 matched,
      are
      treated as a list of single characters. So you're saying
      anything
      that's not a '1' or a '-', but then you've got a '1' in
 the
      middle of
      the line. If you want the highlighting to include any
 character,
      but not
      span newlines, you could just use [^\n] instead.
 
      At this point you'll probably want to read the regular
 expression
      part
      of the manual:
 
      (elisp) Regular Expressions
 
      I think 

Re: [O] Babel Tangle issues

2013-11-02 Thread Pete Ley
Sam Flint swfl...@flintfam.org writes:

 I use org-babel to LP, and when I go to tangle, I get very little
 output, a shebang line and that is about it, I have noweb set to tangle,
 yet my references do not resolve.  Any ideas why?

Without seeing your specific setup, I can't say for sure, but I seem to
remember having a similar problem when I didn't set up my NAME lines
correctly with the code blocks I was trying to tangle. Can you post an
example of the code that isn't working?



Re: [O] org-mode in the wild

2013-11-02 Thread Thomas S. Dye
Aloha John,

This is wonderful! The pdf file is a user-friendly entry into the Org
mode compendium *and* an effective way to distribute it. Thanks for your
pioneering efforts.

All the best,
Tom

John Kitchin jkitc...@andrew.cmu.edu writes:

 Hi everyone,

 We had another manuscript written in org-mode accepted in Topics in
 Catalysis (http://link.springer.com/article/10.1007%2Fs11244-013-0166-3)!
 Check out references 14, 39 and 40 ;)

 The supporting information seems to be freely available (
 http://link.springer.com/content/esm/art:10.1007/s11244-013-0166-3/file/MediaObjects/11244_2013_166_MOESM1_ESM.pdf)
 was also prepared in org-mode. It is probably best read with the Adobe PDF
 reader. This file is an interesting hybrid of data sharing methods. Some of
 the data is in the pdf, some of it is embedded in the pdf, including the
 org-mode files for the manuscript and the supporting information file
 itself. Anyone interested in seeing how we did it can check it out.

 John

 ---
 John Kitchin
 Associate Professor
 Doherty Hall A207F
 Department of Chemical Engineering
 Carnegie Mellon University
 Pittsburgh, PA 15213
 412-268-7803
 http://kitchingroup.cheme.cmu.edu
 Hi everyone,

 We had another manuscript written in org-mode accepted in Topics in
 Catalysis
 (http://link.springer.com/article/10.1007%2Fs11244-013-0166-3)! Check
 out references 14, 39 and 40 ;)

 The supporting information seems to be freely available
 (http://link.springer.com/content/esm/art:10.1007/s11244-013-0166-3/file/MediaObjects/11244_
 2013_166_MOESM1_ESM.pdf) was also prepared in org-mode. It is probably
 best read with the Adobe PDF reader. This file is an interesting
 hybrid of data sharing methods. Some of the data is in the pdf, some
 of it is embedded in the pdf, including the org-mode files for the
 manuscript and the supporting information file itself. Anyone
 interested in seeing how we did it can check it out. 

 John

 ---
 John Kitchin
 Associate Professor
 Doherty Hall A207F
 Department of Chemical Engineering
 Carnegie Mellon University
 Pittsburgh, PA 15213
 412-268-7803
 http://kitchingroup.cheme.cmu.edu



-- 
Thomas S. Dye
http://www.tsdye.com