From mboxrd@z Thu Jan 1 00:00:00 1970 From: John Hendy Subject: A more "universal markup" for exporters with italics/quotes? Date: Tue, 18 Oct 2011 15:14:14 -0500 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Return-path: Received: from eggs.gnu.org ([140.186.70.92]:43393) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RGG3G-0004rz-02 for emacs-orgmode@gnu.org; Tue, 18 Oct 2011 16:14:18 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RGG3E-0008DT-2h for emacs-orgmode@gnu.org; Tue, 18 Oct 2011 16:14:17 -0400 Received: from mail-ey0-f169.google.com ([209.85.215.169]:55316) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RGG3D-0008DD-SQ for emacs-orgmode@gnu.org; Tue, 18 Oct 2011 16:14:16 -0400 Received: by eye4 with SMTP id 4so1101870eye.0 for ; Tue, 18 Oct 2011 13:14:15 -0700 (PDT) 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: emacs-orgmode In reading the recent request to specify fonts for ODT, I was reminded of a recent problem I had. I'm writing a longer-ish document (ended up at about 15 pages) and am primarily typesetting with LaTeX to PDF. In sending it to others for feedback, however, they wanted something editable for comments, so I used the ODT exporter for the first time. Two things didn't work so well: - italics: org doesn't handle multiple line italics in between / and /. Thus, I use \emph{}. These didn't work with the odt exporter (nor would they with other exporters). - quotes: I like to indent and do interesting things with quotes. My current preference is something like so: #+begin_org \begin{tabular}{p{0.5cm}p{0.85\textwidth}} & \emph{here is my long quote...} \\ \end{tabular} #+end_org That also doesn't work with export to other formats. Could there be something like #+begin_quote or some other more "universal" indicator of italics (or other text modifiers like bold or underline) that would work more universally? I'm thinking: -- LaTeX: be able to specify style for quote or just use \begin{quote}, org italic markup -> \emph{} -- html: quote ->
, italics -> -- odt: quote -> indented block?, italics -> italics -- others? Just some thoughts. John