From mboxrd@z Thu Jan 1 00:00:00 1970 From: Sebastian Fischmeister Subject: Re: Annotating org exporters Date: Wed, 11 May 2016 01:31:12 -0400 Message-ID: <87zirxp3lk.fsf@uwaterloo.ca> References: <87futqvwy6.fsf@uwaterloo.ca> <87vb2l52ma.fsf@gmx.us> Reply-To: sfischme@uwaterloo.ca 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]:36051) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b0Mk3-00053A-Qf for emacs-orgmode@gnu.org; Wed, 11 May 2016 01:31:32 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1b0Mju-0008Ju-FJ for emacs-orgmode@gnu.org; Wed, 11 May 2016 01:31:26 -0400 Received: from mailservices.uwaterloo.ca ([129.97.128.141]:58857 helo=mailchk-m02.uwaterloo.ca) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b0Mjt-0008Jl-S9 for emacs-orgmode@gnu.org; Wed, 11 May 2016 01:31:18 -0400 In-Reply-To: <87vb2l52ma.fsf@gmx.us> 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: Rasmus , emacs-orgmode@gnu.org > > This sounds a bit like org-entities. I use this together with cdlatex for > quickly inserting such things. > > Try to type \Rightarrow and type C-c C-x \ > Also try to export to text (non-unicode). You will get the desired symbo= l. > > Alternatively, you can use one of the many input methods such as TeX or > rfc1345 in which case you can get the =E2=80=98=E2=87=92=E2=80=99 by typi= ng =E2=80=98\Rightarrow=E2=80=99 or > =E2=80=98&=3D>=E2=80=99, respectively. In latex, you can setup unicode-m= ath. That's interesting, because it's more robust to add something to the org-entities-user list than to regexp replace a portion of the whole document. However, there are two disadvantages to org-entities: (1) they have to start with a backslash (e.g., \Rightarrow) and (2) they don't seem to support alphabet-based names, so this doesn't work: (add-to-list 'org-entities-user '("=3D>" "\\rightarrow" t "=3D>" "=3D>" "= =C2=BB" "=C2=BB")) Sebastian