Difference between revisions of "Tables"
Fbaeckmann (talk | contribs) (→Funktion) |
Fbaeckmann (talk | contribs) m (Text replacement - "[[VisualEditor" to "[[Reference:VisualEditor") |
Contents
- 1 Functionality
- 2 Einfache Tabellen Simple tables
-
3 Komplexere Tabellen More complex tables
- 3.1 Rahmen Borders
- 3.2 Titelzeilen Title rows
- 3.3 Zellen verbinden: Rowspanning und Colspanning Combining cells: rowspanning and rolspanning
- 3.4 Verschachtelte Tabellen Nested tables
- 3.5 Beschriftung Caption
- 3.6 Aufzählungszeichen Lists
- 3.7 Sortierbare Tabellen Sortable tables
- 3.8 Spaltenbreiten Column widths
- 3.9Zellenabstände mit cellspacing und Cell spacing with cellspacing and cellpadding
- 3.10 Ausrichtung Alignment
- 4 Formatvorlagen Style templates
Here we describe the editing of tables in the wiki code. For fast editing of tables, the WYSIWYG editor is recommended. Nevertheless, in some cases, the classic editing with wiki tags may be necessary.
Functionality[edit | edit source]
Tables are a very important tool for designing wiki pages. Besides from displaying content in a structured way, tables occasionally are used to design whole pages. The basic structure of the main page or the topic portal page for example are based on a table. However, tables should only be used very carefully to structure entire pages. The source code quickly becomes confusing for outsiders and for the reading devices of the visually impaired, they represent a barrier. Therefore, Wikipedia advises their users quite fundamentally from using tables as a graphical element for entire pages.
MediaWiki has its own syntax for displaying tables. This syntax is similar to common HTML but much simpler.
Nevertheless, the editing of tables remains complex. The use of editors produces HTML code that is a barrier to editing by others.
Einfache TabellenSimple tables[edit | edit source]
Rahmen Eingabe ErgebnisInput | Result | Kommentar dazu | ||||||
---|---|---|---|---|---|---|---|---|
File:HilfeTabelle1.jpg |
|
Hier sehen Sie die Syntax für eine einfache Tabelle. |
||||||
File:HilfeTabelle2.jpg |
|
Zum Platzsparen ist es möglich, mehrere Tabellenzellen in einer Quelltextzeile unterzubringen; in diesem Fall muss man die Zellen mit || trennen. Eine Tabelle mit drei Zeilen stellt sich also folgendermaßen dar. |
||||||
Wieder was gelernt:
|
||||||||
Um schnell eine einfache Tabelle zu erstellen, reicht es bei BlueSpice Wiki, in der Editieransicht auf den Button "Insert a Table" File:Button insert table.jpg zu klicken. |
Komplexere Tabellen[edit | edit source]
Einen Artikel darüber finden Sie hier: Tabellen für Fortgeschrittene
More complex tables[edit | edit source]
A Wikipedia article about this can be found here: [1]
Borders[edit | edit source]
Eingabe Ergebnis Die Umrandung wird in der ersten Zeile der Tabelle (direkt hinter dem {|) festgelegt. Die Rahmenstärke wird in Pixel angegebenInput | Result | Kommentar dazu | ||||
---|---|---|---|---|---|---|
File:HilfeTabelle3.jpg |
|
|||||
Comment | ||||||
{| border="1"
| Cell 1
| Cell 2
|-
| Cell 3
| Cell 4
|}
|
|
The border must be set in the first line of the table (directly after the |
||||
Hinweis: Die klassischen Tabellenränder wirken oft etwas altbacken. Deshalb gibt es für das Tabellen-Layout Style-Vorlagen. |
Note: The classic table borders may look a little old-fashioned. Therefore there you can use layout templates for your tables. |
Title rows[edit | edit source]
Eingabe Ergebnis VornameInput | Result | Kommentar dazu | ||||||
---|---|---|---|---|---|---|---|---|
File:HilfeTabelle4.jpg | Name | |||||||
Comment | ||||||||
{|
|-
! Last Name
! First Name
|-
| Karstadt
| Liesl
|-
| Valentin
| Karl
|}
|
|
Titelzeilen werden mit ! statt | eingeleitet. |
||||||
Hinweis: {{Tabelle1}} ist eine Style-Vorlage ;-) |
Title rows are specified with |
Combining cells: rowspanning and rolspanning[edit | edit source]
Eingabe Ergebnis File:HilfeTabelle5.jpgInput | Result | Kommentar dazu | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
Comment | ||||||||||||
{|
|-
! A
! B
! C
|-
| Cell 1
| colspan="2" align="center"|Cell 2
|-
| Cell 3
| Cell 4
| Cell 5
|}
|
|
This is a table containing a cell which spans tow columns. The command
is entered before the corresponding cell and separated by |
||||||||||
{|
|-
! A
! B
|-
| rowspan="2" align="center"|Cell 1
| Cell 2
|-
| Cell 4
|}
|
|
A Table containing a cell which spans two rows ( |
||||||||||
Hinweis: Leere Zellen werden in einer Tabelle nicht umrahmt. Um in manchen Browsern trotzdem einen Rahmen zu bekommen, kann man ein geschütztes Leerzeichen setzen. |
Note: Empty cells won't get a border automatically. In some browsers you can force a border with a nonbreaking space inside these cells. |
Nested tables[edit | edit source]
Eingabe ErgebnisInput | Result | Kommentar dazu | |||||
---|---|---|---|---|---|---|---|
File:HilfeTabelle7.jpg |
|
Eine Tabelle, in der eine weitere Tabelle steckt. Zum Verschachteln muss man an der Stelle, an der man eine weitere Tabelle innerhalb einer anderen Tabelle wünscht, eine neue öffnende Klammer setzen. Wichtig ist nur, dass am Anfang der Textzeile kein senkrechter Strich stehen darf. |
Comment | |||||||
---|---|---|---|---|---|---|---|
{| border="1"
|-
| Cell 1
|
{| border="1"
| Cell A
|-
| Cell B
|}
| Cell 3
|}
|
|
A table inside another table. To nest tables simply use an additional opening |
Caption[edit | edit source]
Eingabe ErgebnisInput | Result | Kommentar dazu | ||||
---|---|---|---|---|---|---|
File:HilfeTabelle8.jpg |
Das ist eine nette Tabelle
|
Es ist möglich, eine zentrierte Beschriftung über der Tabelle anzugeben. Um eine Beschriftung einzubauen reicht es, nach dem senkrechten Strich und vor dem Text ein Plus + zu setzen. |
Comment | ||||||
---|---|---|---|---|---|---|
{|
|+ This is a nice table
|-
| Table
| nice
|-
| Nice
| table
|}
|
|
It is possible to add a centered caption above the table with |
Lists[edit | edit source]
Eingabe ErgebnisInput | Result | Kommentar dazu | ||||
---|---|---|---|---|---|---|
File:HilfeTabelle9.jpg |
|
Will man Aufzählungszeichen in einer Tabelle verwenden, so muss der erste Listeneintrag in einer neuen Zeile beginnen. Andernfalls wird beim ersten Eintrag anstatt eines Aufzählungszeichens ein Sternchen angezeigt. |
Comment | ||||||
---|---|---|---|---|---|---|
{|
|-
| Right listing
| Wrong listing
|-
|
* first entry
* second entry
| * first entry
* second entry
|}
|
|
The list entries have to start in a new line. Otherwise an asterix will be rendered instead of a bullet symbol. |
Sortable tables[edit | edit source]
Spalte Eingabe ErgebnisSpalte 1 | Spalte 2 | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Input | Result | Kommentar dazu | |||||||||
File:HilfeTabelle10.jpg | |||||||||||
Comment | |||||||||||
{| class="sortable"
|-
! Col 1
! Col 2
! Col 3
|-
| 12346
| € 234,44
| SuSe
|-
| 98765
| € 77,55
| IBM
|}
|
|
Tabellen können auch nach ihren Werten pro Spalte sortiert werden. Dazu muss With |
|||||||||
Einschränkungen:
|
you can make a table sortable by the items of its columns.
|
||
Limitations:
|
Column widths[edit | edit source]
Eingabe Ergebnis File:HilfeTabelle11.jpgInput | Result | Kommentar dazu | |||||||
---|---|---|---|---|---|---|---|---|---|
Comment | |||||||||
{|
|-
! width="10%"|10 %
! width="20%"|20 %
! width="40%"|40 %
|- valign="top"
|A
|B
|C
|}
|
|
Spaltenbreiten können relativ und absolut angegeben werden, wobei absolute Angaben in Pixeln nur beim Einbinden von Grafiken eingesetzt werden sollten. Die Breitenangabe ist nur bei einer Zelle der Spalte notwendig und sinnvoll. |
File:HilfeTabelle12.jpg
Column widths can be specified relative and absolute, with absolute values in pixels only being used when embedding graphics. The width specification is necessary and useful only for one cell of the column. |
||||||
{|
|-
! width="50"|50
! width="100"|100
! width="200"|200
|-
|A
|B
|C
|}
|
|
Zellenabstände mit cellspacing und Cell spacing with cellspacing and cellpadding[edit | edit source]
Eingabe Ergebnis 350px 350pxInput | Result | Kommentar dazu | |||||||
---|---|---|---|---|---|---|---|---|---|
Comment | |||||||||
{| cellspacing="9" cellpadding="0" border="1"
|-
| Alpha
| Beta
| Gamma
|-
| Delta
| Epsilon
| Zeta
|}
|
|
Mit cellspacing kann der Abstand zwischen den Zellen festgelegt werden. Je größer der Cellspacing-Wert, desto breiter wird der Steg zwischen den Zellen. Mit cellpadding bestimmt man den Abstand des Zellinhaltes vom Zellrahmen. |
With cellspacing the distance between the cells can be determined. The larger the cellspacing value, the wider the bridge between the cells. With cellpadding one determines the distance of the cell contents from the cell frame. |
||||||
{| cellspacing="0" cellpadding="9" border="1"
|-
| Alpha
| Beta
| Gamma
|-
| Delta
| Epsilon
| Zeta
|}
|
|
AusrichtungAlignment[edit | edit source]
Oben Eingabe ErgebnisLinks | Zentriert | Rechts | ||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Input | Result | Kommentar dazu | ||||||||||||||||
File:HilfeTabelle15.jpg | ||||||||||||||||||
Comment | ||||||||||||||||||
{| cellspacing="0" border="1"
|-
! width="25%"|
! width="25%" align="left"|left
! width="25%" align="center"|centered
! width="25%" align="right"|right
|- valign="top"
! height="38"|top
| align="left"|xx
| align="center"|xxx
| align="right"|xx
|- valign="middle"
! height="38"|middle
| align="left"|x
| align="center"|x
| align="right"|x
|- valign="bottom"
! height="38"|bottom
| align="left"|x
| align="center"|x
| align="right"|x
|}
|
|
Genau wie in HTML kann man den Inhalt von Zellen in der Tabelle unterschiedlich ausrichten. Dabei kann man die Attribute einzelnen Zellen oder auch ganzen Zeilen zuweisen. Das valign gilt jeweils für die ganze Zeile, das align nur für die jeweilige Zelle. |
Just as in HTML, you can align the contents of cells in the table differently. You can assign the attributes to individual cells or entire lines. The valign applies to the entire line, the align only to the respective cell. |
Style templates[edit | edit source]
Eingabe Ergebnis Einige Benutzer haben Vorlagen erstellt, um die Formatierung zu vereinfachen. Anstatt sich an die Tabellenparameter erinnern zu müssen, kann eine Formatvorlage verwendet werden. Diese ist nach dem{|
einzufügen. Die Verwendung ermöglicht ein konsistentes Tabellenlayout, eine Erleichterung beim Fehlerhandling sowie einfache Anpassung des Layouts bei allen TabellenInput | Result | Kommentar dazu | ||
---|---|---|---|---|
File:HilfeTabelle16.jpg |
|
|||
Comment | ||||
{| {{table1}}
|-
| text in left column
| text in right column
|}
|
|
Some users have created templates to simplify formatting. Instead of having to remember the table parameters, a style template can be used. This must be inserted after the |
__TOC__ Here we describe the editing of tables in the wiki code. For fast editing of tables, the [[Reference:VisualEditor|WYSIWYG editor]] is recommended. Nevertheless, in some cases, the classic editing with wiki tags may be necessary. ==Functionality== Tables are a very important tool for designing wiki pages. Besides from displaying content in a structured way, tables occasionally are used to design whole pages. The basic structure of the main page or the topic portal page for example are based on a table. However, tables should only be used very carefully to structure entire pages. The source code quickly becomes confusing for outsiders and for the reading devices of the visually impaired, they represent a barrier. Therefore, Wikipedia advises their users quite fundamentally from using tables as a graphical element for entire pages. [https://www.mediawiki.org/wiki/Help:Tables MediaWiki] has its own syntax for displaying tables. This syntax is similar to common HTML but much simpler. Nevertheless, the editing of tables remains complex. The use of editors produces HTML code that is a barrier to editing by others. ==Einfache TabellenSimple tables== {| class="contenttable" |- ! width="50%"|Eingabe30%"|Input ! width="25%"|Ergebnis35%"|Result ! width="25%"|Kommentar dazu |- valign="top" ||[[File:HilfeTabelle1.jpg]] || {| |- ||Zelle 1 ||Zelle 2 |- ||Zelle 3 ||Zelle 4 |} || Hier sehen Sie die Syntax für eine einfache Tabelle. |- valign="top" ||[[File:HilfeTabelle2.jpg]] || {| width="150px" |- ||Zelle 1 ||Zelle 2 |- ||Zelle 3 ||Zelle 4 |- ||Zelle 5 ||Zelle 6 |} || Zum Platzsparen ist es möglich, mehrere Tabellenzellen in einer Quelltextzeile unterzubringen; in diesem Fall muss man die Zellen mit <nowiki>||</nowiki> trennen. Eine Tabelle mit drei Zeilen stellt sich also folgendermaßen dar35%"|Comment |- valign="top" || <pre class="rahmenfarbe4" style="border-style: solid; margin: 1em; padding: 5px;">{| | Cell 1 | Cell 2 |- | Cell 3 | Cell 4 |} </pre> || {| |- ||Cell 1 ||Cell 2 |- ||Cell 3 ||Cell 4 |} || This is the syntax for a simple table. |- valign="top" || <pre class="rahmenfarbe4" style="border-style: solid; margin: 1em; padding: 5px;">{| |- ||Cell 1 ||Cell 2 |- ||Cell 3 ||Cell 4 |- ||Cell 5 ||Cell 6 |} </pre> || {| width="150px" |- ||Cell 1 ||Cell 2 |- ||Cell 3 ||Cell 4 |- ||Cell 5 ||Cell 6 |} || To save space it is possible to write several cells in one line of code. In this case the cells have to be separated by <nowiki>||</nowiki>. A table with tree rows can be created like this. |- valign="top" | colspan="3"| '''Wieder was gelernt:'''<br /> Der Beginn einer neuen Zeile wird deutlich gemacht, indem man hinter dem senkrechten Strich einen waagerechten ''-'' setzt. Dies lässt sich beliebig oft wiederholen. |- | colspan="3"|Um schnell eine einfache Tabelle zu erstellen, reicht es bei {{SITENAME}}, in der Editieransicht auf den Notice:<br />'''To begin a new row put a hyphen ("-") after the leading pipe symbol ("|"). Repeat as often as needed. |- | colspan="3"| To create a simple table quickly in {{SITENAME}}, use the Button "Insert a Table" [[File:Button_insert_table.jpg]] zu klicken. |} ==Komplexere Tabellen== Einen Artikel darüber finden Sie hier: [https://de.wikipedia.org/wiki/Hilfe:Tabellen_f%C3%BCr_Fortgeschrittene Tabellen für Fortgeschrittene] ===RahmenBtn-WYSIWYG-Tabelle_einfügen.png]] in any editor view. |} ==More complex tables== A Wikipedia article about this can be found here: [https://en.wikipedia.org/wiki/Help:Table] ===Borders=== {| class="contenttable" width="100%" |- ! width="50%"|Eingabe40%"|Input ! width="25%"|Ergebnis30%"|Result ! width="25%"|Kommentar dazu |- valign="top" ||[[File:HilfeTabelle3.jpg]] | 30%"|Comment |- valign="top" || <pre class="rahmenfarbe4" style="border-style: solid; margin: 1em; padding: 5px;">{| border="1" | Cell 1 | Cell 2 |- | Cell 3 | Cell 4 |} </pre> | width="150px"| {| border="1" |- ||ZelleCell 1 ||ZelleCell 2 |- ||ZelleCell 3 ||ZelleCell 4 |} || Die Umrandung wird in der ersten Zeile der Tabelle (direkt hinter dem <nowiki>{|</nowiki>) festgelegt. Die Rahmenstärke wird in Pixel angegeben: '''border=The border must be set in the first line of the table (directly after the <code>{|</code>). The frame thickness is specified in pixels: '''border = "x"''' |- valign="top" | colspan="3"|'''Hinweis:''' Die klassischen Tabellenränder wirken oft etwas altbacken. Deshalb gibt es für das Tabellen-Layout [[Style-Vorlagen]]. |} ===TitelzeilenNote:''' The classic table borders may look a little old-fashioned. Therefore there you can use layout [[Templates|templates]] for your tables. |} ===Title rows=== {| class="contenttable" width="100%" |- ! width="50%"|Eingabe40%"|Input ! width="25%"|Ergebnis30%"|Result ! width="25%"|Kommentar dazu |- valign="top" ||[[File:HilfeTabelle4.jpg]] || {| |- !|Name !|Vorname |- ||Karstadt ||Liesl |- ||Valentin ||Karl |} || Titelzeilen werden mit '''<nowiki>!</nowiki>''' statt '''<nowiki>|</nowiki>''' eingeleitet. |- valign="top" | colspan="3"|'''Hinweis:''' <nowiki> {{Tabelle1}}</nowiki> ist eine [[Style-Vorlagen|Style-Vorlage]] ;-) |} ===Zellen verbinden: Rowspanning und Colspanning30%"|Comment |- valign="top" || <pre class="rahmenfarbe4" style="border-style: solid; margin: 1em; padding: 5px;">{| |- ! Last Name ! First Name |- | Karstadt | Liesl |- | Valentin | Karl |} </pre> || {| |- !|Last Name !|First Name |- ||Karstadt ||Liesl |- ||Valentin ||Karl |} || Title rows are specified with <code>!</code> instead of <code>|</code>. |} ===Combining cells: rowspanning and rolspanning=== {| class="contenttable" width="100%" |- ! width="50%"|Eingabe40%"|Input ! width="25%"|Ergebnis30%"|Result ! width="25%"|Kommentar dazu |- valign="top" ||[[File:HilfeTabelle5.jpg]] || {| {{Tabelle1}} |- !|A !|B !|C |- ||Zelle30%"|Comment |- valign="top" || <pre class="rahmenfarbe4" style="border-style: solid; margin: 1em; padding: 5px;">{| |- ! A ! B ! C |- | Cell 1 | colspan="2" align="center"|Cell 2 |- | Cell 3 | Cell 4 | Cell 5 |} </pre> || {| |- !|A !|B !|C |- ||Cell 1 | colspan="2" align="center"|ZelleCell 2 |- ||ZelleCell 3 ||ZelleCell 4 ||ZelleCell 5 |} || Eine Tabelle mit einer Zelle, die über zwei Spalten geht. Der Befehl (''colspan="2"'') wird vor die zu formatierende Zelle eingefügt und mit <nowiki>|</nowiki> abgetrennt. <br /> Der folgende Befehl ("align") zentriert nur den Inhalt der Zelle, damit wir den Effekt besser sehen. |- valign="top" ||[[File:HilfeTabelle6.jpg]] || This is a table containing a cell which spans tow columns. The command <code>colspan="2"</code> is entered before the corresponding cell and separated by <code>|</code>. The following command (<code>align="center"</code>) is there to center the cell content and is used only to better demonstrate the effect. |- valign="top" || <pre class="rahmenfarbe4" style="border-style: solid; margin: 1em; padding: 5px;">{| |- ! A ! B |- | rowspan="2" align="center"|Cell 1 | Cell 2 |- | Cell 4 |} </pre> || {| |- !|A !|B |- | rowspan="2" align="center"|ZelleCell 1 ||ZelleCell 2 |- ||ZelleCell 4 |} || Eine Tabelle mit einer Zelle, die über zwei Zeilen geht (''rowspan="2"''A Table containing a cell which spans two rows (<code>rowspan="2"</code>). |- valign="top" | colspan="3"|'''Hinweis:''' Leere Zellen werden in einer Tabelle nicht umrahmt. Um in manchen Browsern trotzdem einen Rahmen zu bekommen, kann man ein geschütztes Leerzeichen '''&nbsp;''' setzen. |} ===Verschachtelte TabellenNote:''' Empty cells won't get a border automatically. In some browsers you can force a border with a nonbreaking space '''&nbsp;''' inside these cells. |} ===Nested tables=== {| class="contenttable" width="100%" |- ! width="50%"|Eingabe40%"|Input ! width="25%"|Ergebnis30%"|Result ! width="25%"|Kommentar dazu |- valign="top" ||[[File:HilfeTabelle7.jpg]] | 30%"|Comment |- valign="top" || <pre class="rahmenfarbe4" style="border-style: solid; margin: 1em; padding: 5px;">{| border="1" |- | Cell 1 | {| border="1" | Cell A |- | Cell B |} | Cell 3 |}</pre> | width="150px"| {| border="1" |- ||ZelleCell 1 || {| border="1" | ZelleCell A |- | ZelleCell B |} ||ZelleCell 3 |} || Eine Tabelle, in der eine weitere Tabelle steckt. Zum Verschachteln muss man an der Stelle, an der man eine weitere Tabelle innerhalb einer anderen Tabelle wünscht, eine neue öffnende Klammer setzen. Wichtig ist nur, dass '''am Anfang der Textzeile kein senkrechter Strich''' stehen darf. |} ===BeschriftungA table inside another table. To nest tables simply use an additional opening <code>{|</code> where you want the inner table to be. But make sure there is '''no pipe symbol at the beginning of that line'''. |} ===Caption=== {| class="contenttable" width="100%" |- ! width="50%"|Eingabe40%"|Input ! width="25%"|Ergebnis30%"|Result ! width="25%"|Kommentar dazu |- valign="top" ||[[File:HilfeTabelle8.jpg]] | width="150px"|Das ist eine nette Tabelle {| |+ |- ||Tabelle ||nett |- ||Nette ||Tabelle |} || Es ist möglich, eine zentrierte Beschriftung über der Tabelle anzugeben. Um eine Beschriftung einzubauen reicht es, nach dem senkrechten Strich und vor dem Text ein Plus '''+''' zu setzen. |} ===Aufzählungszeichen30%"|Comment |- valign="top" || <pre class="rahmenfarbe4" style="border-style: solid; margin: 1em; padding: 5px;">{| |+ This is a nice table |- | Table | nice |- | Nice | table |} </pre> | width="150px"| {| |+This is a nice table |- ||Table ||nice |- ||Nice ||table |} || It is possible to add a centered caption above the table with <code>|+ my caption</code> at the beginning. |} ===Lists=== {| class="contenttable" width="100%" |- ! width="50%"|Eingabe40%"|Input ! width="25%"|Ergebnis30%"|Result ! width="25%"|Kommentar dazu |- valign="top" ||[[File:HilfeTabelle9.jpg]] | width="150px"| {| |- ||Aufzählung richtig ||Aufzählung falsch |- || * erster Eintrag * zweiter Eintrag ||* erster Eintrag * zweiter Eintrag |} || Will man Aufzählungszeichen in einer Tabelle verwenden, so muss der erste Listeneintrag in einer neuen Zeile beginnen. Andernfalls wird beim ersten Eintrag anstatt eines Aufzählungszeichens ein Sternchen angezeigt. |} ===Sortierbare Tabellen30%"|Comment |- valign="top" || <pre class="rahmenfarbe4" style="border-style: solid; margin: 1em; padding: 5px;">{| |- | Right listing | Wrong listing |- | * first entry * second entry | * first entry * second entry |}</pre> | width="150px"| {| |- ||Right listing ||Wrong listing |- || * first entry * second entry ||* first entry * second entry |} || The list entries have to start in a new line. Otherwise an asterix will be rendered instead of a bullet symbol. |} ===Sortable tables=== {| class="contenttable" width="100%" |- ! width="50%"|Eingabe40%"|Input ! width="25%"|Ergebnis30%"|Result ! width="25%"|Kommentar dazu |- valign="top" ||[[File:HilfeTabelle10.jpg]] || {| class="sortable" |- !|Spalte 1 !|Spalte 2 !|Spalte 3 |- | width="100px"|12346 | width="100px"|€ 234,44 | width="100px"30%"|Comment |- valign="top" || <pre class="rahmenfarbe4" style="border-style: solid; margin: 1em; padding: 5px;">{| class="sortable" |- ! Col 1 ! Col 2 ! Col 3 |- | 12346 | € 234,44 | SuSe |- | 98765 | € 77,55 | IBM |}</pre> || {| class="sortable" |- !|Col 1 !|Col 2 !|Col 3 |- ||12346 ||€ 234,44 ||SuSe |- ||98765 ||€ 77,55 ||IBM |} || Tabellen können auch nach ihren Werten pro Spalte sortiert werden. Dazu muss <tt>class="sortable"</tt> im Tabellenkopf angegeben werden.<br /> Klicken Sie einmal auf das kleine Kästchen im Spaltenkopf! |- | colspan="3"|'''Einschränkungen:''' * Damit Zahlen nach ihren numerischen Werten korrekt sortiert werden, dürfen sie bislang weder ein Tausendertrennzeichen noch Einheiten (außer den Währungszeichen € und $) oder andere Beschriftungen enthalten. Ein Hinweis auf die verwendeten Einheiten sollte daher in der Kopfzeile angegeben werden. * Bei komplexen Tabellen (d. h. solchen mit ungleichmäßigen Reihen und Spalten) ist eine Sortierung nicht möglich. |} ===SpaltenbreitenWith <code>class="sortable"</code> you can make a table sortable by the items of its columns.<br /> Just click on the little arrows next to the title cells! |- | colspan="3"|'''Limitations:''' * To properly sort numbers by their numeric values, they must not contain a thousand separator or units (except the currency symbols $ and €) or other labels. An indication of the units used should therefore be given in the header. * For complex tables (i.e., those with non-uniform rows and columns), sorting is not possible. |} ===Column widths=== {| class="contenttable" width="100%" |- ! width="50%"|Eingabe40%"|Input ! width="25%"|Ergebnis30%"|Result ! width="25%"|Kommentar dazu |- valign="top" ||[[File:HilfeTabelle11.jpg]] || 30%"|Comment |- valign="top" || <pre class="rahmenfarbe4" style="border-style: solid; margin: 1em; padding: 5px;">{| |- ! width="10%"|10 % ! width="20%"|20 % ! width="40%"|40 % |- valign="top" |A |B |C |}</pre> || {| |- ! width="10%"|10 % ! width="20%"|20 % ! width="40%"|40 % |- valign="top" ||A ||B ||C |} | rowspan="2"| Spaltenbreiten können relativ und absolut angegeben werden, wobei absolute Angaben in Pixeln nur beim Einbinden von Grafiken eingesetzt werden sollten. Die Breitenangabe ist nur bei einer Zelle der Spalte notwendig und sinnvoll. |- valign="top" ||[[File:HilfeTabelle12.jpg]] || | Column widths can be specified relative and absolute, with absolute values in pixels only being used when embedding graphics. The width specification is necessary and useful only for one cell of the column. |- valign="top" || <pre class="rahmenfarbe4" style="border-style: solid; margin: 1em; padding: 5px;">{| |- ! width="50"|50 ! width="100"|100 ! width="200"|200 |- valign="top" ||A ||B ||C |} |} ===Zellenabstände mit ''cellspacing'' und ''cellpadding'' |A |B |C |}</pre> || {| |- ! width="50"|50 ! width="100"|100 ! width="200"|200 |- ||A ||B ||C |} |} ===Cell spacing with cellspacing and cellpadding=== {| class="contenttable" width="100%" |- ! width="50%"|Eingabe40%"|Input ! width="25%"|Ergebnis30%"|Result ! width="25%"|Kommentar dazu |- valign="top" ||[[File:HilfeTabelle13.jpg|350px]] || 30%"|Comment |- valign="top" || <pre class="rahmenfarbe4" style="border-style: solid; margin: 1em; padding: 5px;">{| cellspacing="9" cellpadding="0" border="1" |- | Alpha | Beta | Gamma |- | Delta | Epsilon | Zeta |}</pre> || {| cellspacing="9" cellpadding="0" border="1" |- ||Alpha ||Beta ||Gamma |- ||Delta ||Epsilon ||Zeta |} | rowspan="2"| MitWith ''cellspacing'' kann der Abstand zwischen den Zellen festgelegt werden. Je größer der Cellspacing-Wert, desto breiter wird der Steg zwischen den Zellen. Mit ''cellpadding'' bestimmt man den Abstand des Zellinhaltes vom Zellrahmen. |- valign="top" ||[[File:HilfeTabelle14.jpg|350px]] || the distance between the cells can be determined. The larger the cellspacing value, the wider the bridge between the cells. With ''cellpadding'' one determines the distance of the cell contents from the cell frame. |- || <pre class="rahmenfarbe4" style="border-style: solid; margin: 1em; padding: 5px;">{| cellspacing="0" cellpadding="9" border="1" |- | Alpha | Beta | Gamma |- | Delta | Epsilon | Zeta |}</pre> || {| cellspacing="0" cellpadding="9" border="1" |- ||Alpha ||Beta ||Gamma |- ||Delta ||Epsilon ||Zeta |} |} ===Ausrichtung| |} ===Alignment=== {| class="contenttable" width="100%" |- ! width="50%"|Eingabe40%"|Input ! width="25%"|Ergebnis ! width="25%"|Kommentar dazu |- valign="top" ||[[File:HilfeTabelle15.jpg]] || 30%"|Result ! width="30%"|Comment |- valign="top" || <pre class="rahmenfarbe4" style="border-style: solid; margin: 1em; padding: 5px;">{| cellspacing="0" border="1" |- ! width="25%"| ! width="25%" align="left"|left ! width="25%" align="center"|centered ! width="25%" align="right"|right |- valign="top" ! height="38"|top | align="left"|xx | align="center"|xxx | align="right"|xx |- valign="middle" ! height="38"|middle | align="left"|x | align="center"|x | align="right"|x |- valign="bottom" ! height="38"|bottom | align="left"|x | align="center"|x | align="right"|x |}</pre> || {| cellspacing="0" border="1" |- !| ! align="left"|Links ! align="center"|Zentriert ! align="right"|Rechts width="25%"| ! width="25%" align="left"|left ! width="25%" align="center"|centered ! width="25%" align="right"|right |- valign="top" ! height="38"|Obentop | align="left"|xx | align="center"|xxx | align="right"|xx |- valign="middle" ! height="38"|Mittemiddle | align="left"|x | align="center"|x | align="right"|x |- valign="bottom" ! height="38"|Untenbottom | align="left"|x | align="center"|x | align="right"|x |} || Genau wieJust as in HTML kann man den Inhalt von Zellen in der Tabelle unterschiedlich ausrichten. Dabei kann man die Attribute einzelnen Zellen oder auch ganzen Zeilen zuweisen. Das '''valign''' gilt jeweils für die ganze Zeile, das '''align''' nur für die jeweilige Zelle. |} ==Formatvorlagen, you can align the contents of cells in the table differently. You can assign the attributes to individual cells or entire lines. The '''valign''' applies to the entire line, the '''align''' only to the respective cell. |} ==Style templates== {| class="contenttable" width="100%" |- ! width="50%"|Eingabe30%"|Input ! width="25%"|Ergebnis35%"|Result ! width="25%"|Kommentar dazu |- valign="top" ||[[File:HilfeTabelle16.jpg]] || {| |- ||Text linke Spalte ||Text rechte Spalte |} || Einige Benutzer haben [[Vorlagen]] erstellt, um die Formatierung zu vereinfachen. Anstatt sich an die Tabellenparameter erinnern zu müssen, kann eine Formatvorlage verwendet werden. Diese ist nach dem <code>{|</code> einzufügen. Die Verwendung ermöglicht ein konsistentes Tabellenlayout, eine Erleichterung beim Fehlerhandling sowie einfache Anpassung des Layouts bei allen Tabellen. |} [[en:{{ 35%"|Comment |- valign="top" || <pre class="rahmenfarbe4" style="border-style: solid; margin: 1em; padding: 5px;">{| {{table1}} |- | text in left column | text in right column |}</pre> || {| |- ||text in left column ||text in right column |} || Some users have created [[Templates | templates]] to simplify formatting. Instead of having to remember the table parameters, a style template can be used. This must be inserted after the <code>{|</code>. The usage allows a consistent table layout, easier error handling, and easy layout customization for all tables. |} [[en:{{ FULLPAGENAME }}|en:{{FULLPAGENAME}}]][[de:Tabellen]]
(11 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
__TOC__ | __TOC__ | ||
− | Here we describe the editing of tables in the wiki code. For fast editing of tables, the [[VisualEditor|WYSIWYG editor]] is recommended. Nevertheless, in some cases, the classic editing with wiki tags may be necessary. | + | Here we describe the editing of tables in the wiki code. For fast editing of tables, the [[Reference:VisualEditor|WYSIWYG editor]] is recommended. Nevertheless, in some cases, the classic editing with wiki tags may be necessary. |
==Functionality== | ==Functionality== | ||
Line 10: | Line 10: | ||
Nevertheless, the editing of tables remains complex. The use of editors produces HTML code that is a barrier to editing by others. | Nevertheless, the editing of tables remains complex. The use of editors produces HTML code that is a barrier to editing by others. | ||
− | == | + | ==Simple tables== |
{| class="contenttable" | {| class="contenttable" | ||
|- | |- | ||
− | ! width=" | + | ! width="30%"|Input |
− | ! width=" | + | ! width="35%"|Result |
− | ! width=" | + | ! width="35%"|Comment |
|- valign="top" | |- valign="top" | ||
− | || | + | || |
+ | <pre class="rahmenfarbe4" style="border-style: solid; margin: 1em; padding: 5px;">{| | ||
+ | | Cell 1 | ||
+ | | Cell 2 | ||
+ | |- | ||
+ | | Cell 3 | ||
+ | | Cell 4 | ||
+ | |} | ||
+ | </pre> | ||
|| | || | ||
{| | {| | ||
|- | |- | ||
− | || | + | ||Cell 1 |
− | || | + | ||Cell 2 |
|- | |- | ||
− | || | + | ||Cell 3 |
− | || | + | ||Cell 4 |
|} | |} | ||
|| | || | ||
− | + | This is the syntax for a simple table. | |
|- valign="top" | |- valign="top" | ||
− | || | + | || |
+ | <pre class="rahmenfarbe4" style="border-style: solid; margin: 1em; padding: 5px;">{| | ||
+ | |- | ||
+ | ||Cell 1 ||Cell 2 | ||
+ | |- | ||
+ | ||Cell 3 ||Cell 4 | ||
+ | |- | ||
+ | ||Cell 5 ||Cell 6 | ||
+ | |} | ||
+ | </pre> | ||
|| | || | ||
{| width="150px" | {| width="150px" | ||
|- | |- | ||
− | || | + | ||Cell 1 |
− | || | + | ||Cell 2 |
|- | |- | ||
− | || | + | ||Cell 3 |
− | || | + | ||Cell 4 |
|- | |- | ||
− | || | + | ||Cell 5 |
− | || | + | ||Cell 6 |
|} | |} | ||
|| | || | ||
− | + | To save space it is possible to write several cells in one line of code. In this case the cells have to be separated by <nowiki>||</nowiki>. A table with tree rows can be created like this. | |
|- valign="top" | |- valign="top" | ||
| colspan="3"| | | colspan="3"| | ||
− | ''' | + | '''Notice:<br />'''To begin a new row put a hyphen ("-") after the leading pipe symbol ("|"). Repeat as often as needed. |
|- | |- | ||
− | | colspan="3"| | + | | colspan="3"| |
+ | To create a simple table quickly in {{SITENAME}}, use the Button "Insert a Table" [[File:Btn-WYSIWYG-Tabelle_einfügen.png]] in any editor view. | ||
+ | |||
|} | |} | ||
− | == | + | ==More complex tables== |
− | + | A Wikipedia article about this can be found here: [https://en.wikipedia.org/wiki/Help:Table] | |
− | === | + | ===Borders=== |
{| class="contenttable" width="100%" | {| class="contenttable" width="100%" | ||
|- | |- | ||
− | ! width=" | + | ! width="40%"|Input |
− | ! width=" | + | ! width="30%"|Result |
− | ! width=" | + | ! width="30%"|Comment |
|- valign="top" | |- valign="top" | ||
− | || | + | || |
+ | <pre class="rahmenfarbe4" style="border-style: solid; margin: 1em; padding: 5px;">{| border="1" | ||
+ | | Cell 1 | ||
+ | | Cell 2 | ||
+ | |- | ||
+ | | Cell 3 | ||
+ | | Cell 4 | ||
+ | |} | ||
+ | </pre> | ||
| width="150px"| | | width="150px"| | ||
{| border="1" | {| border="1" | ||
|- | |- | ||
− | || | + | ||Cell 1 |
− | || | + | ||Cell 2 |
|- | |- | ||
− | || | + | ||Cell 3 |
− | || | + | ||Cell 4 |
|} | |} | ||
|| | || | ||
− | + | The border must be set in the first line of the table (directly after the <code>{|</code>). The frame thickness is specified in pixels: '''border = "x"''' | |
|- valign="top" | |- valign="top" | ||
− | | colspan="3"|''' | + | | colspan="3"|'''Note:''' The classic table borders may look a little old-fashioned. Therefore there you can use layout [[Templates|templates]] for your tables. |
+ | |||
|} | |} | ||
− | === | + | |
+ | ===Title rows=== | ||
{| class="contenttable" width="100%" | {| class="contenttable" width="100%" | ||
|- | |- | ||
− | ! width=" | + | ! width="40%"|Input |
− | ! width=" | + | ! width="30%"|Result |
− | ! width=" | + | ! width="30%"|Comment |
|- valign="top" | |- valign="top" | ||
− | || | + | || |
+ | <pre class="rahmenfarbe4" style="border-style: solid; margin: 1em; padding: 5px;">{| | ||
+ | |- | ||
+ | ! Last Name | ||
+ | ! First Name | ||
+ | |- | ||
+ | | Karstadt | ||
+ | | Liesl | ||
+ | |- | ||
+ | | Valentin | ||
+ | | Karl | ||
+ | |} | ||
+ | </pre> | ||
|| | || | ||
{| | {| | ||
|- | |- | ||
− | !|Name | + | !|Last Name |
− | !| | + | !|First Name |
|- | |- | ||
||Karstadt | ||Karstadt | ||
Line 103: | Line 144: | ||
|} | |} | ||
|| | || | ||
− | + | Title rows are specified with <code>!</code> instead of <code>|</code>. | |
− | |||
− | |||
|} | |} | ||
− | === | + | |
+ | ===Combining cells: rowspanning and rolspanning=== | ||
{| class="contenttable" width="100%" | {| class="contenttable" width="100%" | ||
|- | |- | ||
− | ! width=" | + | ! width="40%"|Input |
− | ! width=" | + | ! width="30%"|Result |
− | ! width=" | + | ! width="30%"|Comment |
|- valign="top" | |- valign="top" | ||
− | |||
|| | || | ||
− | {| { | + | <pre class="rahmenfarbe4" style="border-style: solid; margin: 1em; padding: 5px;">{| |
+ | |- | ||
+ | ! A | ||
+ | ! B | ||
+ | ! C | ||
+ | |- | ||
+ | | Cell 1 | ||
+ | | colspan="2" align="center"|Cell 2 | ||
+ | |- | ||
+ | | Cell 3 | ||
+ | | Cell 4 | ||
+ | | Cell 5 | ||
+ | |} | ||
+ | </pre> | ||
+ | || | ||
+ | {| | ||
|- | |- | ||
!|A | !|A | ||
Line 124: | Line 178: | ||
!|C | !|C | ||
|- | |- | ||
− | || | + | ||Cell 1 |
− | | colspan="2" align="center"| | + | | colspan="2" align="center"|Cell 2 |
|- | |- | ||
− | || | + | ||Cell 3 |
− | || | + | ||Cell 4 |
− | || | + | ||Cell 5 |
|} | |} | ||
|| | || | ||
− | + | This is a table containing a cell which spans tow columns. The command <code>colspan="2"</code> is entered before the corresponding cell and separated by <code>|</code>. The following command (<code>align="center"</code>) is there to center the cell content and is used only to better demonstrate the effect. | |
|- valign="top" | |- valign="top" | ||
− | || | + | || |
+ | <pre class="rahmenfarbe4" style="border-style: solid; margin: 1em; padding: 5px;">{| | ||
+ | |- | ||
+ | ! A | ||
+ | ! B | ||
+ | |- | ||
+ | | rowspan="2" align="center"|Cell 1 | ||
+ | | Cell 2 | ||
+ | |- | ||
+ | | Cell 4 | ||
+ | |} | ||
+ | </pre> | ||
|| | || | ||
{| | {| | ||
Line 142: | Line 207: | ||
!|B | !|B | ||
|- | |- | ||
− | | rowspan="2" align="center"| | + | | rowspan="2" align="center"|Cell 1 |
− | || | + | ||Cell 2 |
|- | |- | ||
− | || | + | ||Cell 4 |
|} | |} | ||
|| | || | ||
− | + | A Table containing a cell which spans two rows (<code>rowspan="2"</code>). | |
|- valign="top" | |- valign="top" | ||
− | | colspan="3"|''' | + | | colspan="3"|'''Note:''' Empty cells won't get a border automatically. In some browsers you can force a border with a nonbreaking space '''&nbsp;''' inside these cells. |
|} | |} | ||
− | === | + | |
+ | ===Nested tables=== | ||
{| class="contenttable" width="100%" | {| class="contenttable" width="100%" | ||
|- | |- | ||
− | ! width=" | + | ! width="40%"|Input |
− | ! width=" | + | ! width="30%"|Result |
− | ! width=" | + | ! width="30%"|Comment |
|- valign="top" | |- valign="top" | ||
− | || | + | || |
+ | <pre class="rahmenfarbe4" style="border-style: solid; margin: 1em; padding: 5px;">{| border="1" | ||
+ | |- | ||
+ | | Cell 1 | ||
+ | | | ||
+ | {| border="1" | ||
+ | | Cell A | ||
+ | |- | ||
+ | | Cell B | ||
+ | |} | ||
+ | | Cell 3 | ||
+ | |}</pre> | ||
| width="150px"| | | width="150px"| | ||
{| border="1" | {| border="1" | ||
|- | |- | ||
− | || | + | ||Cell 1 |
|| | || | ||
{| border="1" | {| border="1" | ||
− | | | + | | Cell A |
|- | |- | ||
− | | | + | | Cell B |
|} | |} | ||
− | || | + | ||Cell 3 |
|} | |} | ||
|| | || | ||
− | + | A table inside another table. To nest tables simply use an additional opening <code>{|</code> where you want the inner table to be. But make sure there is '''no pipe symbol at the beginning of that line'''. | |
|} | |} | ||
− | === | + | |
+ | ===Caption=== | ||
{| class="contenttable" width="100%" | {| class="contenttable" width="100%" | ||
|- | |- | ||
− | ! width=" | + | ! width="40%"|Input |
− | ! width=" | + | ! width="30%"|Result |
− | ! width=" | + | ! width="30%"|Comment |
|- valign="top" | |- valign="top" | ||
− | || | + | || |
− | | width="150px"| | + | <pre class="rahmenfarbe4" style="border-style: solid; margin: 1em; padding: 5px;">{| |
+ | |+ This is a nice table | ||
+ | |- | ||
+ | | Table | ||
+ | | nice | ||
+ | |- | ||
+ | | Nice | ||
+ | | table | ||
+ | |} | ||
+ | </pre> | ||
+ | | width="150px"| | ||
{| | {| | ||
− | |+ | + | |+This is a nice table |
|- | |- | ||
− | || | + | ||Table |
− | || | + | ||nice |
|- | |- | ||
− | || | + | ||Nice |
− | || | + | ||table |
|} | |} | ||
|| | || | ||
− | + | It is possible to add a centered caption above the table with <code>|+ my caption</code> at the beginning. | |
|} | |} | ||
− | === | + | |
+ | ===Lists=== | ||
{| class="contenttable" width="100%" | {| class="contenttable" width="100%" | ||
|- | |- | ||
− | ! width=" | + | ! width="40%"|Input |
− | ! width=" | + | ! width="30%"|Result |
− | ! width=" | + | ! width="30%"|Comment |
|- valign="top" | |- valign="top" | ||
− | || | + | || |
+ | <pre class="rahmenfarbe4" style="border-style: solid; margin: 1em; padding: 5px;">{| | ||
+ | |- | ||
+ | | Right listing | ||
+ | | Wrong listing | ||
+ | |- | ||
+ | | | ||
+ | * first entry | ||
+ | * second entry | ||
+ | |||
+ | | * first entry | ||
+ | * second entry | ||
+ | |}</pre> | ||
| width="150px"| | | width="150px"| | ||
{| | {| | ||
|- | |- | ||
− | || | + | ||Right listing |
− | || | + | ||Wrong listing |
|- | |- | ||
|| | || | ||
− | * | + | * first entry |
− | * | + | * second entry |
− | ||* | + | ||* first entry |
− | * | + | * second entry |
|} | |} | ||
|| | || | ||
− | + | The list entries have to start in a new line. Otherwise an asterix will be rendered instead of a bullet symbol. | |
|} | |} | ||
− | === | + | |
+ | ===Sortable tables=== | ||
{| class="contenttable" width="100%" | {| class="contenttable" width="100%" | ||
|- | |- | ||
− | ! width=" | + | ! width="40%"|Input |
− | ! width=" | + | ! width="30%"|Result |
− | ! width=" | + | ! width="30%"|Comment |
|- valign="top" | |- valign="top" | ||
− | || | + | || |
+ | <pre class="rahmenfarbe4" style="border-style: solid; margin: 1em; padding: 5px;">{| class="sortable" | ||
+ | |- | ||
+ | ! Col 1 | ||
+ | ! Col 2 | ||
+ | ! Col 3 | ||
+ | |- | ||
+ | | 12346 | ||
+ | | € 234,44 | ||
+ | | SuSe | ||
+ | |- | ||
+ | | 98765 | ||
+ | | € 77,55 | ||
+ | | IBM | ||
+ | |}</pre> | ||
|| | || | ||
{| class="sortable" | {| class="sortable" | ||
|- | |- | ||
− | !| | + | !|Col 1 |
− | !| | + | !|Col 2 |
− | !| | + | !|Col 3 |
|- | |- | ||
− | | | + | ||12346 |
− | | | + | ||€ 234,44 |
− | | | + | ||SuSe |
|- | |- | ||
||98765 | ||98765 | ||
Line 253: | Line 369: | ||
|} | |} | ||
|| | || | ||
− | + | With <code>class="sortable"</code> you can make a table sortable by the items of its columns.<br /> | |
− | + | Just click on the little arrows next to the title cells! | |
|- | |- | ||
− | | colspan="3"|''' | + | | colspan="3"|'''Limitations:''' |
− | * | + | * To properly sort numbers by their numeric values, they must not contain a thousand separator or units (except the currency symbols $ and €) or other labels. An indication of the units used should therefore be given in the header. |
− | * | + | * For complex tables (i.e., those with non-uniform rows and columns), sorting is not possible. |
|} | |} | ||
− | === | + | |
+ | ===Column widths=== | ||
{| class="contenttable" width="100%" | {| class="contenttable" width="100%" | ||
|- | |- | ||
− | ! width=" | + | ! width="40%"|Input |
− | ! width=" | + | ! width="30%"|Result |
− | ! width=" | + | ! width="30%"|Comment |
|- valign="top" | |- valign="top" | ||
− | || | + | || |
+ | <pre class="rahmenfarbe4" style="border-style: solid; margin: 1em; padding: 5px;">{| | ||
+ | |- | ||
+ | ! width="10%"|10 % | ||
+ | ! width="20%"|20 % | ||
+ | ! width="40%"|40 % | ||
+ | |- valign="top" | ||
+ | |A | ||
+ | |B | ||
+ | |C | ||
+ | |}</pre> | ||
|| | || | ||
{| | {| | ||
Line 282: | Line 409: | ||
||C | ||C | ||
|} | |} | ||
− | | | + | || |
− | + | Column widths can be specified relative and absolute, with absolute values in pixels only being used when embedding graphics. The width specification is necessary and useful only for one cell of the column. | |
|- valign="top" | |- valign="top" | ||
− | || | + | || |
+ | <pre class="rahmenfarbe4" style="border-style: solid; margin: 1em; padding: 5px;">{| | ||
+ | |- | ||
+ | ! width="50"|50 | ||
+ | ! width="100"|100 | ||
+ | ! width="200"|200 | ||
+ | |- | ||
+ | |A | ||
+ | |B | ||
+ | |C | ||
+ | |}</pre> | ||
|| | || | ||
{| | {| | ||
Line 293: | Line 430: | ||
! width="100"|100 | ! width="100"|100 | ||
! width="200"|200 | ! width="200"|200 | ||
− | |- | + | |- |
||A | ||A | ||
||B | ||B | ||
Line 300: | Line 437: | ||
|} | |} | ||
− | === | + | |
+ | ===Cell spacing with cellspacing and cellpadding=== | ||
{| class="contenttable" width="100%" | {| class="contenttable" width="100%" | ||
|- | |- | ||
− | ! width=" | + | ! width="40%"|Input |
− | ! width=" | + | ! width="30%"|Result |
− | ! width=" | + | ! width="30%"|Comment |
|- valign="top" | |- valign="top" | ||
− | || | + | || |
+ | <pre class="rahmenfarbe4" style="border-style: solid; margin: 1em; padding: 5px;">{| cellspacing="9" cellpadding="0" border="1" | ||
+ | |- | ||
+ | | Alpha | ||
+ | | Beta | ||
+ | | Gamma | ||
+ | |- | ||
+ | | Delta | ||
+ | | Epsilon | ||
+ | | Zeta | ||
+ | |}</pre> | ||
|| | || | ||
{| cellspacing="9" cellpadding="0" border="1" | {| cellspacing="9" cellpadding="0" border="1" | ||
Line 320: | Line 468: | ||
|} | |} | ||
| rowspan="2"| | | rowspan="2"| | ||
− | + | With ''cellspacing'' the distance between the cells can be determined. The larger the cellspacing value, the wider the bridge between the cells. With ''cellpadding'' one determines the distance of the cell contents from the cell frame. | |
− | |- | + | |- |
− | || | + | || |
+ | <pre class="rahmenfarbe4" style="border-style: solid; margin: 1em; padding: 5px;">{| cellspacing="0" cellpadding="9" border="1" | ||
+ | |- | ||
+ | | Alpha | ||
+ | | Beta | ||
+ | | Gamma | ||
+ | |- | ||
+ | | Delta | ||
+ | | Epsilon | ||
+ | | Zeta | ||
+ | |}</pre> | ||
|| | || | ||
{| cellspacing="0" cellpadding="9" border="1" | {| cellspacing="0" cellpadding="9" border="1" | ||
Line 335: | Line 493: | ||
||Zeta | ||Zeta | ||
|} | |} | ||
+ | || | ||
|} | |} | ||
− | === | + | |
+ | ===Alignment=== | ||
{| class="contenttable" width="100%" | {| class="contenttable" width="100%" | ||
|- | |- | ||
− | ! width=" | + | ! width="40%"|Input |
− | ! width="25%"| | + | ! width="30%"|Result |
− | ! width="25%"| | + | ! width="30%"|Comment |
+ | |- valign="top" | ||
+ | || | ||
+ | <pre class="rahmenfarbe4" style="border-style: solid; margin: 1em; padding: 5px;">{| cellspacing="0" border="1" | ||
+ | |- | ||
+ | ! width="25%"| | ||
+ | ! width="25%" align="left"|left | ||
+ | ! width="25%" align="center"|centered | ||
+ | ! width="25%" align="right"|right | ||
|- valign="top" | |- valign="top" | ||
− | || | + | ! height="38"|top |
+ | | align="left"|xx | ||
+ | | align="center"|xxx | ||
+ | | align="right"|xx | ||
+ | |- valign="middle" | ||
+ | ! height="38"|middle | ||
+ | | align="left"|x | ||
+ | | align="center"|x | ||
+ | | align="right"|x | ||
+ | |- valign="bottom" | ||
+ | ! height="38"|bottom | ||
+ | | align="left"|x | ||
+ | | align="center"|x | ||
+ | | align="right"|x | ||
+ | |}</pre> | ||
|| | || | ||
{| cellspacing="0" border="1" | {| cellspacing="0" border="1" | ||
|- | |- | ||
− | !| | + | ! width="25%"| |
− | ! align="left"| | + | ! width="25%" align="left"|left |
− | ! align="center"| | + | ! width="25%" align="center"|centered |
− | ! align="right"| | + | ! width="25%" align="right"|right |
|- valign="top" | |- valign="top" | ||
− | ! height="38"| | + | ! height="38"|top |
| align="left"|xx | | align="left"|xx | ||
| align="center"|xxx | | align="center"|xxx | ||
| align="right"|xx | | align="right"|xx | ||
|- valign="middle" | |- valign="middle" | ||
− | ! height="38"| | + | ! height="38"|middle |
| align="left"|x | | align="left"|x | ||
| align="center"|x | | align="center"|x | ||
| align="right"|x | | align="right"|x | ||
|- valign="bottom" | |- valign="bottom" | ||
− | ! height="38"| | + | ! height="38"|bottom |
| align="left"|x | | align="left"|x | ||
| align="center"|x | | align="center"|x | ||
Line 369: | Line 551: | ||
|} | |} | ||
|| | || | ||
− | + | Just as in HTML, you can align the contents of cells in the table differently. You can assign the attributes to individual cells or entire lines. The '''valign''' applies to the entire line, the '''align''' only to the respective cell. | |
− | |||
|} | |} | ||
− | == | + | ==Style templates== |
{| class="contenttable" width="100%" | {| class="contenttable" width="100%" | ||
|- | |- | ||
− | ! width=" | + | ! width="30%"|Input |
− | ! width=" | + | ! width="35%"|Result |
− | ! width=" | + | ! width="35%"|Comment |
|- valign="top" | |- valign="top" | ||
− | || | + | || |
+ | <pre class="rahmenfarbe4" style="border-style: solid; margin: 1em; padding: 5px;">{| {{table1}} | ||
+ | |- | ||
+ | | text in left column | ||
+ | | text in right column | ||
+ | |}</pre> | ||
|| | || | ||
{| | {| | ||
|- | |- | ||
− | || | + | ||text in left column |
− | || | + | ||text in right column |
|} | |} | ||
|| | || | ||
− | + | Some users have created [[Templates | templates]] to simplify formatting. Instead of having to remember the table parameters, a style template can be used. This must be inserted after the <code>{|</code>. The usage allows a consistent table layout, easier error handling, and easy layout customization for all tables. | |
+ | |} | ||
− | |||
− | [[en:{{ | + | [[en:{{ FULLPAGENAME }}|en:{{FULLPAGENAME}}]][[de:Tabellen]] |