emacs-orgmode
[Top][All Lists]
Advanced

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

[Orgmode] latex-export + columnview: misinterpretation of section prefix


From: Juan Pechiar
Subject: [Orgmode] latex-export + columnview: misinterpretation of section prefixes as emphasis
Date: Mon, 31 May 2010 00:38:53 -0300
User-agent: Mutt/1.5.20 (2009-06-14)

Hi!

The test file below contains a columnview table showing section
headers.

Export to HTML works OK: the asterisks inside the table are
transformed into indentation.

Export to LaTeX: asterisk pairs are interpreted as emphasis, resulting
in an incorrect renering of asterisks and bold asterisks.

Following the code, I got lost at org-export-latex-fontify.

I will keep searching for what is happening, but any guidance will be
appreciated.

Thanks!

.j.


Test file:
========================================
#+COLUMNS: %25ITEM

* There comes the table

#+BEGIN: columnview :vlines 1 :id global
|   | ITEM                    |
|---+-------------------------|
|   | * There comes the table |
|   | * first                 |
|   | ** second               |
|   | *** third               |
|   | *** other third         |
|   | **** fourth             |
|   | ** other second         |
| / | <>                      |
#+END:

* first
** second
*** third
*** other third
**** fourth
** other second
========================================

LaTeX output:
========================================
\begin{tabular}{l}
 ITEM                     \\
\hline
 * There comes the table  \\
 * first                  \\
 ** second                \\
 *** third                \\
 \textbf{*} other third   \\
 \textbf{**} fourth       \\
 ** other second          \\
\end{tabular}
========================================

And the PDF display reads:
========================================
ITEM
* There comes the table
first
* second
** third
* other third
** fourth
* other second
========================================





reply via email to

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