blob: a8cebc7f532b1d3c5f584650bfb56fa1d0a0d4a0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
%%
%% Ein Beispiel der DANTE-Edition
%%
%%
%% Copyright (C) 2010 Herbert Voss
%%
%% It may be distributed and/or modified under the conditions
%% of the LaTeX Project Public License, either version 1.3
%% of this license or (at your option) any later version.
%%
%% See http://www.latex-project.org/lppl.txt for details.
%%
%%
%%Run also: >> <<
% Show page(s) 1
%%
\documentclass[ngerman]{article}
\pagestyle{empty}
\setlength\textwidth{166.324pt}
\usepackage{babel}
\setlength\parindent{0pt}
\usepackage{siunitx,booktabs}
\sisetup{expproduct=cdot}
\begin{document}
\SI{10}{\gram} \SI{23.4}{g.cm^3}\\
\num{1e34} \ang{1;2;3}\\
\emph{\SI{16,7}{\metre\per\second}}\\
\textbf{\SI{30e3}{\Hz}}\\
\SI{1.2 x 3.56 x 9.2}{\milli\metre}\\
\sisetup{obeyall} \textbf{\SI{-4.5}{\cm}}\\
\si{\joule\per\mole\per\kelvin}\\
\si[per=frac]{\joule\per\mole\per\kelvin}\\
\num[dp=4]{1.23456} \num[dp=4]{9.8}\\
\begin{tabular}{S[tabformat=3.2]}\toprule
{Heading}\\\midrule
1.3 \\ 134.2 \\ 3.56 \\ 74,7 \\\bottomrule
\end{tabular}
\end{document}
|