From mboxrd@z Thu Jan 1 00:00:00 1970 From: =?utf-8?B?56ul5L+K57+U?= Subject: ox-pandoc - org-mode + org-ref to docx with bibliographies Date: Thu, 18 Feb 2016 18:44:44 +0800 Message-ID: Mime-Version: 1.0 (Mac OS X Mail 9.2 \(3112\)) Content-Type: multipart/alternative; boundary="Apple-Mail=_35944BDD-3CB1-4797-9474-6E58393627C1" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:59334) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aWM4s-0001sA-W3 for emacs-orgmode@gnu.org; Thu, 18 Feb 2016 05:44:56 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aWM4p-0002c4-PL for emacs-orgmode@gnu.org; Thu, 18 Feb 2016 05:44:54 -0500 Received: from mail-pf0-x22f.google.com ([2607:f8b0:400e:c00::22f]:36354) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aWM4p-0002bp-Hy for emacs-orgmode@gnu.org; Thu, 18 Feb 2016 05:44:51 -0500 Received: by mail-pf0-x22f.google.com with SMTP id e127so29311763pfe.3 for ; Thu, 18 Feb 2016 02:44:49 -0800 (PST) Received: from [127.0.0.1] ([107.170.207.182]) by smtp.gmail.com with ESMTPSA id yj1sm9230407pac.16.2016.02.18.02.44.47 for (version=TLS1 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Thu, 18 Feb 2016 02:44:48 -0800 (PST) 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-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Org mode --Apple-Mail=_35944BDD-3CB1-4797-9474-6E58393627C1 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=utf-8 I=E2=80=99m trying to export org to docx via ox-pandoc, following this = guidance, http://kitchingroup.cheme.cmu.edu/blog/category/docx/ = my .emacs is as follows: (add-to-list 'exec-path "/usr/local/bin") (require 'ox-pandoc) (setq helm-bibtex-format-citation-functions '((org-mode . (lambda (x) (insert (concat "\\cite {" (mapconcat 'identity x ",") "}")) "")))) and when I perform C-c C-e p x, the error showed as:=20 org-org-link: Symbol's function definition is void: = org-export-custom-protocol-maybe How to solve this problem? Thank you for your help! --Apple-Mail=_35944BDD-3CB1-4797-9474-6E58393627C1 Content-Transfer-Encoding: quoted-printable Content-Type: text/html; charset=utf-8
I=E2=80=99m trying to export org to docx via = ox-pandoc, following this guidance,  http://kitchingroup.cheme.cmu.edu/blog/category/docx/
=


my = .emacs is as follows:


(add-to-list 'exec-path "/usr/local/bin")

(require 'ox-pandoc)


(setq = helm-bibtex-format-citation-functions

  =     '((org-mode . (lambda (x) (insert (concat

              =                     =        "\\cite{"

      =                     =                (mapconcat = 'identity x ",")

        =                     =              "}")) ""))))


and when I perform C-c = C-e p x, the error showed as: 

org-org-link: Symbol's function = definition is void: org-export-custom-protocol-maybe

How to solve this = problem? Thank you for your help!

