From: Olivier Berger <olivier.berger@it-sudparis.eu> To: emacs-orgmode@gnu.org Subject: Exporting org-bibtex links as \cite{} refs in Latex Date: Fri, 23 Mar 2012 18:23:06 +0100 [thread overview] Message-ID: <87pqc3cjut.fsf@inf-8657.int-evry.fr> (raw) Hi. Sorry in advance if this has already been covered. AFAICT there's not yet a standard latex export for org-bibtex links. I think that the following in org-bibtex.el : (org-add-link-type "bibtex" 'org-bibtex-open) sets what's needed to navigate links like [[bibtex:mybib.bib::abibtexref]] (or [[file:mybib.bib::abibtexref]] ?) to the contents of the bibtex notice, but doesn't help with how the latex export needs to be. AFAIU, it lacks a second function that could be used to export the links. So all that's needed is another function as : (org-add-link-type "bibtex" 'org-bibtex-open 'org-bibtex-export) which would render as \cite{abibtexref}. Something like : (defun org-bibtex-export (path desc format) (let* ((search (when (string-match "::#?\\(.+\\)\\'" path) (match-string 1 path))) (path (substring path 0 (match-beginning 0)))) (cond ((eq format 'latex) (if (or (not desc) (equal 0 (search "bibtex:" desc))) (format "\\cite{%s}" search) (format "\\cite[%s]{%s}" desc search)))))) I think this can work (see more details in [0]), and maybe that wouldn't be too hard to patch org-bibtex for something more generic ? Is this reasonable ? I'm not following the list regularly, so any feedback by email couldn't hurt. Best regards, [0] http://www-public.it-sudparis.eu/~berger_o/weblog/2012/03/23/how-to-manage-and-export-bibliographic-notesrefs-in-org-mode/ -- Olivier BERGER http://www-public.it-sudparis.eu/~berger_o/ - OpenPGP-Id: 2048R/5819D7E8 Ingenieur Recherche - Dept INF Institut TELECOM, SudParis (http://www.it-sudparis.eu/), Evry (France)
next reply other threads:[~2012-03-23 17:23 UTC|newest] Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top 2012-03-23 17:23 Olivier Berger [this message] 2012-03-27 20:41 ` Bastien
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style List information: https://www.orgmode.org/ * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=87pqc3cjut.fsf@inf-8657.int-evry.fr \ --to=olivier.berger@it-sudparis.eu \ --cc=emacs-orgmode@gnu.org \ --subject='Re: Exporting org-bibtex links as \cite{} refs in Latex' \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: link
Code repositories for project(s) associated with this inbox: https://git.savannah.gnu.org/cgit/emacs/org-mode.git This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).