[Orgmode] org-babel: Managing a bibtex database

2010-01-21 Thread Taru Karttunen
to accomplish this? - Taru Karttunen ___ 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] [babel] #+call: result names?

2010-02-15 Thread Taru Karttunen
Hello I have code like #+call: foo(x=bar) that produces #+results: foo(x=bar) ... Referring to the results with such a name elsewhere does not seem to work and is tedious. Is there a way to to rename the results? i.e. #+call: foo(x=bar) as foobar producing #+results: foobar - Taru Karttunen

[Orgmode] [babel] Haskell support broken

2010-02-15 Thread Taru Karttunen
Hello The following is broken in org-babel + Haskell: #+tblname: foo | 1 | 2 | 3 | #+begin_src haskell :var i=foo 1 #+end_src Babel complains that reference 'foo' not found in this buffer, but works fine when replacing haskell with e.g. perl. - Taru Karttunen

Re: [Orgmode] [babel] #+call: result names?

2010-02-15 Thread Taru Karttunen
Excerpts from Eric Schulte's message of Mon Feb 15 18:12:36 +0200 2010: #+call: foo(x=bar) :resname eric #+results: eric ... Does that sound like a good solution? Is anyone using results names in another way which this would not address? :resname would solve my issue. - Taru Karttunen

[Orgmode] Exporting babel-result images inline

2010-02-20 Thread Taru Karttunen
]) #+end_src Which ends up html-exported as: pimg ... //p I would like to export the generated image inline rather than as a separate paragraph. However matching that p does not work with CSS as it lacks parent selectors. ATTR_HTML only affects the img which does not help. Any ideas? - Taru Karttunen

[Orgmode] Exporting agenda views from the command line

2009-01-14 Thread Taru Karttunen
is 6.17trans. The failure is Invalid function: org-batch-store-agenda-views Any hints how this should be solved? - Taru Karttunen ___ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http

Re: [Orgmode] Remind functionality?

2009-01-26 Thread Taru Karttunen
? - Taru Karttunen ___ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode

[Orgmode] Creating links to ITEMs in captured column views (code attached)

2009-02-02 Thread Taru Karttunen
is an org-mode file that contains an example on how it is used and the elisp code. - Taru Karttunen #+TITLE: Captured column view item links #+OPTIONS: toc:nil #+COLUMNS: %25ITEM(Item) %10Foo{+} %ID * Captured column view item links I was using a captured column view to display some properties

[Orgmode] Citing articles, bibliography and html export

2009-02-10 Thread Taru Karttunen
with latex, but I would like a solution that worked also with html. How have other people solved this? - Taru Karttunen ___ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org

[Orgmode] org-exp-bibtex.el - add support to citing bibtex in both html and latex exports

2009-02-22 Thread Taru Karttunen
and foo_bib.html 3) includes the contents of foo.html in the exported html file Code attached. - Taru Karttunen ;;; org-exp-bibtex.el --- Export bibtex fragments ;; Copyright (C) 2009 Taru Karttunen ;; Author: Taru Karttunen tar...@taruti.net ;; This file is not currently part of GNU Emacs

Re: [Orgmode] org-exp-bibtex.el - add support to citing bibtex in both html and latex exports

2009-03-01 Thread Taru Karttunen
. - Taru Karttunen ___ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode

Re: [Orgmode] org-exp-bibtex.el - add support to citing bibtex in both html and latex exports

2009-03-02 Thread Taru Karttunen
this week. Are there any other features that you would need? - Taru Karttunen ___ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode

Re: [Orgmode] [PATCH] org-exp-bibtex.el changes

2009-03-07 Thread Taru Karttunen
in the bibtex file as it is inserting them. That looks nice. +1 to get it committed. - Taru Karttunen ___ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode

Re: [Orgmode] a problem with org-exp-bibtex

2009-03-12 Thread Taru Karttunen
/~taruti/org-mode/ has some fixes to org-exp-bibtex. - Taru Karttunen ___ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode

Re: [Orgmode] a problem with org-exp-bibtex

