From mboxrd@z Thu Jan 1 00:00:00 1970 From: Uwe Brauer Subject: radio tables centered AND vertical lines Date: Fri, 27 May 2016 10:38:58 +0000 Message-ID: <87pos723b1.fsf@mat.ucm.es> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:40118) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b6FAb-0000GR-3Q for emacs-orgmode@gnu.org; Fri, 27 May 2016 06:39:09 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1b6FAX-0006jh-Ug for emacs-orgmode@gnu.org; Fri, 27 May 2016 06:39:09 -0400 Received: from plane.gmane.org ([80.91.229.3]:60319) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b6FAX-0006jc-Nu for emacs-orgmode@gnu.org; Fri, 27 May 2016 06:39:05 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1b6FAV-0008Ak-T8 for emacs-orgmode@gnu.org; Fri, 27 May 2016 12:39:04 +0200 Received: from gilgamesch.quim.ucm.es ([147.96.12.99]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 27 May 2016 12:39:03 +0200 Received: from oub by gilgamesch.quim.ucm.es with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 27 May 2016 12:39:03 +0200 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: "Emacs-orgmode" To: emacs-orgmode@gnu.org 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