From: "Joost Kremers" <joostkremers@fastmail.fm>
To: emacs-orgmode@gnu.org
Subject: Re: very strange LaTeX error
Date: Fri, 20 Dec 2019 13:33:43 +0100 [thread overview]
Message-ID: <c1c4b779-48ed-4c07-adcf-37bcfb34c0c9@www.fastmail.com> (raw)
In-Reply-To: <87immbp5ww.fsf@ucl.ac.uk>
On Fri, Dec 20, 2019, at 12:56 PM, Fraga, Eric wrote:
> #+begin_src latex
> \documentclass{scrartcl}
> \begin{document}
> % packages deleted, none of which is used anyway in the following
> \tableofcontents
>
> \section{some results}
> \label{sec:org4f5891c}
> \begin{table}[hbtp]
> \label{atable}
> \centering
> \begin{tabular}{lrrr}
> \hline
> x & z1 & z2 & g\\
> \hline
> [0.0005, 0.05, 0.5] & 90000.0 & 0.05 & 0.0\\
> [0.000787451, 0.0575948, 0.5] & 110000.0 & 0.05759476698672508 & 0.0\\
> \hline
> \end{tabular}
> \end{table}
> \end{document}
> #+end_src
>
> I get errors like this when compiling with pdflatex:
>
> #+begin_example
> ! Illegal unit of measure (pt inserted).
> <to be read again>
> ,
> l.18 [0.000787451, 0.0575948, 0.5]
> & 110000.0 & 0.05759476698672508 & 0.0\\
> ! Missing = inserted for \ifdim.
> <to be read again>
> #+end_example
>
> What am I doing wrong?
You have `[...]` in the first cell of a table row that is not the first row. Few people seem to realise that the double backslash `\\` in LaTeX is a macro that can actually take an optional argument, a measure specifying the height of the newline. So when a table row ends in `\\` (which is the normal case) and the next row starts with an opening bracket, LaTeX assumes it is looking at an optional argument and expects a measure, i.e., a number followed by one of the supported units.
The solution I usually opt for is to enclose the brackets in an additional set of braces: `{[...]}`. Whether Org export can and should automate that, I can't say.
HTH
--
Joost Kremers
Life has its moments
next prev parent reply other threads:[~2019-12-20 12:34 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-12-20 11:56 very strange LaTeX error Fraga, Eric
2019-12-20 12:33 ` Joost Kremers [this message]
2019-12-20 14:29 ` Stefan Nobis
2019-12-20 15:53 ` Fraga, Eric
2019-12-20 16:28 ` Stefan Nobis
2019-12-20 16:36 ` Fraga, Eric
2019-12-20 14:48 ` Fraga, Eric
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://www.orgmode.org/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=c1c4b779-48ed-4c07-adcf-37bcfb34c0c9@www.fastmail.com \
--to=joostkremers@fastmail.fm \
--cc=emacs-orgmode@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).