= --Apple-Mail=_35944BDD-3CB1-4797-9474-6E58393627C1-- From mboxrd@z Thu Jan 1 00:00:00 1970 From: Eric S Fraga Subject: Re: ox-pandoc - org-mode + org-ref to docx with bibliographies Date: Thu, 18 Feb 2016 11:15:11 +0000 Message-ID: <878u2i1d8g.fsf@ucl.ac.uk> References: Mime-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:37094) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aWMYQ-00068r-7U for emacs-orgmode@gnu.org; Thu, 18 Feb 2016 06:15:27 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aWMYM-0001H4-5g for emacs-orgmode@gnu.org; Thu, 18 Feb 2016 06:15:26 -0500 Received: from mail-db3on0137.outbound.protection.outlook.com ([157.55.234.137]:52384 helo=emea01-db3-obe.outbound.protection.outlook.com) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aWMYL-0001ES-Se for emacs-orgmode@gnu.org; Thu, 18 Feb 2016 06:15:22 -0500 In-Reply-To: (=?utf-8?B?IuerpeS/iue/lCIncw==?= message of "Thu, 18 Feb 2016 18:44:44 +0800") 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-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: =?utf-8?B?56ul5L+K57+U?= Cc: Org mode On Thursday, 18 Feb 2016 at 18:44, =E7=AB=A5=E4=BF=8A=E7=BF=94 wrote: [...] > and when I perform C-c C-e p x, the error showed as:=20 > > org-org-link: Symbol's function definition is void: > org-export-custom-protocol-maybe > > How to solve this problem? Thank you for your help! Maybe (require 'ox) but more likely the result of a mixed installation? What version of org are you using? Thanks, eric --=20 : Eric S Fraga (0xFFFCF67D), Emacs 25.0.91.1, Org release_8.3.3-619-gca1fb8 From mboxrd@z Thu Jan 1 00:00:00 1970 From: =?utf-8?B?56ul5L+K57+U?= Subject: Re: ox-pandoc - org-mode + org-ref to docx with bibliographies Date: Thu, 18 Feb 2016 20:04:49 +0800 Message-ID: References: <878u2i1d8g.fsf@ucl.ac.uk> Mime-Version: 1.0 (Mac OS X Mail 9.2 \(3112\)) Content-Type: multipart/alternative; boundary="Apple-Mail=_818F3141-10B2-4748-9529-CA6133AD5FA4" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:47768) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aWNKZ-0006aZ-Dr for emacs-orgmode@gnu.org; Thu, 18 Feb 2016 07:05:12 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aWNKU-0004Fg-Qd for emacs-orgmode@gnu.org; Thu, 18 Feb 2016 07:05:11 -0500 Received: from mail-pa0-x22f.google.com ([2607:f8b0:400e:c03::22f]:33112) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aWNKU-0004FA-GA for emacs-orgmode@gnu.org; Thu, 18 Feb 2016 07:05:06 -0500 Received: by mail-pa0-x22f.google.com with SMTP id fl4so29956675pad.0 for ; Thu, 18 Feb 2016 04:05:06 -0800 (PST) In-Reply-To: <878u2i1d8g.fsf@ucl.ac.uk> 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-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Eric S Fraga Cc: Org mode --Apple-Mail=_818F3141-10B2-4748-9529-CA6133AD5FA4 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=utf-8 My emacs version is=20 GNU Emacs 24.5.1 (x86_64-apple-darwin13.4.0, NS apple-appkit-1265.21) of = 2015-04-11 on builder10-9.porkrind.org = I=E2=80=99m using elpa, and org-mode is updated to the latest version Org-mode version 8.2.10 (release_8.2.10 @ = /Users/mac/.emacs.d/elpa/org-20160215/) I=E2=80=99ve tried to add require =E2=80=98ox, and it=E2=80=99s not the = case. Maybe it is caused by a mixed installation. How to solve this = problem? Thank you! Junxiang > On 18 Feb 2016, at 19:15, Eric S Fraga wrote: >=20 > On Thursday, 18 Feb 2016 at 18:44, =E7=AB=A5=E4=BF=8A=E7=BF=94 wrote: >=20 > [...] >=20 >> and when I perform C-c C-e p x, the error showed as:=20 >>=20 >> org-org-link: Symbol's function definition is void: >> org-export-custom-protocol-maybe >>=20 >> How to solve this problem? Thank you for your help! >=20 > Maybe (require 'ox) > but more likely the result of a mixed installation? What version of = org > are you using? >=20 >=20 > Thanks, > eric > --=20 > : Eric S Fraga (0xFFFCF67D), Emacs 25.0.91.1, Org = release_8.3.3-619-gca1fb8 --Apple-Mail=_818F3141-10B2-4748-9529-CA6133AD5FA4 Content-Transfer-Encoding: quoted-printable Content-Type: text/html; charset=utf-8
My emacs version is 
GNU = Emacs 24.5.1 (x86_64-apple-darwin13.4.0, NS apple-appkit-1265.21) of = 2015-04-11 on builder10-9.porkrind.org

I=E2=80= =99m using elpa, and org-mode is updated to the latest version

Org-mode version 8.2.10 (release_8.2.10 @ = /Users/mac/.emacs.d/elpa/org-20160215/)


I=E2=80=99ve tried to add require =E2=80=98ox, and it=E2=80=99s= not the case. Maybe it is caused by a mixed installation. How to solve = this problem? Thank you!

Junxiang








On 18 Feb 2016, at 19:15, Eric = S Fraga <e.fraga@ucl.ac.uk> wrote:

On = Thursday, 18 Feb 2016 at 18:44, =E7=AB=A5=E4=BF=8A=E7=BF=94 wrote:

[...]

and when I perform C-c C-e p x, the error = showed as:

org-org-link: Symbol's function = definition is void:
org-export-custom-protocol-maybe

How to solve this problem? Thank you for your = help!

Maybe (require 'ox)
but more likely the result of a mixed installation? =  What version of org
are you using?


Thanks,
eric
-- =
: Eric S Fraga (0xFFFCF67D), Emacs 25.0.91.1, Org = release_8.3.3-619-gca1fb8
= --Apple-Mail=_818F3141-10B2-4748-9529-CA6133AD5FA4--