From 2c66e40c6755c042bc6bd0632058ccdba009f50f Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Thu, 2 Jul 2015 09:20:42 +0200 Subject: [PATCH] org.texi: Fix un-exportable table * doc/org.texi (Column groups): Prevent "[4]" from being interpreted as a footnote reference so as to make table exportable. Reported-by: Nicolas Richard --- doc/org.texi | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/doc/org.texi b/doc/org.texi index 8ec8a510d..5344c73c1 100644 --- a/doc/org.texi +++ b/doc/org.texi @@ -2392,13 +2392,13 @@ a group of its own. Boundaries between column groups will upon export be marked with vertical lines. Here is an example: @example -| N | N^2 | N^3 | N^4 | sqrt(n) | sqrt[4](N) | -|---+-----+-----+-----+---------+------------| -| / | < | | > | < | > | -| 1 | 1 | 1 | 1 | 1 | 1 | -| 2 | 4 | 8 | 16 | 1.4142 | 1.1892 | -| 3 | 9 | 27 | 81 | 1.7321 | 1.3161 | -|---+-----+-----+-----+---------+------------| +| N | N^2 | N^3 | N^4 | ~sqrt(n)~ | ~sqrt[4](N)~ | +|---+-----+-----+-----+-----------+--------------| +| / | < | | > | < | > | +| 1 | 1 | 1 | 1 | 1 | 1 | +| 2 | 4 | 8 | 16 | 1.4142 | 1.1892 | +| 3 | 9 | 27 | 81 | 1.7321 | 1.3161 | +|---+-----+-----+-----+-----------+--------------| #+TBLFM: $2=$1^2::$3=$1^3::$4=$1^4::$5=sqrt($1)::$6=sqrt(sqrt(($1))) @end example -- 2.11.4.GIT