summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Goaziou <mail@nicolasgoaziou.fr>2018-12-14 14:21:19 +0100
committerNicolas Goaziou <mail@nicolasgoaziou.fr>2018-12-14 14:22:07 +0100
commitb3afd71a064bbac62dbca65f396222a431c80353 (patch)
tree003fad08d99a07baef8b13bfa9fe7fa741d852a4
parent8fc4fcb8a7c6570a65e802d3d81c4d972347b6b7 (diff)
downloadorg-mode-b3afd71a064bbac62dbca65f396222a431c80353.tar.gz
org-manual: Small fixes
* doc/org-manual.org (A LaTeX example of radio tables): Use correct markup, improve wording, fix typo.
-rw-r--r--doc/org-manual.org22
1 files changed, 11 insertions, 11 deletions
diff --git a/doc/org-manual.org b/doc/org-manual.org
index ca9f3c4..79de0a5 100644
--- a/doc/org-manual.org
+++ b/doc/org-manual.org
@@ -19782,14 +19782,15 @@ Orgtbl mode and uses a =tabular= environment to typeset the table and
marks horizontal lines with ~\hline~. For additional parameters to
control output, see [[*Translator functions]]:
-- ~:splice nil/t~ ::
+- =:splice BOOLEAN= ::
- When non-~nil~, return only table body lines; not wrapped in
- tabular environment. Default is ~nil~.
+ When {{{var(BOOLEAN}}} is non-~nil~, return only table body
+ lines; i.e., not wrapped in =tabular= environment. Default is
+ ~nil~.
-- ~:fmt FMT~ ::
+- =:fmt FMT= ::
- Format to warp each field. It should contain =%s= for the
+ Format string to warp each field. It should contain =%s= for the
original field value. For example, to wrap each field value in
dollar symbol, you could use =:fmt "$%s$"=. Format can also wrap
a property list with column numbers and formats, for example
@@ -19797,15 +19798,14 @@ control output, see [[*Translator functions]]:
of one argument can be used; the function must return a formatted
string.
-- ~:efmt EFMT~ ::
+- =:efmt EFMT= ::
Format numbers as exponentials. The spec should have =%s= twice
- for inserting mantissa and exponent, for example
- ="%s\\times10^{%s}"=. This may also be a property list with
- column numbers and formats, for example =:efmt (2
- "$%s\\times10^{%s}$" 4 "$%s\\cdot10^{%s}$")=. After
+ for inserting mantissa and exponent, for example ="%s\\times10^{%s}"=.
+ This may also be a property list with column numbers and formats,
+ for example =:efmt (2 "$%s\\times10^{%s}$" 4 "$%s\\cdot10^{%s}$")=. After
{{{var(EFMT)}}} has been applied to a value, {{{var(FMT)}}}---see
- above---is also be applied. Functions with two arguments can be
+ above---is also applied. Functions with two arguments can be
supplied instead of strings. By default, no special formatting
is applied.