[O] shell scripts in yasnippet?

2015-09-03 Thread Tobias Frischholz
Hi there, right now I’m tinkering around with yasnippet. I was wondering if there’s a possibility to run a shell script and write its results in the text file. Specifically, I’m want to run “fortune” and put the results in a #+BEGIN_QUOTE…#+END_QUOTE block. Would that be possible? Best

Re: [O] File local circular links

2015-09-03 Thread Nicolas Goaziou
Hello, Michael Brand writes: > I use a hack to work around a missing feature that I would like to > call "file local circular links". It works until > release_8.2.10-2341-g8094d01 but stops with > release_8.2.10-2342-gcfe5bc9 > > commit

[O] File local circular links

2015-09-03 Thread Michael Brand
Hi all I use a hack to work around a missing feature that I would like to call "file local circular links". It works until release_8.2.10-2341-g8094d01 but stops with release_8.2.10-2342-gcfe5bc9 commit cfe5bc97f8b18ccbf49d0764746c7563ce8d29da Author: Nicolas Goaziou

Re: [O] merge trees?

2015-09-03 Thread Rasmus
Matt Price writes: > * Topics > ** Introduction > ** Crowds and Publics > ** Spatial History > > * Labs > ** Intro to HTML > ** Styling with CSS > ** The Google Maps Javascript API > > The two subtrees can be manipulated independently, then merged to create > something like:

Re: [O] merge trees?

2015-09-03 Thread Thomas S . Dye
Aloha Matt, Matt Price writes: > sounds interesting, can you send me a copy of the source? I don't usei > nternal links very much! Here is a link to the course syllabus and schedule, so you can see the result: http://www.tsdye.com/anth_323/anth_323_syllabus.html My

Re: [O] merge trees?

2015-09-03 Thread Matt Price
sounds interesting, can you send me a copy of the source? I don't usei nternal links very much! On Thu, Sep 3, 2015 at 1:48 PM, Thomas S. Dye wrote: > Aloha Matt, > > Matt Price writes: > > > Eveyr year at this time, I struggle with the structure of my

Re: [O] merge trees?

2015-09-03 Thread Thomas S . Dye
Aloha Matt, Matt Price writes: > Eveyr year at this time, I struggle with the structure of my course > syllabi, and move bits an pieces around with wild abandon. At the end of > my struggles, my course outline will be filled with headings like this: >

[O] Babel, var vrom property drawer in function call?

2015-09-03 Thread Kalev Takkis
Hi list, Is there a way to use variables defined as :var: in :PROPERTIES: drawer in function call? Such as ** Some heading :PROPERTIES: :var: par1="smth" :END: #+call: some-function(parameter=par1) Better yet, is there a way to have the function itself to figure out which

[O] merge trees?

2015-09-03 Thread Matt Price
Eveyr year at this time, I struggle with the structure of my course syllabi, and move bits an pieces around with wild abandon. At the end of my struggles, my course outline will be filled with headings like this: ** <2015-10-06 Tue> Spatial History Thinking about the

[O] @@beamer:some code@@ in math mode

2015-09-03 Thread Rafael
Apparently the shortcut @@beamer:some code@@ does not work in math mode. This: -- This is a test @@beamer:some code@@ to check \(x=@@beamer:y@@\) -- exports (in beamer export) to: -- This is a test some code to check \(x=@@beamer:y@@\) -- Could it be made to

Re: [O] Block level specification for tex code html export method

2015-09-03 Thread Andreas Leha
Hi Haochen, Thanks for following that up! Haochen Xie writes: > ​Hello > Alan, > > I'm not 100% sure, but I think the distorted PNG file is generated by dvipng. > It seems that dvipng cannot handle tikz blocks very well, and one must use > imagemagick for those blocks. I >

Re: [O] Block level specification for tex code html export method

