Difference between revisions of "Help:Tutorial/4"

From FreewarWiki
Jump to: navigation, search
m (fix)
m (fix)
 
Line 34: Line 34:
 
  <nowiki> | C3</nowiki>
 
  <nowiki> | C3</nowiki>
 
  &nbsp;<nowiki>|}</nowiki>
 
  &nbsp;<nowiki>|}</nowiki>
  | align="center" valign="middle" | &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;ergibt&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
+
  | align="center" valign="middle" | &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;results&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
 
  |
 
  |
 
{|
 
{|

Latest revision as of 11:39, 5 April 2010

← Previous Page↑ StartNext Page →

Freewar.svg
FreewarWiki Tutorial
    ■ ■ ■ ■ ■ ■ ■   4/7  
Freewar.svg


In order to clearly present information or to obtain a more complex layout, useTables. They look at first glance, very complicated, but on closer inspection, not so wild.

A table begins with
{|
and ends with
 |}
each on a separate line.

In between runs a hyphen (|) at the beginning of a new line of source code Table Cell (Column) one within the current table row.

A hyphen followed by a minus sign (|-) begins a new Column.

Example[edit]

{|
 | A1
 | B1
 | C1
 |-
 | A2
 | B2
 | C2
 |-
 | A3
 | B3
 | C3
 |}
     results     
A1 B1 C1
A2 B2 C2
A3 B3 C3


Try out | More about | Continue Tutorial...