emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* Extra columns in LaTeX tables when =fixed=
@ 2009-02-02 11:03 Sebastian Rose
  2009-02-02 11:19 ` Carsten Dominik
  0 siblings, 1 reply; 4+ messages in thread
From: Sebastian Rose @ 2009-02-02 11:03 UTC (permalink / raw)
  To: emacs-orgmode Org-Mode

Hi,


I have a problem with tables and LaTeX export (PDF). I'm not shure if
this is because of my LaTeX headers, but I don't think so.

It seems that `=' is considered a column divider or something. Is there
an option I overlooked?

As soon as I add =fixed width= to a table, extra columns are created:


=> --->8----------------------------->8----------------------------->8---

  |            | Tabelle         | Inhalt       |
  |------------+-----------------+--------------|
  | *Regionen* |                 |              |
  |            | =countries=     | Staaten      |
  |            | =zones=         | Bundesländer |
  |            | =territories=   | Erdteile     |
  | *Hotels*   |                 |              |
  |            | =hotel=         | Hotels       |
  |            | =geocache=      | GEO-Daten    |
  | *Produkte* |                 |              |
  |            | =produkt=       | Produkte     |
  |            | =produktoption= | Optionen     |
  |------------+-----------------+--------------|


<= ---8<-----------------------------8<-----------------------------8<---


results in this tex file:


=> --->8----------------------------->8----------------------------->8---

\begin{center}
\begin{tabular}{lllll}
                    &  Tabelle  &  Inhalt         &     &                \\
\hline
 \textbf{Regionen}  &           &                 &     &                \\
                    &  \verb    &  countries      &     &  Staaten       \\
                    &  \verb    &  zones          &     &  Bundesländer  \\
                    &  \verb    &  territories    &     &  Erdteile      \\
 \textbf{Hotels}    &           &                 &     &                \\
                    &  \verb    &  hotel          &     &  Hotels        \\
                    &  \verb    &  geocache       &     &  GEO-Daten     \\
 \textbf{Produkte}  &           &                 &     &                \\
                    &  \verb    &  produkt        &     &  Produkte      \\
                    &  \verb    &  produktoption  &     &  Optionen      \\
\hline
\end{tabular}
\end{center}

<= ---8<-----------------------------8<-----------------------------8<---

