emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Orgmode] Latex export bugs and a request


From: Carsten Dominik
Subject: Re: [Orgmode] Latex export bugs and a request
Date: Mon, 16 Mar 2009 22:16:48 +0100

Hi Matt,

On Mar 16, 2009, at 8:16 PM, Matthew Lundin wrote:


Hi Carsten,

I have a three minor LaTeX export bugs to report and a request.

1. I a table group begins in the first column of a table, the boundary
is missing in the latex export.

--8<---------------cut here---------------start------------->8---
|---+------+----+---------|
| / | <    |    | >       |
|   | Here | is | a table |
|---+------+----+---------|
--8<---------------cut here---------------end--------------->8---

produces

,----
| \begin{center}
| \begin{tabular}{lll|}
| \hline
|  Here  &  is  &  a table  \\
| \hline
| \end{tabular}
| \end{center}
`----

Note the {lll|} rather than {|lll}.

Strange, I am getting {lll}, with no vertical lines on either outside.
Ah, you have org-export-latex-tables-column-borders turned on.
Yes, there was a bug, fixed now.  Thanks!



2. Headlines greater than n when H:n (e.g., level three headlines when H
is set to 2) are exported as description lists.

Is this the intended behavior?

This is how Bastien designed it, and it is similar to the HTML way, turning these into lists. It works fine if there is any text before the plain list bullets.

Do you have a better proposal?


3. A different issue: html export seems ignores anything inside of
#+begin_latex ... #+end_latex, but the LaTeX exporter does not ignore
the #+begin_html, #+end_html, and #+html directives.

Would it be possible to have the latex exporter ignore markup
designated as html?

I am unable to reproduce this, works fine for me.


4. Finally, a request

Would it be possible to add markup for centered text to org-mode? I've
begun to create documents in org mode for export both to html and LaTeX.
For now, my workaround is to create macros for centered text that I
comment out depend on how the document is to be exported. But it would
be great if there was something like #+begin_center ... #+end_center.

OK, we have now #+begin_center


,----
| #+MACRO: begincenter #+latex: \begin{center}
| #+MACRO: endcenter #+latex: \end{center}
| # #+MACRO: begincenter #+html: <div style="text-align: center;">
| # #+MACRO: endcenter #+html: </div>
`----

A related thought (and sorry for the very long email), is there any way
to define these types of macros globally, rather than in-buffer? It
would be really nice to be able to set commonly used macros globally.
Even nicer would be the ability to define macros that are context
sensitive: i.e., one substitution for for LaTeX export, another
substitution for HTML export. This might make it easier to export the
same source file to different outputs. Just a wishlist item....

Yes, guess we could have global macros, and also macros that expand depending on exporter type. I have not though much about it, maybe you'd like to draw up a syntax?

- Carsten




reply via email to

[Prev in Thread] Current Thread [Next in Thread]