From mboxrd@z Thu Jan 1 00:00:00 1970 From: Eric S Fraga Subject: Re: Bug: LaTeX export of table with caption broken Date: Wed, 23 Jan 2019 08:36:56 +0000 Message-ID: <878szb7ot3.fsf@gmail.com> References: <87ftto2084.fsf@informationelle-selbstbestimmung-im-internet.de> <87bm4cbsbm.fsf@nicolasgoaziou.fr> <87zhrsllrc.fsf@gmail.com> <87ef941f1k.fsf@nicolasgoaziou.fr> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([209.51.188.92]:57900) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gmE1w-0007WQ-KV for emacs-orgmode@gnu.org; Wed, 23 Jan 2019 03:37:05 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gmE1s-0005z1-MW for emacs-orgmode@gnu.org; Wed, 23 Jan 2019 03:37:04 -0500 Received: from mail-wr1-x42a.google.com ([2a00:1450:4864:20::42a]:43834) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gmE1s-0005xM-AE for emacs-orgmode@gnu.org; Wed, 23 Jan 2019 03:37:00 -0500 Received: by mail-wr1-x42a.google.com with SMTP id r10so1325125wrs.10 for ; Wed, 23 Jan 2019 00:36:59 -0800 (PST) Received: from pinto (pinto.chemeng.ucl.ac.uk. [128.40.74.171]) by smtp.gmail.com with ESMTPSA id g9sm54210465wmg.44.2019.01.23.00.36.56 for (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Wed, 23 Jan 2019 00:36:56 -0800 (PST) In-Reply-To: <87ef941f1k.fsf@nicolasgoaziou.fr> (Nicolas Goaziou's message of "Tue, 22 Jan 2019 23:52:07 +0100") 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 --=-=-= Content-Type: text/plain On Tuesday, 22 Jan 2019 at 23:52, Nicolas Goaziou wrote: > I cannot reproduce it. E.g., > Would you have an ECM? Strangely, with attached ECM and emacs -Q, I have this problem. See attached resulting LaTeX. Thanks, -- Eric S Fraga via Emacs 27.0.50, Org release_9.2-204-g3fc7b0 --=-=-= Content-Type: text/x-tex Content-Disposition: attachment; filename=t.tex % Created 2019-01-23 Wed 08:34 % Intended LaTeX compiler: pdflatex \documentclass[11pt]{article} \usepackage[utf8]{inputenc} \usepackage[T1]{fontenc} \usepackage{graphicx} \usepackage{grffile} \usepackage{longtable} \usepackage{wrapfig} \usepackage{rotating} \usepackage[normalem]{ulem} \usepackage{amsmath} \usepackage{textcomp} \usepackage{amssymb} \usepackage{capt-of} \usepackage{hyperref} \author{Eric S Fraga} \date{\today} \title{} \hypersetup{ pdfauthor={Eric S Fraga}, pdftitle={}, pdfkeywords={}, pdfsubject={}, pdfcreator={Emacs 27.0.50 (Org mode 9.2)}, pdflang={English}} \begin{document} \tableofcontents This is a table: \begin{table}[htbp] \centering \begin{tabular}{ll} item & description\\ \hline one & first\\ two & second\\ \hline \end{tabular} \end{table} \end{document} --=-=-= Content-Type: text/x-org Content-Disposition: attachment; filename=t.org This is a table: | item | description | |------+-------------| | one | first | | two | second | |------+-------------| --=-=-=--