[O] Abbreviating filtered tags in mode line

2014-05-14 Thread Thomas Morgan
Dear Org-mode hackers, This patch defines a variable org-agenda-abbreviate-tag-filter; when it is set, filtered tags indicated on the mode line are abbreviated according to their fast selection letters. For example, -@home+@net is abbreviated -h.+n. if the fast selection letters of @home and

Re: [O] Using Emacs, Org-mode and R for Research Writing in Social Sciencess

2014-05-14 Thread Vikas Rawal
pandoc -f latex -t docx test.tex -o test.docx I see Org has exported my W m^{-2} as W m$^{\text{-2}}$, which is not what I would expect in LaTeX. In OS X Pages.app viewing the docx this appears as W m. In Word it shows up either as just -2 or W m-2. In Word, the Math shows up with each

Re: [O] Export HTML with Free Form Text

2014-05-14 Thread Esben Stien
Eric Abrahamsen e...@ericabrahamsen.net writes: You can do it with the preserve-breaks export option set to t. Either \n:t in the #+OPTIONS line, or permanently by setting org-export-preserve-breaks to t. Hehe, I knew this would somehow be there;). Really great; thanks;) -- Esben Stien is

Re: [O] [PATCH] Add author and title to exported PDF properties

2014-05-14 Thread Nicolas Goaziou
Hello, Marcel van der Boom mar...@hsdev.com writes: Thanks for your patch. A few comments follow. * lisp/ox-latex.el (org-latex-template): add pdfauthor and pdftitle (org-latex-hyperref-template): add placeholders for author and title (org-latex-template): adjust default template with author

[O] Clock-in in agenda makes some headings with links disappear

2014-05-14 Thread Thomas Morgan
Dear Org mode hackers, I came across a bug in Org-mode 8.2.6. I had an overdue TODO item in the agenda with a link at the end of the heading text. I clocked it in with `I' and the heading text disappeared; only the link remained visible on that line in the agenda. This bug was reproducible for

[O] still seeing semi-regular lockups

2014-05-14 Thread Eric Abrahamsen
Hey there, After Nicolas made the last round of improvements to the caching mechanism I got far fewer hangs with Org, but they are still happening. Maybe once a day or so, on average, editing something in an Org buffer causes emacs to hang, and my fans to spin up, and there we are until I kill

Re: [O] Using Emacs, Org-mode and R for Research Writing in Social Sciencess

2014-05-14 Thread Christopher Witte
The latest version of Pandoc can now also read in org mode files http://johnmacfarlane.net/pandoc/releases.html#pandoc-1.12.4-07-may-2014 So perhaps the conversion of Org-Latex is no longer needed. Chris. On 14 May 2014 09:00, Vikas Rawal vikasli...@agrarianresearch.org wrote: pandoc -f

Re: [O] Agenda view in Fortnight mode

2014-05-14 Thread Samuel Loury
Hi, Esben Stien b...@esben-stien.name writes: Charles Millar mill...@verizon.net writes: (setq org-agenda-span 14) This specifies this week plus the next week, but is there any way to specify this week plus the next week plus the previous week?;) Try this: --8---cut

Re: [O] Agenda view in Fortnight mode

2014-05-14 Thread Esben Stien
Samuel Loury konubi...@gmail.com writes: --8---cut here---start-8--- (setq org-agenda-span 14 org-agenda-start-day -7d) --8---cut here---end---8--- Excellente;) Thanks.. -- Esben Stien is b0ef@e s a

[O] Bug: Activating org-mode in any buffer recenters (unrelated) selected window. [8.2.6 (release_8.2.6-6-gfc37d1 @ /home/youngfrog/sourcetrees/org-mode/lisp/)]

2014-05-14 Thread Nicolas Richard
The function `org-overview' calls `recenter' without checking if the current buffer is actually in the currently selected window. Moreover, turning on org-mode calls `org-overview' (I guess depending on the configuration). IOW, turning on org-mode programmatically (e.g. via find-file-noselect)

Re: [O] An org password manager

2014-05-14 Thread Colin Baxter
Dear Jorge, Many thanks for this. I had forgotten about define-derived-mode. Best wishes, Colin. Dear Ramon and Colin, If you are using an (add-to-list 'auto-mode-alist ...) for the gpg files, that sets the major mode on. If you want to leave the major mode as Org, do not use

Re: [O] Using Emacs, Org-mode and R for Research Writing in Social Sciencess

2014-05-14 Thread Vikas Rawal
The latest version of Pandoc can now also read in org mode files http://johnmacfarlane.net/pandoc/releases.html#pandoc-1.12.4-07-may-2014 So perhaps the conversion of Org-Latex is no longer needed. This is very new. As of now, direct Org-docx conversion does not taken into account any

Re: [O] An org password manager

2014-05-14 Thread Cayetano Santos
Hi Jorge, Are you aware of this http://git.zx2c4.com/password-store/tree/contrib/emacs ? It's an api to pass and other simple cli tools. Hope it helps, c. On 11-05-14 01:21:20, Jorge A. Alfaro-Murillo wrote: Hi! I have been using org for managing passwords for a some time now. In case

Re: [O] still seeing semi-regular lockups

2014-05-14 Thread dieter
hi, on my machine wanderlust hangs from time to time when i am inside the company net and the proxy has hiccups. then C-g (sometimes several) usually help. in the link below i found an interesting variable, debug-on-quit. when it is set, emacs enters the debugger when you hit C-g. sendings

[O] Git not working

2014-05-14 Thread Marvin Doyley
Hi there, I am trying to pull the latest version of org, but I get the following error whenever I try to do so: fatal: read error: Connection reset by peer Does anybody now how to resolve this ? Thanks M

Re: [O] Update of git repo does not work? Still?

2014-05-14 Thread Charles Millar
Suvayu Ali wrote: On Tue, May 13, 2014 at 01:53:01PM +0200, Rainer M Krug wrote: Is there a problem with git? I can't update via git: , | $ git remote -v | origingit://orgmode.org/org-mode.git (fetch) | origingit://orgmode.org/org-mode.git (push) | $ git pull | fatal: read

Re: [O] [PATCH] Add author and title to exported PDF properties

2014-05-14 Thread Marcel van der Boom
On wo 14-mei-2014 09:05 Nicolas Goaziou n.goaz...@gmail.com wrote: [...] + ?a (or (first (plist-get info :author)) ) + ?t (or (first (plist-get info :title)) ) The usual way to achieve this is to create an anonymous export back-end, derived from `latex',

