From mboxrd@z Thu Jan 1 00:00:00 1970 From: Vikas Rawal Subject: Org to LaTeX export of tables Date: Mon, 24 Aug 2015 05:06:15 +0530 Message-ID: Mime-Version: 1.0 (Mac OS X Mail 8.2 \(2070.6\)) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:46709) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZTeoM-0006UW-OH for emacs-orgmode@gnu.org; Sun, 23 Aug 2015 19:36:27 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZTeoH-0001Vg-Oq for emacs-orgmode@gnu.org; Sun, 23 Aug 2015 19:36:26 -0400 Received: from mail-pd0-f169.google.com ([209.85.192.169]:36258) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZTeoH-0001VO-KE for emacs-orgmode@gnu.org; Sun, 23 Aug 2015 19:36:21 -0400 Received: by pdbmi9 with SMTP id mi9so46003786pdb.3 for ; Sun, 23 Aug 2015 16:36:20 -0700 (PDT) Received: from [192.168.1.37] ([59.176.42.82]) by smtp.gmail.com with ESMTPSA id qr5sm15040212pbb.26.2015.08.23.16.36.18 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Sun, 23 Aug 2015 16:36:19 -0700 (PDT) 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-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: org-mode mailing list Please see the sample org table below, and the way it is exported in = LaTeX. I do not want \begin{center} and \end{center}. Having those results in = some extra space between the table and the notes. How can I get rid of it? My org version: Org-mode version 8.3 (release_8.3-3-gb5f5d6) Vikas #+NAME: table-name #+CAPTION: Caption of table #+begin_table #+begin_threeparttable #+attr_latex: :environment tabulary :width \textwidth :align LRR | Col1 | col2 | col3 | | | | | | | | | | | | | | | | | #+begin_tablenotes \item[] \footnotesize /Notes/: \item[] \footnotesize Note 1 says something \item[] \footnotesize Note one says something else \item[] \footnotesize /Source/: Imagined by somebody #+end_tablenotes #+end_threeparttable #+end_table The LaTeX export: \begin{table} \caption{\label{orgspecialblock1} Caption of table} \begin{threeparttable} \begin{center} \begin{tabulary}{\textwidth}{LRR} Col1 & col2 & col3\\ & & \\ & & \\ & & \\ & & \\ \end{tabulary} \end{center} \begin{tablenotes} \item[] \footnotesize \emph{Notes}: \item[] \footnotesize Note 1 says something \item[] \footnotesize Note one says something else \item[] \footnotesize \emph{Source}: Imagined by somebody \end{tablenotes} \end{threeparttable} \end{table}=