<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="http://72.14.177.54/skins/common/feed.css?207"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>http://72.14.177.54/nomicapolis/?action=history&amp;feed=atom&amp;title=Help%3ATables_tutorial</id>
		<title>Help:Tables tutorial - Revision history</title>
		<link rel="self" type="application/atom+xml" href="http://72.14.177.54/nomicapolis/?action=history&amp;feed=atom&amp;title=Help%3ATables_tutorial"/>
		<link rel="alternate" type="text/html" href="http://72.14.177.54/nomicapolis/?title=Help:Tables_tutorial&amp;action=history"/>
		<updated>2026-04-05T23:26:03Z</updated>
		<subtitle>Revision history for this page on the wiki</subtitle>
		<generator>MediaWiki 1.15.1</generator>

	<entry>
		<id>http://72.14.177.54/nomicapolis/?title=Help:Tables_tutorial&amp;diff=4025&amp;oldid=prev</id>
		<title>Simulacrum at 05:47, 16 December 2006</title>
		<link rel="alternate" type="text/html" href="http://72.14.177.54/nomicapolis/?title=Help:Tables_tutorial&amp;diff=4025&amp;oldid=prev"/>
				<updated>2006-12-16T05:47:54Z</updated>
		
		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;In the Mediawiki engine a table is created as follows:&lt;br /&gt;
&lt;br /&gt;
'''&amp;lt;nowiki&amp;gt;{|&amp;lt;/nowiki&amp;gt;''' and '''&amp;lt;nowiki&amp;gt;|}&amp;lt;/nowiki&amp;gt;''' is the respective start and end of a table.&lt;br /&gt;
&lt;br /&gt;
'''&amp;lt;nowiki&amp;gt;|-&amp;lt;/nowiki&amp;gt;''' indicates a new row.&lt;br /&gt;
&lt;br /&gt;
'''&amp;lt;nowiki&amp;gt;|&amp;lt;/nowiki&amp;gt;''' indicates a new cell within the row.&lt;br /&gt;
&lt;br /&gt;
Example 1:&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|-&lt;br /&gt;
| A&lt;br /&gt;
| B&lt;br /&gt;
|-&lt;br /&gt;
| C&lt;br /&gt;
| D&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
is created by:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
{|&lt;br /&gt;
|-&lt;br /&gt;
| A&lt;br /&gt;
| B&lt;br /&gt;
|-&lt;br /&gt;
| C&lt;br /&gt;
| D&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Another way to add cells to a row is by placing each cell on the same line and add another '''&amp;lt;nowiki&amp;gt;|&amp;lt;/nowiki&amp;gt;''' between the cells.&lt;br /&gt;
&lt;br /&gt;
Example 2:&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|-&lt;br /&gt;
| 1 || 2&lt;br /&gt;
|-&lt;br /&gt;
| 3 || 4&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
is made by:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
{|&lt;br /&gt;
|-&lt;br /&gt;
| 1 || 2&lt;br /&gt;
|-&lt;br /&gt;
| 3 || 4&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
To include a caption in a table, use '''&amp;lt;nowiki&amp;gt;|+&amp;lt;/nowiki&amp;gt;''' on it's own line after '''&amp;lt;nowiki&amp;gt;{|&amp;lt;/nowiki&amp;gt;'''&lt;br /&gt;
&lt;br /&gt;
Example 3:&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|+ Table Caption&lt;br /&gt;
|-&lt;br /&gt;
| Column 1, Row 1 || Column 2, Row 1&lt;br /&gt;
|-&lt;br /&gt;
| Column 1, Row 2 || Column 2, Row 2&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
is made by:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
{|&lt;br /&gt;
|+ Table Caption&lt;br /&gt;
|-&lt;br /&gt;
| Column 1, Row 1 || Column 2, Row 1&lt;br /&gt;
|-&lt;br /&gt;
| Column 1, Row 2 || Column 2, Row 2&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
It may be better to show cell borders so user may tell when one cell ends and another begins. This can be done by applying a ''format modifier'' to the table. If format for the entire table is to modified, the code will be placed on the same line following the table caller '''&amp;lt;nowiki&amp;gt;{|&amp;lt;/nowiki&amp;gt;'''&lt;br /&gt;
The code to be used to display a border around each cell, as well as around the table itself is: '''border=&amp;quot;1&amp;quot;'''&lt;br /&gt;
&lt;br /&gt;
Example 4:&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|+ This is the table caption&lt;br /&gt;
|-&lt;br /&gt;
| cell 1 || cell 2&lt;br /&gt;
|-&lt;br /&gt;
| cell 3 || cell 4&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
is made using the following:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|+ This is the table caption&lt;br /&gt;
|-&lt;br /&gt;
| cell 1 || cell 2&lt;br /&gt;
|-&lt;br /&gt;
| cell 3 || cell 4&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''More soon to come.''' In the meantime, see http://meta.wikimedia.org/wiki/Help:Table for more information.&lt;/div&gt;</summary>
		<author><name>Simulacrum</name></author>	</entry>

	</feed>