Revision history for LatexTabellen


Revision [20130]

Last edited on 2014-11-25 12:28:28 by ToBo
Additions:
==a==Last used==a==
\newcolumntype{L}[1]{>{\raggedright\let\newline\\\arraybackslash\hspace{0pt}}m{#1}}
\newcolumntype{C}[1]{>{\centering\let\newline\\\arraybackslash\hspace{0pt}}m{#1}}
\newcolumntype{R}[1]{>{\raggedleft\let\newline\\\arraybackslash\hspace{0pt}}m{#1}}
- **h**ere
- **b**ottom
- **t**op
- **p**aragraph
\begin{table}[h]
\centering
\caption{Energy portions to process one sample of data, start up time and transition time depending on core clock frequency and oscillator type (RC: resistor-capacitor; XO: crystal).}
\begin{tabular}{|p{1.8cm}|R{1.3cm}|R{1.3cm}|R{1.3cm}|R{1.3cm}|}
\addlinespace
\hline
Core clock & Proc. time & Proc. energy & Start-up energy & Trans. energy \\
\hline
1.2 MHz RC & 253.6 $\mu$s & 376.5 nJ & 171.9 nJ & 60.0 nJ \\
6.6 MHz RC & 46.4 $\mu$s & 351.6 nJ & 116.8 nJ & 51.7 nJ \\
11 MHz RC & 28.0 $\mu$s & 320.8 nJ & 103.0 nJ & 43.3 nJ \\
14 MHz RC & 21.6 $\mu$s & 300.4 nJ & 97.5 nJ & 41.3 nJ \\
21 MHz RC & 16.8 $\mu$s & 305.1 nJ & 92.5 nJ & 35.3 nJ \\
28 MHz RC & 12.8 $\mu$s & 271.4 nJ & 71.2 nJ & 33.1 nJ \\
48 MHz XO & 4.4 $\mu$s & 163.3 nJ & 987.1 nJ &\textless 13.2 nJ \\
\hline
\end{tabular}
\label{tab:resClock}


Revision [19972]

Edited on 2014-10-21 22:15:04 by ToBo
Additions:
http://blog.modelworks.ch/?p=153
Deletions:
http://www.namsu.de/Extra/pakete/Tabulary.html


Revision [19971]

Edited on 2014-10-21 22:14:22 by ToBo
Additions:
http://www.namsu.de/Extra/pakete/Tabulary.html


Revision [14557]

Edited on 2012-12-12 14:54:43 by ToBo
Additions:
==a==Sehr einfache Tabelle==a==
Nicht empfehlenswert.
==a==Tabelle mit Rand==a==
==a==Tabelle mit tabularx==a==
Bessere möglichkeiten der Textausrichtung, aber es geht noch besser mit tabulary...
==a==Tabellen mit tabulary==a==
Die besten Ergebnisse erzielte ich mit tabulary
\begin{tabulary}{\linewidth}{LLJ}
\tablehead Spaltenüberschrift 1 &
\tablehead Spaltenüberschrift 2 &
\tablehead Spaltenüberschrift 3 \tabularnewline
Zeile 1; Spalte 1
& Zeile 1; Spalte 2
& Zeile 1; Spalte 3
\tabularnewline \hline
%
Zeile 2; Spalte 1
& Zeile 2; Spalte 2
& Zeile 2; Spalte 3
\tabularnewline \hline
%
\end{tabulary}
\caption{Tabelenbeschriftungstext}
\label{tab:ChecklisteRegAnforderungen}
==a==Tabelle mit alternierender Farbe==a==
Deletions:
Einfache Tabelle
Tabelle mit Rand
Tabelle mit tabularx
Tabelle mit alternierender Farbe


Revision [10490]

Edited on 2009-12-14 00:53:51 by ToBo
Additions:
Einfache Tabelle
{|cellpadding="10"
|-valign="top"
|
||
||
|}
Tabelle mit Rand
Deletions:
Einfache Tabelle mit Rand


Revision [10488]

Edited on 2009-12-14 00:52:44 by ToBo
Additions:
Tabelle mit tabularx
\begin{table}[H]
\label{tab:RelevanteRegularien}
\tablestyle
\begin{tabularx}{\textwidth}{lXXlX}
\tableheadcolor
\tablehead Kurzbezeichnung &
\tablehead Ausrührliche Bezeichnung &
\tablehead Typ &
\tablehead Stellt Anforderungen an \tabularnewline
%
\tablebody
\textit{Beschreibung} & Inhalt & Inhalt & Inhalt \tabularnewline
\textit{Beschreibung} & Inhalt & Inhalt & Inhalt \tabularnewline
\tableend
\end{tabularx}
\caption{Tabelle mit tabularx}
Tabelle mit alternierender Farbe
\begin{table}[H]
\tablestyle
\tablealtcolored
\begin{tabular}{*{2}{v{0.45\textwidth}}}
\hline
\tableheadcolor
\tablehead Tabellenkopf &
\tablehead Tabellenkopf \tabularnewline\hline
% Zwischenkopf
\multicolumn{2}{>{\columncolor{tablesubheadcolor}}l}{
\bfseries Zwischenkopf
} \tabularnewline
\tablebody
Inhalt & Inhalt \tabularnewline
Inhalt & Inhalt \tabularnewline
Inhalt & Inhalt \tabularnewline
Inhalt & Inhalt \tabularnewline
Inhalt & Inhalt \tabularnewline
Inhalt & Inhalt \tabularnewline
\multicolumn{2}{>{\columncolor{tablesubheadcolor}}l}{
\bfseries Zwischenkopf
} \tabularnewline
Inhalt & Inhalt \tabularnewline
Inhalt & Inhalt \tabularnewline
\hline
\end{tabular}


Revision [10487]

Edited on 2009-12-13 20:10:50 by ToBo
Additions:
Einfache Tabelle mit Rand


Revision [10486]

Edited on 2009-12-13 20:10:35 by ToBo
Additions:
=====Tabellen in LateX=====
%%(latex)
\begin{table}
\center
\begin{tabular}{|l|l|l|}
\hline
1 & 2 & 3 \\ \hline
4 & 5 & 6 \\ \hline
7 & 8 & 9 \\ \hline
\end{tabular}
\caption{Zutreffende Normen und Gesetze}
\label{tab:ZutreffendeNormenUndGesetze}
\end{table}
%%
Deletions:
=====Titel=====


Revision [10485]

The oldest known version of this page was created on 2009-12-13 20:10:15 by ToBo
Valid XHTML :: Valid CSS: :: Powered by WikkaWiki