2015-09-03 Thread Nicolas Goaziou
Hello, Andreas Leha writes: > This macro is from Eric Schulte initially. And I guess I would be out > of luck adapting it to new Org mode versions as well. What about (defmacro by-backend ( body) `(case org-export-current-backend ,@body)) ? Regards,

Re: [O] Block level specification for tex code html export method

2015-09-03 Thread Eric S Fraga
On Thursday, 3 Sep 2015 at 13:30, Andreas Leha wrote: > Hi Alan, > > Glad you like the example. > > Three things: > 1. It still works for me ;-) Andreas, the example doesn't work for me with a quite recent org (updated within the past week) and with -Q. By the way, with emacs -Q, I need to

Re: [O] Block level specification for tex code html export method

2015-09-03 Thread Andreas Leha
Hi Eric, Thanks for following that up! Eric S Fraga writes: > On Thursday, 3 Sep 2015 at 13:30, Andreas Leha wrote: >> Hi Alan, >> >> Glad you like the example. >> >> Three things: >> 1. It still works for me ;-) > > Andreas, > > the example doesn't work for me with a quite

[O] Templating with Org

2015-09-03 Thread Eric Abrahamsen
A while ago I asked about creating a system that repeats body text for many Org headings -- essentially writing an export template that is re-used for many headings. Search through Gmane is tedious and strangely inaccurate, so I'm not bothering to find the original thread. I've come up with a

[O] activate new org-tree-to-indirect-buffer to rename to name of heading

2015-09-03 Thread Rainer M Krug
Hi I am following an older discussion of mine (Subject: org-tree-to-indirect-buffer - naming and prefix in define keyboard key). I have #+begin_src emacs-lisp (define-key org-mode-map "\C-ci" (lambda () (interactive)

Re: [O] Block level specification for tex code html export method

2015-09-03 Thread Alan Schmitt
Hello Andreas, I’m slowly catching up on the org mailing list, and I found your example very interesting. I tried to run it and it does not seem to work here. Here is what I did: - I copied the code below to a file - I evaluated the last block - I made sure that latex was one of the

Re: [O] org-mac-link to Mail.app doesn't work as expected

2015-09-03 Thread Mike McLean
Tobias It's supposed to work regardless, in fact it stores the Message ID which should never change. Is there anything peculiar in your Mail setup? On Wed, Sep 2, 2015 at 3:10 PM, Tobias Frischholz wrote: > Hi there, > > I’m using org-mac-link.el ( >

Re: [O] [PATCH] org-mime: make plain/text mime export a choice

2015-09-03 Thread Jon Miller
Will O'Brien writes: > On 1 Sep 2015 08:18, "Nicolas Goaziou" wrote: >> >> Is there any reason to keep using "org" exporter if "ascii" is superior? >> I.e., what about simply replacing 'org with 'ascii? >> > > FWIW > > There's a nice use case for exporting as org. If I

Re: [O] Block level specification for tex code html export method

2015-09-03 Thread Haochen Xie
​Hello Alan, I'm not 100% sure, but I think the distorted PNG file is generated by dvipng. It seems that dvipng cannot handle tikz blocks very well, and one must use imagemagick for those blocks. I think this line: #+header: :imagemagick :iminoptions -density 600 :imoutoptions -geometry 800

[O] property list indentation and TODO state changes

2015-09-03 Thread George McNinch
Rather than try to discuss the issue, I'll just give (hopefully simple enough) steps which will reproduce it. Visit an org-mode buffer, with the following contents: #--- #+STARTUP: logdrawer #+TODO: APPT(a) | DONE(d!) * APPT <2015-09-03 Thu +1m> ack :PROPERTIES: :FOO: Bar

Re: [O] Block level specification for tex code html export method

2015-09-03 Thread Andreas Leha
Hi Alan, Glad you like the example. Three things: 1. It still works for me ;-) 2. The distorted png might come from the bug in htlatex I mentioned in this thread [1]. 3. It seems that the by-backend does not work properly for you. I am not sure about the reason for that. What org-mode version