2009-03-12 Thread Taru Karttunen
On 12.03 11:44, Carsten Dominik wrote: Up to now there was o stable way to enforce a fiven internal link target. I have just pushed a change into the git repo that will allow [[#foobar][description]] My repo is updated to support the new link syntax. - Taru Karttunen

[Orgmode] server-kill-new-buffers and org-agenda

2009-03-13 Thread Taru Karttunen
the emacsclient exits. Any suggestions? - Taru Karttunen ___ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode

[Orgmode] Re: Fully featured Web publishing

2009-03-23 Thread Taru Karttunen
the correct style can also be automated with suitable Javascript. - Taru Karttunen ___ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode

Re: [Orgmode] CamelCase link type

2009-04-19 Thread Taru Karttunen
. I'll see if I can come out with a simple elisp or python script to convert those files. perl -pe 's/((?:[[:upper:]][\p{lower}_-\d]+){2,})/[[$1]]/' +- whatever special characters you allow in camel case links. - Taru Karttunen ___ Emacs-orgmode mailing

[Orgmode] limiting ical export

2009-05-14 Thread Taru Karttunen
Hello Is it possible to limit the ical-file exported in some way? I'd like to export all events from the current time to one month in the future. Is this possible? Maybe postprocessing the ical file? - Taru Karttunen ___ Emacs-orgmode mailing list

Re: [Orgmode] cannot edit two source code examples simultaneously

2009-05-17 Thread Taru Karttunen
with a work-in-progress message that contains a link to the edit buffer. Please don't do this. It sounds like a recipe for accidentally losing the source code when careless. - Taru Karttunen ___ Emacs-orgmode mailing list Remember: use `Reply All

Re: [Orgmode] cannot edit two source code examples simultaneously

2009-05-18 Thread Taru Karttunen
it. The property could turn the code into a link to the buffer and set it read-only. - Taru Karttunen ___ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode

Re: [Orgmode] recurring TODO's diary sexps

2009-06-27 Thread Taru Karttunen
Excerpts from Dirk-Jan Binnema's message of Fri Jun 26 12:58:00 +0300 2009: Now, I could work around it by: a) make five 'normal' recurring entries for each weekday b) don't use TODO, but just leave the item but that is not really nice... Is there some trick I am missing? This is not

[Orgmode] Inline images inside Emacs?

2008-06-23 Thread Taru Karttunen
Hello Has anyone hacked org-mode to display inline images inside Emacs? I have lots of stuff like [[file:foo.jpg][.thumbs/foo.jpg]] and would like to display the thumbnails in the org buffer. Muse has something like this and it would be very nice to have it in org-mode. - Taru Karttunen

Re: [Orgmode] Displaying images inline

2008-08-24 Thread Taru Karttunen
On 24.08 09:21, Lindsay Todd wrote: Thank you! I get the underline running right through the image, but that is tolerable. This helps me. That comes from the org link. It can be removed by customizing the link face used by org-mode. - Taru Karttunen

Re: [Orgmode] Mail files in org

2008-08-29 Thread Taru Karttunen
-display-command urxvt -title 'mairix search: %search%' -e mutt -f ~/mail/mairix -e \push display-message\ org-mairix-display-hook 'org-mairix-mutt-display-results) - Taru Karttunen ;;; org-mairix.el - Support for hooking mairix search into Org for different MUAs ;; ;; Copyright (C) 2007 Georg

Re: [Orgmode] [babel] RFC: column and row names in babel tables

2010-04-11 Thread Taru Karttunen
in the output?* Why not an empty row? | 1 | 2 | 3 | |---+---+---| | 4 | 5 | 6 | would become: [[1,2,3], [], [4,5,6]]. - Taru Karttunen ___ Emacs-orgmode mailing list Please use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http

[Orgmode] Babel - display results in an overlay?

2010-08-03 Thread Taru Karttunen
to do this. Simple numeric operations suffice but I have a few dozen variables so an easy an intuitive interface is the most important aspect. - Taru Karttunen ___ Emacs-orgmode mailing list Please use `Reply All' to send replies to the list. Emacs-orgmode

[Orgmode] Generic exporter status

2010-09-02 Thread Taru Karttunen
Hello Once upon a time there was a project to write a generic exporter. Did anything useful come out of it? If not which exported is the best model for writing a new one with? - Taru Karttunen ___ Emacs-orgmode mailing list Please use `Reply All

Re: [Orgmode] Automatically select BibTex entries used in the org file

2010-10-20 Thread Taru Karttunen
org-exp-bibtex.el in this newsgroup, here is the address: http://www.mail-archive.com/emacs-orgmode@gnu.org/msg11723.html In the issue, Taru Karttunen said it's possible and easy to add an option to just select the entries that are used in the org-file. However, I cannot find anything about

Re: [Orgmode] Automatically select BibTex entries used in the org file

2010-10-20 Thread Taru Karttunen
On Wed, 20 Oct 2010 10:30:01 -0400, Nick Dokos nicholas.do...@hp.com wrote: Are you sure? I found a limit:t option mentioned in the commentary of the file, and I posted that. I didn't try it myself but I got email from Lingyu saying it worked. Maybe you implemented it and forgot about it?