Re: [O] Something like 'org-clock-in-at-time'?

2011-03-13 Thread Richard Lawrence
John Hendy jw.he...@gmail.com writes: Could someone fill me in on your process for clocking in things after the fact? I've been trying to get into to clocking, but, especially at home, I don't return to my computer in between every different thing. Instead, I stop at it when I get a pause

Re: [O] Delete in emacs on OS X

2011-03-09 Thread Richard Lawrence
John Hendy jw.he...@gmail.com writes: I can't figure out what key combo provides delete. Fn+delete behaves like backspace. In my searching, I found reference to C-?, but that comes up as unrecognized. How do I delete? Try C-d. If that doesn't work, look at the help for delete-char (C-h f

[O] org-map-entries and org-map-continue-from

2011-02-28 Thread Richard Lawrence
Hi all, Bastien had advised me [1] to use (setq org-map-continue-from (outline-next-heading)) in a function called by org-map-entries in order to map that function across just the /children/ of the current entry (i.e., to exclude the current `parent' entry itself). This works great, but I have

Re: [O] org-map-entries and org-map-continue-from

2011-02-28 Thread Richard Lawrence
Nick Dokos nicholas.do...@hp.com writes: The problem is that org-entry-get does not just look forward: it looks *around* and finds the property when point is both at the beginning and at the end of the headline Four, so you get four twice. Ah, so that's the culprit. Thanks! Maybe this?

[Orgmode] Re: question about capture templates

2011-02-22 Thread Richard Lawrence
Carsten Dominik carsten.domi...@gmail.com writes: I do love dynamic scoping, this give a lot of power in Emacs. Org-mode internals use that power often. This is venturing a bit far afield, at least for this thread, but I'm curious if anyone knows: does the recent work on supporting Elisp in

[Orgmode] Re: question about capture templates

2011-02-21 Thread Richard Lawrence
Sébastien Vauban wxhgmqzgw...@spammotel.com writes: Filippo A. Salustri wrote: I would really like to be able to vary the file into which a captured item goes. Specifically, I'd like to insert the item into whatever file I was visiting when I started the capture. You have to use backquotes

[Orgmode] Re: question about capture templates

2011-02-21 Thread Richard Lawrence
Filippo A. Salustri salus...@ryerson.ca writes: org-capture clearly has the original buffer handy (for %a stuff) yet I can't get it out of there without hacking the org code, which I am loathe to do. I too was in a situation just today where I was calling org-capture programatically, and

[Orgmode] Re: ePub and Org mode

2011-02-20 Thread Richard Lawrence
Eric Schulte schulte.e...@gmail.com writes: The only thing missing is a function to export all (not excluded) subtrees one by one and honor the properties slapped onto each subtree. `org-map-entries' should satisfy this need. -- Eric I have been doing something similar with LaTeX export.

Re: [Orgmode] Call org-map-entries just on children?

2011-02-08 Thread Richard Lawrence
Hi Bastien, How can I apply f just to the *children* of Paper 1? You can simply add (setq org-map-continue-from (outline-next-heading)) at the very beginning of your `f' function. Ah, very good. Thanks so much! Best, Richard ___

[Orgmode] Call org-map-entries just on children?

2011-02-07 Thread Richard Lawrence
Hi all, I'm sure I'm just being thick here, but any help would be appreciated... I want to call org-map-entries in a way that calls a function at each *child* of the current tree, but not at the current tree itself. That is, for some function f, if my Org file looks like this: * Paper 1 **

[Orgmode] [OT] Importing plain text attachments into Org

2011-01-23 Thread Richard Lawrence
Dear Orgsters, I'm hoping I can solicit a little advice about pulling email attachments into Org (via Gnus), since some of the folks on this list seem to have experience interacting with Gnus from Org. I realize that the meat of my question may be better asked on the Gnus list, but if anyone

[Orgmode] Re: How can i share a single org-default-notes-file between multiple instances of emacs?

2010-12-16 Thread Richard Lawrence
Eric Holbrook eric.holbr...@smsc.com writes: At work i typically need to have at least 2 emacs running: 1 for the project i'm working on at the moment; 1 for notes, email, ~/.bashrc, ~/.alias, etc. I often have more than 1 project going at a time, so i end up with 3 or 4 emacs running,

[Orgmode] Re: Export LaTeX file to different directory?

2010-12-13 Thread Richard Lawrence
Hi Joost, If I export (part of) an org-mode file to LaTeX, the LaTeX file is created in the same directory as the org-mode file. Is there a way to specify the file should go somewhere else? Googling and looking through the manual didn't give me anything concrete. There is apparently a

[Orgmode] Re: Export LaTeX file to different directory?

2010-12-13 Thread Richard Lawrence
Jeff Horn jrhorn...@gmail.com writes: If you want to publish a single project, one that dumps all the files in the tmp directory, it would publish all files in the source directory (definitely not what the OP had in mind, I think). If you publish only this file, it might work. Yes, there is

Re: [Orgmode] Another LaTeX export corner case...

2010-12-09 Thread richard . lawrence
Scot Becker writes: I use the somewhat ugly workaround of just switching to LaTeX \footnote{} commands just for those footnotes where I need optional arguments. But I'd be glad not to have to mix footnote commands. Ah, I hadn't thought of that. Thanks! Richard

[Orgmode] Another LaTeX export corner case...

2010-12-07 Thread Richard Lawrence
This evening, I noticed that the footnote syntax breaks if you use LaTeX commands with an optional argument inside a footnote, e.g.: * Some headline Blah blah blah blah[fn:: This enlightened message brought to you by \cite[p. 100]{SomeBibKey}] The internal square brackets in the \cite command

[Orgmode] Blockquotes in lists?

2010-12-01 Thread Richard Lawrence
Dear Orgsters, Is it possible to embed blockquotes inside list items, so that (e.g.) they are indented beyond the enclosing list item in LaTeX exports? So, for example, the following Org list: * Some headline - list item 1 #+BEGIN_QUOTE A great thing was said! #+END_QUOTE - list

Re: [Orgmode] Blockquotes in lists?

2010-12-01 Thread Richard Lawrence
Hi Nicolas, Is it possible to embed blockquotes inside list items, so that (e.g.) they are indented beyond the enclosing list item in LaTeX exports? This is a work in progress. There should be a testing phase related to it soon. Great, thanks! Richard

[Orgmode] Re: LaTeX export of lists

2010-11-27 Thread Richard Lawrence
Hi Tom, Is there an easy way to keep text following a list with the list, i.e, without a blank line following the list, during export? * List 1. First item 2. Second item Following text. Gets exported as: \section{List} \label{sec-1} \begin{enumerate} \item First item \item

Re: [Orgmode] [PATCH] Preserve math environments in title when exporting to LaTeX

2010-11-21 Thread Richard Lawrence
Carsten Dominik carsten.domi...@gmail.com writes: On Nov 21, 2010, at 9:54 AM, Carsten Dominik wrote: Hi Richard, I have now applied this patch. I am not entirely sure it will have no adverse effects, so please, people who do export to LaTeX, check after the next pull if you see any

[Orgmode] Umlauts in LaTeX export

2010-11-03 Thread Richard Lawrence
Hi all, I don't think this is a bug so much as an unfortunate consequence of expected behavior, but I wanted to document it here for the sake of future mailing list searches, because I didn't find anything about it myself. (If someone has a better solution than the one I propose, please clue me

[Orgmode] Re: Umlauts in LaTeX export

2010-11-03 Thread Richard Lawrence
Thanks to all for your suggestions! you could define some shortcut to insert the appropriate Unicode character into your text (as your keyboard probably does not feature a ö key), or copy/paste the Umlauts from another Emacs file as necessary. But there is a nice emacs solution to enter

[Orgmode] Re: Differences in headline exports [was: Umlauts in LaTeX export]

2010-11-03 Thread Richard Lawrence
Nick Dokos nicholas.do...@hp.com writes: Nevertheless that does not absolve org from dealing with \ properly. In fact, it deals with it correctly in a heading but not in the text: * G\odel G\odel gives: ... \section{G\odel} \label{sec-1} G\''odel However, surrounding the o with

Re: [Orgmode] Re: General question on dealing with Latex to word conversion

2010-10-27 Thread Richard Lawrence
Jeff Horn jrhorn...@gmail.com writes: I'm not trying to be antagonistic, or insensitive to your particular situation.  But since no one else has said it, I just wanted to point out that it might be easier or more efficient, in terms of overall person-hours, to convert from Word to Org, rather

[Orgmode] Re: General question on dealing with Latex to word conversion

2010-10-26 Thread Richard Lawrence
Hi Marvin, Org mode is now a part of my daily work-flow, not only do I use it for teaching, scheduling my time, but I also use it to store my research notes. The only snag is several of my collaborators is tied to microsoft word, and thus my only work around is to export my notes and draft

[Orgmode] [PATCH] Preserve math environments in title when exporting to LaTeX

2010-10-25 Thread Richard Lawrence
Hi all, This patch fixes the issue I originally described here: http://article.gmane.org/gmane.emacs.orgmode/32281 It preserves math-mode delimiters (e.g. $ and \() in the document title when exporting to LaTeX. (That is, it prevents them from being escaped, by running the title through

[Orgmode] Re: Bug: Re: Latex export: Differing behavior for symbols in headlines

2010-10-24 Thread Richard Lawrence
Richard Lawrence richard.lawre...@berkeley.edu responds to himself: 2) If so, what's the right way to work around it? If not, where should I look to try and fix it? I'm still wondering about the latter question here. This is important enough to me that I am willing to take a stab

[Orgmode] Bug: Re: Latex export: Differing behavior for symbols in headlines

2010-10-23 Thread Richard Lawrence
Nick Dokos nicholas.do...@hp.com writes: 1) Is this difference between whole-document vs. current-subtree export the expected behavior? Looks like a bug to me. I can reproduce it too. Was my original email enough to constitute a bug report? 2) If so, what's the right way to work around

Re: [Orgmode] Bug: ordered lists after unordered

2010-10-21 Thread Richard Lawrence
Hi Nicolas, Thanks for getting back to me. I think I've found a bug with the way org-meta-return behaves. I occasionally need to follow an unordered list by an ordered list, without any intervening text. For example: * Some heading - unordered - unordered - unordered 1)

[Orgmode] Latex export: Differing behavior for symbols in headlines

2010-10-21 Thread Richard Lawrence
Dear Orgsters, I am seeing differing behavior for how special symbols that appear in a headline are exported to LaTeX, depending on whether I export an entire Org document or just the current subtree. I have, for example, a file that looks like this: * Headline 1 ** Headline 2, concerning

[Orgmode] Bug: ordered lists after unordered

2010-10-20 Thread Richard Lawrence
would prefer.) I am using Org version 7.01trans. Thanks! Best, Richard Lawrence ___ Emacs-orgmode mailing list Please use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode

[Orgmode] Publishing configuration

2010-10-10 Thread Richard Lawrence
Hi all, Is there a way to tell org-publish-org-to-html something like: If you find a link to a file outside the base-directory, copy that file as an attachment to publishing-directory/attachments in org-publish-project-alist? I have PDFs that need to remain distributed throughout the file

<    1   2   3   4