Re: [O] [PATCH] Add author and title to exported PDF properties

2014-05-14 Thread Nicolas Goaziou
Marcel van der Boom mar...@hsdev.com writes: Are you saying 'author' and 'title' are problematic? I am saying that they need to be treated differently, and with more care. How do they differ from, say 'subject'? subject, which refers to :description property, only contains a single string,

Re: [O] org-ref code

2014-05-14 Thread John Kitchin
I think you are restricted to single characters. That key is used by reftex, so it would be a limitation in reftex. You can always define your own function with a key-binding for something specific. John --- John Kitchin Associate Professor Doherty Hall A207F

[O] org-clock and org-agenda-files

2014-05-14 Thread Esben Stien
Is it possible to have org clock table run through all files in org-agenda-files? Looking at the manual, I can't find any way to do that. -- Esben Stien is b0ef@e s a http://www. s tn m irc://irc. b - i . e/%23contact sip:b0ef@

Re: [O] org-ref code

2014-05-14 Thread John Kitchin
I also run emacs 24.3. nearly my whole setup is here: https://github.com/jkitchin/jmax If you are on windows, you should be able to clone that repository, and run jmax.bat which will run the emacs binary in that repository and load the jmax code which includes org-ref. You may not want to use my

Re: [O] Using Emacs, Org-mode and R for Research Writing in Social Sciencess

2014-05-14 Thread Ken Mankoff
On 2014-05-14 at 01:00, Vikas Rawal vikasli...@agrarianresearch.org wrote: pandoc -f latex -t docx test.tex -o test.docx I see Org has exported my W m^{-2} as W m$^{\text{-2}}$, which is not what I would expect in LaTeX. In OS X Pages.app viewing the docx this appears as W m. In Word it

Re: [O] Using Emacs, Org-mode and R for Research Writing in Social Sciencess

2014-05-14 Thread Vikas Rawal
But elsewhere I have \begin{equation} x=42 \end{equation} in Org, which looks just like that in LaTeX, and that appears as just strange little extended ASCII boxes in MS Word. I am on the latest version of Pandoc, and this works fine for me. Am sending you a sample off-list.

