Re: [O] radio tables centered AND vertical lines

2016-05-27 Thread Nicolas Goaziou
Uwe Brauer  writes:

 "Nicolas" == Nicolas Goaziou  writes:
>
>> Hello,
>> Uwe Brauer  writes:
>
>> Try
>
>>   | / | <>   | <>   |
>>   |   |   |   |
>>   |   | this | today|
>>   |   | that | tomorrow |
>
>
> Thanks very much! Works perfect, maybe add something about it in the
> documentation?

It is already in the documentation.  belongs to part 3.2 "Column
width and alignment" and <> belongs to part 3.3 "Column groups".

Regards,



Re: [O] radio tables centered AND vertical lines

2016-05-27 Thread Uwe Brauer
>>> "Nicolas" == Nicolas Goaziou  writes:

   > Hello,
   > Uwe Brauer  writes:

   > Try

   >   | / | <>   | <>   |
   >   |   |   |   |
   >   |   | this | today|
   >   |   | that | tomorrow |


Thanks very much! Works perfect, maybe add something about it in the
documentation?

Uwe 




Re: [O] radio tables centered AND vertical lines

2016-05-27 Thread Nicolas Goaziou
Hello,

Uwe Brauer  writes:

> | / |   |   |
> |   | this | today|
> |   | that | tomorrow |
> \end{comment}

Try

  | / | <>   | <>   |
  |   |   |   |
  |   | this | today|
  |   | that | tomorrow |


Regards,

-- 
Nicolas Goaziou



[O] radio tables centered AND vertical lines

2016-05-27 Thread Uwe Brauer
Hello

Please look at the following two examples

\documentclass[12pt]{article}
\usepackage{amssymb,amsfonts,amsmath,amsthm}
\begin{document}


% BEGIN RECEIVE ORGTBL test
\begin{tabular}{|l|l|}
this & today\\ \hline
that & tomorrow\\ \hline
\end{tabular}
% END RECEIVE ORGTBL test
\begin{comment}
#+ORGTBL: SEND test orgtbl-to-latex  :lend " \\hline" :environment tabular
| / | <>   | <>   |
|   | this | today|
|   | that | tomorrow |
\end{comment}





% BEGIN RECEIVE ORGTBL test2
\begin{tabular}{cc}
this & today\\ \hline
that & tomorrow\\ \hline
\end{tabular}
% END RECEIVE ORGTBL test2
\begin{comment}
#+ORGTBL: SEND test2 orgtbl-to-latex  :lend " \\hline" :environment tabular
| / |   |   |
|   | this | today|
|   | that | tomorrow |
\end{comment}

\end{document}

The first one nicely generates
\begin{tabular}{|l|l|}
but the second one

\begin{tabular}{cc}

How can I achieve

\begin{tabular}{|c|c|}

thanks

Uwe Brauer