Re: [O] new latex exporter and attr_latex

2012-12-16 Thread François Allisson

Le jeudi 12 décembre 2012 à 15h24, Nicolas Goaziou a écrit:
 Or, perhaps better, since it will work across all export back-ends:

 | l  | c|   r |
 | left | center | right |


Thanks for this cross-back-ends tips, this is indeed a powerful tool.

Best,
François



Re: [O] new latex exporter and attr_latex

2012-12-12 Thread François Allisson
 Yes, the syntax has changed; see 
 http://thread.gmane.org/gmane.emacs.orgmode/62766

 In short, you should use:
 #+ATTR_LATEX: :align lcr

 Kind Regards,
 Mike

Thanks. It works like that.

Best thoughts,
François



[O] new latex exporter and attr_latex

2012-12-11 Thread François Allisson
Hi,

The following example used to work for me

***
#+ATTR_LATEX: align=lcr
| left | center | right |
***

i.e. it was exported with the correct alignment rules. But now (Org
7.9.2-666/ Emacs 24.2.50.1), it seems to not work any more, as it get
exported as

**
\begin{center}
\begin{tabular}{lll}
left  center  right\\
\end{tabular}
\end{center}
**

The lll, instead of lcr is what bother me...

Any change recently around attr_latex or align?

Thanks for any help,

François



Re: [O] new latex exporter and attr_latex

2012-12-11 Thread Nick Dokos
François Allisson franc...@allisson.co wrote:

 Hi,
 
 The following example used to work for me
 
 ***
 #+ATTR_LATEX: align=lcr
 | left | center | right |
 ***
 
 i.e. it was exported with the correct alignment rules. But now (Org
 7.9.2-666/ Emacs 24.2.50.1), it seems to not work any more, as it get
 exported as
 
 **
 \begin{center}
 \begin{tabular}{lll}
 left  center  right\\
 \end{tabular}
 \end{center}
 **
 
 The lll, instead of lcr is what bother me...
 
 Any change recently around attr_latex or align?
 

See

http://thread.gmane.org/gmane.emacs.orgmode/62766

Nick

 Thanks for any help,
 
 François
 



Re: [O] new latex exporter and attr_latex

2012-12-11 Thread François Allisson

Le mardi 11 décembre 2012 à 17h47, Nick Dokos a écrit:
 See

   http://thread.gmane.org/gmane.emacs.orgmode/62766


Thanks Nick!

#+attr_latex: :align lcr
works fine!

François



Re: [O] new latex exporter and attr_latex

2012-12-11 Thread Michael Gauland
François Allisson francois at allisson.co writes:

 
 Hi,
 
 The following example used to work for me
 
 ***
 #+ATTR_LATEX: align=lcr
 | left | center | right |
 ***
 Any change recently around attr_latex or align?
 


Yes, the syntax has changed; see 
http://thread.gmane.org/gmane.emacs.orgmode/62766

In short, you should use:
#+ATTR_LATEX: :align lcr

Kind Regards,
Mike