emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
From: Nicolas Goaziou <n.goaziou@gmail.com>
To: AW <alexander.willand@t-online.de>
Cc: Nick Dokos <ndokos@gmail.com>, emacs-orgmode@gnu.org
Subject: Re: Bug in export orgtbl / LaTeX
Date: Tue, 18 Jun 2013 22:12:03 +0200	[thread overview]
Message-ID: <87fvwfgovg.fsf@gmail.com> (raw)
In-Reply-To: <1739590.NZpg6Crt5q@linux-ik7b.site> (AW's message of "Mon, 17 Jun 2013 14:34:34 +0200")

Hello,

AW <alexander.willand@t-online.de> writes:

> isn't that quite a contradiction: according to org-syntax tables can not 
> contain lists, but orgtbl-to-latex treats "1." inside a table as if it were a 
> beginning of a list?

Of course it is a contradiction. As, I wrote it, "orgtbl-to-latex"
interprets Org syntax differently, since it doesn't rely on Elements.

> Besides that, thank you for your code, but as my MEW showed, I use things like 
> :splice t . In fact, I do splice nearly every orgtbl into a frame on the 
> LaTeX-side.

Take 2. We can implement back :splice property. The others are much less
useful.

  (defun orgtbl-to-latex (table params)
    "Convert the orgtbl-mode TABLE to LaTeX.
  TABLE is a list, each entry either the symbol `hline' for
  a horizontal separator line, or a list of fields for that line.
  PARAMS is a property list of parameters that can influence the
  conversion.  Currently this function recognizes the following
  parameters:

  :splice    When set to t, return only table body lines, don't wrap
             them into a \"tabular\" environment.  Default is nil."
    (require 'ox-latex)
    (let ((table-string (orgtbl-to-orgtbl table nil)))
      (if (not (plist-get params :splice))
          (org-export-string-as table-string 'latex t '(:with-tables t))
        ;; If :splice is non-nil, we create a temporary back-end,
        ;; `latex-tmp', derived from `latex', but with a transparent
        ;; table translator.
        (let ((org-export-registered-backends org-export-registered-backends))
          (org-export-define-derived-backend 'latex-tmp 'latex
            :translate-alist (list (cons 'table (lambda (e c i) c))))
          (org-export-string-as table-string 'latex-tmp t '(:with-tables t))))))

WDYT?


Regards,

-- 
Nicolas Goaziou

  parent reply	other threads:[~2013-06-18 20:12 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-06-12 15:55 Bug in export orgtbl / LaTeX AW
2013-06-13 17:22 ` AW
2013-06-13 17:29   ` Nick Dokos
2013-06-13 19:04     ` AW
2013-06-14 16:58       ` Nicolas Goaziou
2013-06-17 12:34         ` AW
2013-06-17 18:20           ` Suvayu Ali
2013-06-18 20:12           ` Nicolas Goaziou [this message]
2013-06-19 11:41             ` AW

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=87fvwfgovg.fsf@gmail.com \
    --to=n.goaziou@gmail.com \
    --cc=alexander.willand@t-online.de \
    --cc=emacs-orgmode@gnu.org \
    --cc=ndokos@gmail.com \
    /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
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public 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).