Re: [O] Using Emacs, Org-mode and R for Research Writing in Social Sciencess

2014-05-14 Thread Vikas Rawal
But elsewhere I have \begin{equation} x=42 \end{equation} in Org, which looks just like that in LaTeX, and that appears as just strange little extended ASCII boxes in MS Word. I am on the latest version of Pandoc, and this works fine for me. Am sending you a sample off-list.

Re: [O] org-clock and org-agenda-files

2014-05-14 Thread Bastien
Esben Stien b...@esben-stien.name writes: Is it possible to have org clock table run through all files in org-agenda-files? Looking at the manual, I can't find any way to do that. C-h i d m Org TAB C-s :scope C-s and look for agenda in the lines below. -- Bastien

Re: [O] org-clock and org-agenda-files

2014-05-14 Thread Esben Stien
Bastien b...@gnu.org writes: C-h i d m Org TAB C-s :scope C-s and look for agenda in the lines below. Damn, sorry, don't know how I missed that, really. Thanks.. -- Esben Stien is b0ef@e s a http://www. s tn m irc://irc. b - i .

[O] bug#17484: 24.3.91; Emacs Pretest (emacs-24.3.91.tar.xz) freeze

2014-05-14 Thread Stefan Monnier
gdb) xbacktrace avl-tree-delete (0x54b0) byte-code (0x55a0) byte-code (0x5760) org-element--cache-process-request (0x5990) byte-code (0x5aa0) org-element--cache-sync (0x5ce0) org-element-at-point (0x5e00) byte-code (0x60d0) org-adaptive-fill-function

Re: [O] org-edit-src-code outside of org

2014-05-14 Thread Hubert Chathi
On Tue, 13 May 2014 16:49:57 -0400, jorge.a.alf...@gmail.com (Jorge A. Alfaro-Murillo) said: Hi, I would like to use org-edit-src-code outside of org, I think it would be very handy in Message mode, to send messages that contain code and edit that code in the proper mode. [...] I've been

Re: [O] org-clock and org-agenda-files

2014-05-14 Thread Bastien
Esben Stien b...@esben-stien.name writes: Bastien b...@gnu.org writes: C-h i d m Org TAB C-s :scope C-s and look for agenda in the lines below. Damn, sorry, don't know how I missed that, really. No problem! -- Bastien

Re: [O] Git not working

2014-05-14 Thread Bastien
Hi Marvin, Marvin Doyley marvin...@gmail.com writes: I am trying to pull the latest version of org, but I get the following error whenever I try to do so: fatal: read error: Connection reset by peer Does anybody now how to resolve this ? I cleaned up some processes on the server, it is

Re: [O] Git not working

2014-05-14 Thread Bastien
Bastien b...@gnu.org writes: But I'll investigate what when wrong, thanks for reporting this, went -- Bastien

Re: [O] Using Emacs, Org-mode and R for Research Writing in Social Sciences

