From mboxrd@z Thu Jan 1 00:00:00 1970 From: Uwe Brauer Subject: org-ref format in html (odt) Date: Thu, 06 Dec 2018 18:28:21 +0100 Message-ID: <87h8fqef9m.fsf@mat.ucm.es> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:35335) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gUxS4-0008Ax-47 for emacs-orgmode@gnu.org; Thu, 06 Dec 2018 12:28:44 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gUxRz-0007Xl-Od for emacs-orgmode@gnu.org; Thu, 06 Dec 2018 12:28:40 -0500 Received: from [195.159.176.226] (port=33401 helo=blaine.gmane.org) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gUxRz-0007Wn-E3 for emacs-orgmode@gnu.org; Thu, 06 Dec 2018 12:28:35 -0500 Received: from list by blaine.gmane.org with local (Exim 4.84_2) (envelope-from ) id 1gUxPl-0006Si-OL for emacs-orgmode@gnu.org; Thu, 06 Dec 2018 18:26:17 +0100 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: "Emacs-orgmode" To: emacs-orgmode@gnu.org Hi I am using the following function (I think provided generously by John Kitchin) org-ref-get-bibtex-entry-html (key) (defun org-ref-get-bibtex-entry-html (key) "Return an html string for the bibliography entry corresponding to KEY." (let ((output)) (setq output (org-ref-get-bibtex-entry-citation key)) ;; unescape the & (setq output (replace-regexp-in-string "\\\\&" "&" output)) ;; hack to replace {} around text (setq output (replace-regexp-in-string "{" "" output)) (setq output (replace-regexp-in-string "}" "" output)) ;; get rid of empty parens (setq output (replace-regexp-in-string "()" "" output)) ;; get rid of empty link and doi (setq output (replace-regexp-in-string " link\\." "" output)) ;; change double dash to single dash (setq output (replace-regexp-in-string "--" "-" output)) (setq output (replace-regexp-in-string " doi\\." "" output)) (format "
  • %s
  • " key output))) I also use ox-clip-formatted-copy to copy for example: the following lines into a libreoffice document or The first who achieved a result by regularizing the equations was Makino, see cite:makino86:_local_exist_theor_evolut_equat_gaseous_stars. bibliographystyle:plain bibliography:/home/oub/texmf/bibtex/bib/bibgraf.bib But I obtain (HTML removed) The first who achieved a result by regularizing the equations was Makino, see makino86:_local_exist_theor_evolut_equat_gaseous_stars. Bibliography 1. Makino, On a Local Existence Theorem for the Evolution Equation of Gaseous Stars, 459-479, in in: Patterns and Waves, edited by Nishida, Mimura & Fujii, North-Holland (1986) And I would like to see The first who achieved a result by regularizing the equations was Makino, see [1] Bibliography [1.] Makino, On a Local Existence Theorem for the Evolution Equation of Gaseous Stars, 459-479, in in: Patterns and Waves, edited by Nishida, Mimura & Fujii, North-Holland (1986) I looked for appropriate variables but could not find anything. Any help would be strongly appreciated. Uwe Brauer