Re: [O] Citation syntax: a revised proposal

2015-02-14 Thread Thomas S. Dye
Richard Lawrence richard.lawre...@berkeley.edu writes: I welcome feedback, comments, criticisms, and objections on any point. However, since we've already had a long discussion about this, I respectfully request that we try to keep this thread focused. To that end, I suggest: 1) If you

Re: [O] navigating org-clock-in recent work list

2015-02-14 Thread Tory S. Anderson
So being new to elisp, I'm hoping there's a simple hack to disable the org-clock-select-task menu and go to a default (e.g. `C-x b' or `C-x f') style type your option interface that will would be populated with and return the same thing as the select-task-menu? I've been looking at the elisp

Re: [O] Orgmode → ODT: Certain chars break export

2015-02-14 Thread Vaidheeswaran
On Saturday 14 February 2015 02:20 PM, Vaidheeswaran wrote: Specifically, in the pdftotext case above, I believe the best action would be to M-x flush-lines that match ^L so that page headers are stripped. I was writing from memory. I should have said this instead: The best action would be

Re: [O] Babel blocks get unindented when making changes outside the blocks

2015-02-14 Thread Nicolas Goaziou
Hello, Mark Edgington edgi...@gmail.com writes: Given the following code: - BEGIN CODE - * some headline - blah - blah - blah - blah - blah #+begin_src octave first line if (num = 2) stuff end #+end_src - blah #

Re: [O] markup text with leading, trailing spaces

2015-02-14 Thread Jorge A. Alfaro-Murillo
hymie! writes: I think you are making the incorrect assumption that the machine on which I maintain my Org files is the same machine that I wish to execute commands on. Yes, or that you can ssh to it. If my commnds were all 8 characters long or less, it would be fine. Some of my commands

Re: [O] markup text with leading, trailing spaces

2015-02-14 Thread hymie
darc...@gmail.com writes: However, if if I can ssh to a server called myserver I can change the code block to #+begin_src sh :dir /myserver:~/ hostname #+end_src Now if I run the code block the code is executed in myserver and I get #+RESULTS: : myserver_host_name That is a very neat

Re: [O] markup text with leading, trailing spaces

2015-02-14 Thread darc...@gmail.com
Even if you want to run commands in a different computer you can do that with C-c C-c thanks to the :dir folder header argument and tramp. As an example, suppose I have the code block below #+begin_src sh hostname #+end_src If I run it I get something like #+RESULTS: : my_computer_name

Re: [O] How to include time when generating timestamp for DEADLINE/SCHEDULE

2015-02-14 Thread Yuri Niyazov
On Fri, Feb 13, 2015 at 5:25 AM, Charles Millar mill...@verizon.net wrote: Why bother with the arrow keys at all? I have a capture template for appointments and deadlines which requests date and time. Calendar is called. Rather than arrow keys I type the datespacetime (optional duration) and

Re: [O] [patch] better(?) indention for cdlatex-environment

2015-02-14 Thread Nicolas Goaziou
Rasmus ras...@gmx.us writes: This patch applies indentation unless at BOL in which case it stays at BOL. The rest is basically just to work with cdlatex and not insert too many blank lines. It's still quicky, but these quirks seem to be cdlatex quirks. I wonder, are there any commands to

Re: [O] [patch] better(?) indention for cdlatex-environment

2015-02-14 Thread Rasmus
Nicolas Goaziou m...@nicolasgoaziou.fr writes: Another idea: insert the environment in a temp buffer. Check for buffer emptiness. If there is something, insert it with appropriate indentation. It's a very good idea! On the top of my head there's two issues. 1. cdlatex-environment doesn't

[O] ox and links to equation

2015-02-14 Thread Rasmus
Hi, I have two issues with linking to equations. Consider the following example: \begin{alinged} \Label{eq:1} \min f(x)\\ \label{eq:2} \st c(x)=0 \end{aligned} Insightful comments on [[eq:1]] and [[eq:2]] * Issue 1 If org-link-search-must-match-exact-headline is

Re: [O] markup text with leading, trailing spaces

2015-02-14 Thread hymie!
Jorge A. Alfaro-Murillo jorge.alfaro-murillo at yale.edu writes: hymie! writes: I think you are making the incorrect assumption that the machine on which I maintain my Org files is the same machine that I wish to execute commands on. Yes, or that you can ssh to it. Unfortunately,

Re: [O] markup text with leading, trailing spaces

2015-02-14 Thread hymie!
hymie! hymie at lactose.homelinux.net writes: So while I strongly prefer the exported version of - ~command1~ - ~command2~ - ~command3~ it's hard to copy-n-paste with the tildes in the way. org-hide-emphasis-markers is the answer. Setting this to true, the tildes disappear. --hymie!

[O] Tex Live Utility Update list failed on MacTex 2014 on Yosemite even after updating to latest TLU version 1.19 (solved TLU after reading the Log file - absent subdirectory /usr/local/texlive/2014/t

2015-02-14 Thread David Abernethy
After updating to Yosemite over Mavericks I tried to update MacTex 2014. I updated Tex Live Utility to the latest version 1.19 as recommended elsewhere on this list, but found that the list of available packages for update failed to populate. I think this is a problem with MacTex 2014,

[O] [ox/ox-latex] Footnotes in titles

2015-02-14 Thread Rasmus
Hi, Consider the following example #+TITLE: [ox-latex, bug] footnotes in titles[fn:1] #+AUTHOR: Rasmus[fn:2] [fn:1] I'd like to thank Nicolas for considering this bug [fn:2] spammer of the org mailing list The desired ox-latex output is something like:

Re: [O] [patch, ox-latex] better hyperref and title options

2015-02-14 Thread Rasmus
Nicolas Goaziou m...@nicolasgoaziou.fr writes: +(?k . ,(or (plist-get info :keywords) )) +(?d . ,(or (plist-get info :description) )) So it occurred to me that these should also be exported to proper syntax so we don't end up with e.g. a raw $ or in our latex document. Hyperref will

[O] Citation syntax: a revised proposal

2015-02-14 Thread Richard Lawrence
Hi everyone, Since discussion seems to have petered out on the previous thread (see: http://thread.gmane.org/gmane.emacs.orgmode/94524), I took some time to go back over the discussion and write up a concrete proposal for citation syntax. This proposal represents my attempt to formulate a syntax

Re: [O] Citation syntax: a revised proposal

2015-02-14 Thread Richard Lawrence
...and of course, immediately sending, I noticed a small problem in the grammar: Richard Lawrence richard.lawre...@berkeley.edu writes: - A PARENTHETICAL-CITATION is either a SIMPLE-PARENTHETICAL or a CITATION-LIST whose first INDIVIDUAL-REFERENCE is a PARENTHESIZED-KEY - An

Re: [O] Orgmode → ODT: Certain chars break export

2015-02-14 Thread Vaidheeswaran
On Friday 13 February 2015 04:15 PM, Tory S. Anderson wrote: While we're on the topic of ODT export problems: I was in the process of converting PDF to Text to Org to ODT/DocX and discovered that certain characters seem to break exported odt documents, which fail with a line and col number.

[O] Error running tests on 8.2.10

2015-02-14 Thread Cecil Westerhof
I just found out that I was running an old version of org-mode. (Would it not be a good idea to announce new versions? Or did I miss it?) But when running (on Linux): make test I got: install -m 755 -d /tmp/tmp-orgtest TMPDIR=/tmp/tmp-orgtest emacs -batch -Q --eval '(setq