2014-05-14 Thread Suvayu Ali
Hi Vikas, On Tue, May 13, 2014 at 08:40:13PM +0200, Vikas Rawal wrote: It seems safer/efficient to focus on making modular documentation that is the definitive *best*/*right* way (and *best* explained) to do something, and then to link to that prolifically. Your points are very

[O] bug#17484: 24.3.91; Emacs Pretest (emacs-24.3.91.tar.xz) freeze

2014-05-14 Thread Daimrod
Stefan Monnier monn...@iro.umontreal.ca writes: gdb) xbacktrace avl-tree-delete (0x54b0) byte-code (0x55a0) byte-code (0x5760) org-element--cache-process-request (0x5990) byte-code (0x5aa0) org-element--cache-sync (0x5ce0) org-element-at-point (0x5e00)

Re: [O] Using Emacs, Org-mode and R for Research Writing in Social Sciences

2014-05-14 Thread Axel Kielhorn
Am 12.05.2014 um 14:57 schrieb Vikas Rawal vikasli...@agrarianresearch.org: I have been using Org for writing research papers for a while, gradually improving my set up to be able to exactly produce the output I want. In this process, I have benefited greatly not only from the resources

Re: [O] [PATCH] Add author and title to exported PDF properties

2014-05-14 Thread Marcel van der Boom
On wo 14-mei-2014 14:48 Nicolas Goaziou n.goaz...@gmail.com wrote: [...] How do they differ from, say 'subject'? subject, which refers to :description property, only contains a single string, no Org syntax. OTOH, TITLE and AUTHOR keywords have their contents parsed and, as such, can

Re: [O] Using Emacs, Org-mode and R for Research Writing in Social Sciences

2014-05-14 Thread Vikas Rawal
Unless others feel differently, I would let the document float around the cyberspace, on my personal website and on github, for anyone to discover and use. I hate a good resource getting lost in the Internet. So I would like to suggest you make a shorter version for Worg, just focusing

Re: [O] New worg page: Publishing beamer slideshows and articles from one source

2014-05-14 Thread Suvayu Ali
On Wed, May 14, 2014 at 12:56:35AM +, James Harkins wrote: Suvayu Ali fatkasuvayu+linux at gmail.com writes: A couple of comments about formatting: the first two footnotes might be better as links from the text. I propose the attached patch. If you think this is fine, I'll push it.

[O] beamer columns and printout

2014-05-14 Thread Seb Frank
Hi, I'm interested in using org-mode to generate beamer slides and an article-like printout (using the article class, usepackage{beamerarticle} and latex export) from the same source, and I am running into two problems with the export to article when there are multiple columns. 1.) I often use

Re: [O] Using Emacs, Org-mode and R for Research Writing in Social Sciences

2014-05-14 Thread Vikas Rawal
Thank you Axel for taking the time to test it. I look forward to more comments as you look at it. You comments are very useful. I tried to export the .org to Latex and failed because it needed tabulary and threeparttable. They are used if you use vikas-general.org but as far as i

[O] bug#17484: 24.3.91; Emacs Pretest (emacs-24.3.91.tar.xz) freeze

2014-05-14 Thread Stefan Monnier
Is there a way to disable the effect of `inhibit-quit' in `jit-lock' so C-g interrupt again in order to get an elisp-backtrace with `debug-on-quit'. Otherwise, what's the best way to debug this? Looking closer at `org-adaptive-fill-function'? You can try `debug-on-event'. There's

[O] *text* in headlines and export to latex

2014-05-14 Thread Seb Frank
Hi, Latex export converts *text* to \textbf -- this doesn't work well for headlines that get turned into section titles as these appear to be bold by default. Is there a way to change this to \emph in headlines that get converted to (sub)sections? Thanks, Seb

Re: [O] org-ref code

2014-05-14 Thread Andreas Reuleaux
OK, thanks. -Andreas John Kitchin jkitc...@andrew.cmu.edu writes: I think you are restricted to single characters. That key is used by reftex, so it would be a limitation in reftex. You can always define your own function with a key-binding for something specific. John

Re: [O] [RFC] [PATCH] ob-core.el: allow the auto-generation of output file names for src blocks.

2014-05-14 Thread Achim Gratz
Aaron Ecay writes: Thanks again for the feedback. I just pushed the revised patch to master. I think I would prefer the code in this patch to do nothing in this case (not create a :file value), but for language-specific code that needs a :file to raise an error to prompt the user to add a

Re: [O] org-ref code

2014-05-14 Thread Eric S Fraga
On Tuesday, 13 May 2014 at 20:28, John Kitchin wrote: interesting. I do have auxtex installed, but I don't think I configure it anywhere. I do require reftex and reftex-cite in my init files. I also set the default reftex bibliography. (setq reftex-default-bibliography

Re: [O] *text* in headlines and export to latex

2014-05-14 Thread Eric S Fraga
On Wednesday, 14 May 2014 at 18:00, Seb Frank wrote: Hi, Latex export converts *text* to \textbf -- this doesn't work well for headlines that get turned into section titles as these appear to be bold by default. Is there a way to change this to \emph in headlines that get converted to

[O] [Latex Export] Influence placement of \maketitle command

2014-05-14 Thread Alexander Baier
Hello, I am writing a paper using llncs as the document class. I use the =\institute= command which has to be placed _above_ the =\maketitle= command to be considered. But exporting my document always yields a latex file where =\maketitle= appears above =\institute=. I use simple #+LATEX:

Re: [O] *text* in headlines and export to latex

2014-05-14 Thread Seb Frank
Yes -- but that changes it to emph (instead of alert) in beamer export. On Wed, May 14, 2014 at 7:19 PM, Eric S Fraga e.fr...@ucl.ac.uk wrote: On Wednesday, 14 May 2014 at 18:00, Seb Frank wrote: Hi, Latex export converts *text* to \textbf -- this doesn't work well for headlines that

Re: [O] Using Emacs, Org-mode and R for Research Writing in Social Sciences

2014-05-14 Thread Axel Kielhorn
Am 14.05.2014 um 18:51 schrieb Vikas Rawal vikasli...@agrarianresearch.org: Thank you Axel for taking the time to test it. I look forward to more comments as you look at it. You comments are very useful. I'm new to Emacs, but know LaTeX and Pandoc. I have a lot of beginner’s questions.

Re: [O] [Latex Export] Influence placement of \maketitle command

2014-05-14 Thread Nick Dokos
Alexander Baier alexander.ba...@mailbox.org writes: Hello, I am writing a paper using llncs as the document class. I use the =\institute= command which has to be placed _above_ the =\maketitle= command to be considered. But exporting my document always yields a latex file where =\maketitle=

Re: [O] org-ref code

2014-05-14 Thread Andreas Reuleaux
Eric S Fraga e.fr...@ucl.ac.uk writes: How do I specify the bibstyle for org-ref? I am not sure if I understand your question correctly and John certainly has more insight here, but I have in my org document #+LaTeX_HEADER: \include{ltxhdr} and within that ltxhdr.tex I have among other

Re: [O] org-ref code

2014-05-14 Thread Sharon Kimble
Andreas Reuleaux andr...@a-rx.info writes: Eric S Fraga e.fr...@ucl.ac.uk writes: How do I specify the bibstyle for org-ref? I am not sure if I understand your question correctly and John certainly has more insight here, but I have in my org document #+LaTeX_HEADER: \include{ltxhdr}

Re: [O] org-ref code

2014-05-14 Thread Andreas Reuleaux
Well, I know how to write shell scripts, and have something similar encoded in a shake file (haskell make replacement), for that matter, but prefer to have xelatex not called 5 times during every little development step. Anyway thanks a lot. My point here really was, that org-ref and the latex

Re: [O] org-ref code

2014-05-14 Thread John Kitchin
Good. I am glad to hear you are making some progress! you have to specify the bibliography style for latex export somewhere in the document. You can use a bibliographystyle link for bibtex, eg. bibliographystyle:unsrt. That will get exported to \bibliographystyle{unsrt}. That link does not do

Re: [O] [Latex Export] Influence placement of \maketitle command

2014-05-14 Thread Alexander Baier
On 2014-05-14 21:01 Nick Dokos wrote: Alexander Baier alexander.ba...@mailbox.org writes: Hello, I am writing a paper using llncs as the document class. I use the =\institute= command which has to be placed _above_ the =\maketitle= command to be considered. But exporting my document always

Re: [O] org-ref code

2014-05-14 Thread Eric S Fraga
On Wednesday, 14 May 2014 at 20:03, Andreas Reuleaux wrote: Eric S Fraga e.fr...@ucl.ac.uk writes: How do I specify the bibstyle for org-ref? [...] There is no specific bibstyle of org-ref (correct, John?), that's the That's what I wanted to confirm. And it has been confirmed (by both you

Re: [O] Export to iCalendar only not DONE, scheduled tasks?

2014-05-14 Thread Arun Persaud
Hi On 05/10/2014 07:55 AM, Chris Poole wrote: On Mon, May 5, 2014 at 11:08 PM, Arun Persaud apers...@lbl.gov mailto:apers...@lbl.gov wrote: pretty sure this can be done. I export only events to an ics file that have a start and an end date and are not in a certain category. For this

Re: [O] still seeing semi-regular lockups

2014-05-14 Thread Eric Abrahamsen
die...@schoen.or.at writes: hi, on my machine wanderlust hangs from time to time when i am inside the company net and the proxy has hiccups. then C-g (sometimes several) usually help. in the link below i found an interesting variable, debug-on-quit. when it is set, emacs enters the

Re: [O] Using Emacs, Org-mode and R for Research Writing in Social Sciences

2014-05-14 Thread Vikas Rawal
Thank you Axel for taking the time to test it. I look forward to more comments as you look at it. You comments are very useful. I'm new to Emacs, but know LaTeX and Pandoc. I have a lot of beginner’s questions. (Configuring emacs is quite difficult: should I use - custom-set-variable