summaryrefslogtreecommitdiff
path: root/info/examples/tlc3/example-sources/6-7-17.ltx
diff options
context:
space:
mode:
Diffstat (limited to 'info/examples/tlc3/example-sources/6-7-17.ltx')
-rw-r--r--info/examples/tlc3/example-sources/6-7-17.ltx32
1 files changed, 32 insertions, 0 deletions
diff --git a/info/examples/tlc3/example-sources/6-7-17.ltx b/info/examples/tlc3/example-sources/6-7-17.ltx
new file mode 100644
index 0000000000..661840a633
--- /dev/null
+++ b/info/examples/tlc3/example-sources/6-7-17.ltx
@@ -0,0 +1,32 @@
+%%
+%% The LaTeX Companion, 3ed
+%%
+%% Example 6-7-17 on page I-486 in "siunitx --- Scientific numbers in tables".
+%%
+%% Copyright (C) 2022 Frank Mittelbach
+%%
+%% It may be distributed and/or modified under the conditions
+%% of the LaTeX Project Public License, either version 1.3c
+%% of this license or (at your option) any later version.
+%%
+%% See https://www.latex-project.org/lppl.txt for details.
+%%
+
+\documentclass{tlc3exa}
+\pagestyle{empty}
+\setcounter{page}{6}
+\setlength\textwidth{123.0pt}
+\setlength\parindent{0pt}
+%StartShownPreambleCommands
+\usepackage{siunitx}
+%StopShownPreambleCommands
+
+\begin{document}
+\begin{tabular}{|S[table-format=2.2e1]|
+ S[exponent-mode=fixed,drop-exponent,fixed-exponent=3,
+ table-format=2.4]|}
+ {Data} & {Data (\num[drop-exponent=false,
+ print-unity-mantissa=false]{e3})} \\
+ 1.2e3 & 1.2e3 \\ 17.5 & 17.5 \\ 3e2 & 3e2 \\ 1.03e4 & 1.03e4
+\end{tabular}
+\end{document}