Note the extra Columns. Also, not the position of the headers (I
wouldn't have noticed this without those).



While this one works:

=> --->8----------------------------->8----------------------------->8---

  |            | Tabelle       | Inhalt       |
  |------------+---------------+--------------|
  | *Regionen* |               |              |
  |            | countries     | Staaten      |
  |            | zones         | Bundesländer |
  |            | territories   | Erdteile     |
  | *Hotels*   |               |              |
  |            | hotel         | Hotels       |
  |            | geocache      | GEO-Daten    |
  | *Produkte* |               |              |
  |            | produkt       | Produkte     |
  |            | produktoption | Optionen     |
  |------------+---------------+--------------|

<= ---8<-----------------------------8<-----------------------------8<---




Regards,


--
Sebastian Rose, EMMA STIL - mediendesign, Niemeyerstr.6, 30449 Hannover
Tel.:  +49 (0)511 - 36 58 472
Fax:   +49 (0)1805 - 233633 - 11044
mobil: +49 (0)173 - 83 93 417
Http:  www.emma-stil.de

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Extra columns in LaTeX tables when =fixed=
  2009-02-02 11:03 Extra columns in LaTeX tables when =fixed= Sebastian Rose
@ 2009-02-02 11:19 ` Carsten Dominik
  2009-02-02 12:47   ` Sebastian Rose
  0 siblings, 1 reply; 4+ messages in thread
From: Carsten Dominik @ 2009-02-02 11:19 UTC (permalink / raw)
  To: Sebastian Rose; +Cc: emacs-orgmode Org-Mode

Fixed, thanks.

- Carsten

On Feb 2, 2009, at 12:03 PM, Sebastian Rose wrote:

> Hi,
>
>
> I have a problem with tables and LaTeX export (PDF). I'm not shure if
> this is because of my LaTeX headers, but I don't think so.
>
> It seems that `=' is considered a column divider or something. Is  
> there
> an option I overlooked?
>
> As soon as I add =fixed width= to a table, extra columns are created:
>
>
> => --->8----------------------------->8----------------------------- 
> >8---
>
>  |            | Tabelle         | Inhalt       |
>  |------------+-----------------+--------------|
>  | *Regionen* |                 |              |
>  |            | =countries=     | Staaten      |
>  |            | =zones=         | Bundesländer |
>  |            | =territories=   | Erdteile     |
>  | *Hotels*   |                 |              |
>  |            | =hotel=         | Hotels       |
>  |            | =geocache=      | GEO-Daten    |
>  | *Produkte* |                 |              |
>  |            | =produkt=       | Produkte     |
>  |            | =produktoption= | Optionen     |
>  |------------+-----------------+--------------|
>
>
> <=  
> ---8<-----------------------------8<-----------------------------8<---
>
>
> results in this tex file:
>
>
> => --->8----------------------------->8----------------------------- 
> >8---
>
> \begin{center}
> \begin{tabular}{lllll}
>                    &  Tabelle  &  Inhalt         &      
> &                \\
> \hline
> \textbf{Regionen}  &           &                 &      
> &                \\
>                    &  \verb    &  countries      &     &   
> Staaten       \\
>                    &  \verb    &  zones          &     &   
> Bundesländer  \\
>                    &  \verb    &  territories    &     &   
> Erdteile      \\
> \textbf{Hotels}    &           &                 &      
> &                \\
>                    &  \verb    &  hotel          &     &   
> Hotels        \\
>                    &  \verb    &  geocache       &     &  GEO- 
> Daten     \\
> \textbf{Produkte}  &           &                 &      
> &                \\
>                    &  \verb    &  produkt        &     &   
> Produkte      \\
>                    &  \verb    &  produktoption  &     &   
> Optionen      \\
> \hline
> \end{tabular}
> \end{center}
>
> <=  
> ---8<-----------------------------8<-----------------------------8<---
>
> Note the extra Columns. Also, not the position of the headers (I
> wouldn't have noticed this without those).
>
>
>
> While this one works:
>
> => --->8----------------------------->8----------------------------- 
> >8---
>
>  |            | Tabelle       | Inhalt       |
>  |------------+---------------+--------------|
>  | *Regionen* |               |              |
>  |            | countries     | Staaten      |
>  |            | zones         | Bundesländer |
>  |            | territories   | Erdteile     |
>  | *Hotels*   |               |              |
>  |            | hotel         | Hotels       |
>  |            | geocache      | GEO-Daten    |
>  | *Produkte* |               |              |
>  |            | produkt       | Produkte     |
>  |            | produktoption | Optionen     |
>  |------------+---------------+--------------|
>
> <=  
> ---8<-----------------------------8<-----------------------------8<---
>
>
>
>
> Regards,
>
>
> --
> Sebastian Rose, EMMA STIL - mediendesign, Niemeyerstr.6, 30449  
> Hannover
> Tel.:  +49 (0)511 - 36 58 472
> Fax:   +49 (0)1805 - 233633 - 11044
> mobil: +49 (0)173 - 83 93 417
> Http:  www.emma-stil.de
>
>
> _______________________________________________
> Emacs-orgmode mailing list
> Remember: use `Reply All' to send replies to the list.
> Emacs-orgmode@gnu.org
> http://lists.gnu.org/mailman/listinfo/emacs-orgmode

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Extra columns in LaTeX tables when =fixed=
  2009-02-02 12:47   ` Sebastian Rose
@ 2009-02-02 12:45     ` Carsten Dominik
  0 siblings, 0 replies; 4+ messages in thread
From: Carsten Dominik @ 2009-02-02 12:45 UTC (permalink / raw)
  To: Sebastian Rose; +Cc: emacs-orgmode Org-Mode


On Feb 2, 2009, at 1:47 PM, Sebastian Rose wrote:

> Carsten Dominik <dominik@science.uva.nl> writes:
>> Fixed, thanks.
>
> More than perfect. Thanks!
>
> I can keep on working without a break here. Even in the rare  
> situations
> I run into a bug.
>
>
> I discovered writing LaTeX through OrgMode and it's absolutely
> phantastic. Forget about LyX and all the others :-D
>

:-D

>
>
> Regards,
>
>
>  Sebastian
>
> -- 
> Sebastian Rose, EMMA STIL - mediendesign, Niemeyerstr.6, 30449  
> Hannover
> Tel.:  +49 (0)511 - 36 58 472
> Fax:   +49 (0)1805 - 233633 - 11044
> mobil: +49 (0)173 - 83 93 417
> Http:  www.emma-stil.de

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Extra columns in LaTeX tables when =fixed=
  2009-02-02 11:19 ` Carsten Dominik
@ 2009-02-02 12:47   ` Sebastian Rose
  2009-02-02 12:45     ` Carsten Dominik
  0 siblings, 1 reply; 4+ messages in thread
From: Sebastian Rose @ 2009-02-02 12:47 UTC (permalink / raw)
  To: Carsten Dominik; +Cc: emacs-orgmode Org-Mode

Carsten Dominik <dominik@science.uva.nl> writes:
> Fixed, thanks.

More than perfect. Thanks!

I can keep on working without a break here. Even in the rare situations
I run into a bug.


I discovered writing LaTeX through OrgMode and it's absolutely
phantastic. Forget about LyX and all the others :-D



Regards,


  Sebastian

-- 
Sebastian Rose, EMMA STIL - mediendesign, Niemeyerstr.6, 30449 Hannover
Tel.:  +49 (0)511 - 36 58 472
Fax:   +49 (0)1805 - 233633 - 11044
mobil: +49 (0)173 - 83 93 417
Http:  www.emma-stil.de

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2009-02-02 12:45 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-02-02 11:03 Extra columns in LaTeX tables when =fixed= Sebastian Rose
2009-02-02 11:19 ` Carsten Dominik
2009-02-02 12:47   ` Sebastian Rose
2009-02-02 12:45     ` Carsten Dominik

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).