NovaRoma:Wiki Editing for Romans

From NovaRoma
(Difference between revisions)
Jump to: navigation, search
 
(Using footnotes)
 
(32 intermediate revisions by 5 users not shown)
Line 1: Line 1:
This is '''way more''' than Romans need to know. I'll try to simplify it over the next few days.
+
{{LanguageBar|NovaRoma:Wiki Editing for Romans}}
  
== Editing basics ==
+
This is one of the [[NovaRoma:Help_files | Nova Roma wiki help files]].
  
;Start editing
+
This is a quick guide for editing for Romans who are new to wikis.
:To start editing a page, click on the "'''edit'''" link at the top of the page. This will bring you to the '''edit page''': a page with a text box containing the ''wikitext'': the editable source code from which the server produces the webpage. ''If you just want to experiment, please do so on your user page''.
+
  
;Summarize your changes
+
*If you just want to '''edit an existing article''':
:You should write a short edit summary in the small field below the edit-box.  
+
**Please read section 1 "Editing: Basic steps" carefully.
 +
**Use the other sections as a reference for doing fancier things.
 +
*If you want to '''create a new article''', it is just the same, but please also read about [[NRWiki:Article Names|how to name articles]].
  
;Preview before saving
+
'''N.B.:''' This isn't everything that you can do, but it is probably enough for most articles. More topics are covered in '''[[NovaRoma:Advanced Wiki Editing for Romans|Advanced Wiki Editing for Romans]]'''.
:When you have finished, press '''Show preview''' to see how your changes will look -- '''before''' you make them permanent. Repeat the edit/preview process until you are satisfied, then click '''Save page''' and your changes will be immediately applied to the article.
+
  
== Minor edits ==
+
==Editing: Basic steps==
  
A user can mark an edit as "minor". Minor edits are generally spelling corrections, formatting, and minor rearrangement of text. Users may choose to ''hide'' minor edits when viewing [[Special:Recentchanges|Recent Changes]].
+
===The Fourfold Way===
  
== Wikitext markup -- making the page look the way you want==
+
{{NovaRoma:Fourfold way}}
  
<!-- This is the part everybody wants, therefore transcluded and not just linked.-->
+
===Start editing===
 +
To start editing a page, click on the "'''edit'''" link at the top of the page. This will bring you to the '''edit page''': a page with a text box containing the ''wikitext'': the editable source code from which the server produces the webpage. (''If you just want to experiment, please do so on your user page''.)
  
=== Basic text formatting ===
+
===Editing is simple===
 +
In most cases you will just type (or paste) words, sentences, paragraphs or whole articles. It is just like typing. You can read below about making headings, lists and other fancy things.
  
{| width="100%" border="1" cellpadding="2" cellspacing="0"
+
===Summarize your changes===
|-
+
You should write a short edit summary in the small field below the edit-box.  
!What it looks like
+
!What you type
+
|-
+
|
+
You can ''emphasize text'' by putting two
+
apostrophes on each side. Three apostrophes
+
will emphasize it '''strongly'''. Five
+
apostrophes is '''''even stronger'''''.
+
|<pre><nowiki>
+
You can ''emphasize text'' by putting two
+
apostrophes on each side. Three apostrophes
+
will emphasize it '''strongly'''. Five
+
apostrophes is '''''even stronger'''''.
+
</nowiki></pre>
+
|-
+
|
+
A single newline
+
has no effect
+
on the layout.
+
  
But an empty line
+
=== Minor edits ===
starts a new paragraph.
+
There is a check box that marks an edit as "minor". Minor edits are generally spelling corrections, formatting, and minor rearrangement of text. Other users may choose to ''hide'' minor edits when viewing [[Special:Recentchanges|Recent Changes]].
|<pre><nowiki>
+
A single newline
+
has no effect
+
on the layout.
+
  
But an empty line
+
===Preview before saving===
starts a new paragraph.
+
When you have finished, press '''Show preview''' to see how your changes will look -- '''before''' you make them permanent. Repeat the edit/preview process until you are satisfied, then click '''Save page''' and your changes will be immediately applied to the article.
</nowiki></pre>
+
|-
+
|
+
You can break lines<br>
+
without starting a new paragraph.<br>
+
Please use this sparingly.
+
|<pre><nowiki>
+
You can break lines<br>
+
without starting a new paragraph.<br>
+
Please use this sparingly.
+
</nowiki></pre>
+
|-
+
|
+
You should "sign" your comments on talk pages:
+
: Three tildes gives your user name: [[User:Karl Wick|Karl Wick]]
+
: Four tildes give your user name plus date/time: [[User:Karl Wick|Karl Wick]] 07:46, 27 November 2005 (UTC)
+
: Five tildes gives the date/time alone: 07:46, 27 November 2005 (UTC)
+
|<pre><nowiki>
+
You should "sign" your comments on talk pages:
+
: Three tildes gives your user name: ~~~
+
: Four tildes give your user name plus date/time: ~~~~
+
: Five tildes gives the date/time alone: ~~~~~
+
</nowiki></pre>
+
|}
+
  
=== Organizing your writing ===
+
== Links ==
  
{| border="1" cellpadding="2" cellspacing="0"
+
You will often want to make clickable ''links'' to other pages.
|-
+
!What it looks like
+
!What you type
+
|-
+
|
+
<span style="font-size: 150%"><b>Section headings</b></span>
+
  
''Headings'' organize your writing into sections.
+
===Link to another article in the wiki===
The Wiki software can automatically generate
+
a [[Help:table of contents|table of contents]] from them.
+
  
 +
To '''link to another article in this wiki''', just type the article title inside''' <nowiki>[[double brackets]]</nowiki>'''.
  
<span style="font-size: 125%"><b>Subsection</b></span>
+
To link to the article "Choosing a Roman name", you would enter
 +
<nowiki>[[Choosing a Roman name]]</nowiki>  
  
Using more equals signs creates a subsection.
+
and it would appear in your article like this: [[Choosing a Roman name]].  
  
 +
To make it fit smoothly in a sentence, you can make the first letter (only) lower case. If you type:
 +
We have an article about <nowiki>[[choosing a Roman name]]</nowiki>
  
<b>A smaller subsection</b>
+
It will look like this: "We have an article about [[choosing a Roman name]]".
  
Don't skip levels, like from two to four equals signs.
+
If you want to link to an article but you '''don't want to use the article's title''', you can use the '''pipe character |'''. Start your link the same way, with the article title in double brackets, but then add the pipe character and then the words that you want to appear as your link.  
Start with two equals signs; don't use single equals signs.
+
We have an article about <nowiki>[[choosing a Roman name | picking a name]]</nowiki>.
|<pre><nowiki>
+
== Section headings ==
+
  
''Headings'' organize your writing into sections.
+
Appears as: "We have an article about [[choosing a Roman name | picking a name]]".
The Wiki software can automatically generate
+
a table of contents from them.
+
  
=== Subsection ===
+
Many articles here have titles like "Coin (Nova Roma)". If you '''don't want the "(Nova Roma)" part to appear''', just make a normal link, add a pipe character and then add '''nothing'''. If you type
 +
<nowiki>[[Coin (Nova Roma)|]]</nowiki>
  
Using more equals signs creates a subsection.
+
you will get this: "[[Coin (Nova Roma)|Coin]]".
  
==== A smaller subsection ====
+
If you add any letters right against the end of your link, they will become part of the link. If you type
 +
  <nowiki>We have also minted several [[coin (Nova Roma)|]]s.</nowiki>
  
Don't skip levels, like from two to four equals signs.
+
you will get this: "We have also minted several [[coin (Nova Roma)|coin]]s."
Start with two equals signs; don't use single equals signs.
+
</nowiki></pre>
+
|-
+
|
+
* ''Unordered [[Help:List|list]]s'' are easy to do:
+
** Start every line with a star.
+
*** More stars indicate a deeper level.
+
* A newline
+
* in a list 
+
marks the end of the list.
+
*Of course you can start again.
+
|<pre><nowiki>
+
* ''Unordered lists'' are easy to do:
+
** Start every line with a star.
+
*** More stars indicate a deeper level.
+
* A newline
+
* in a list 
+
marks the end of the list.
+
* Of course you can start again.
+
</nowiki></pre>
+
|-
+
|
+
# ''Numbered lists'' are also good:
+
## Very organized
+
## Easy to follow
+
A newline marks the end of the list.
+
# New numbering starts with 1.
+
  
|<pre><nowiki>
+
===Link to things outside the wiki===
# ''Numbered lists'' are also good:
+
## Very organized
+
## Easy to follow
+
A newline marks the end of the list.
+
# New numbering starts with 1.
+
</nowiki></pre>
+
|-
+
|
+
Another kind of list is a ''definition list'':
+
; word : definition of the word
+
; here is a longer phrase that needs a definition
+
: phrase defined
+
; a word : with a definition
+
: that requires
+
: multiple paragraphs
+
|<pre><nowiki>
+
Another kind of list is a ''definition list'':
+
; word : definition of the word
+
; here is a longer phrase that needs a definition
+
: phrase defined
+
; a word : with a definition
+
: that requires
+
: multiple paragraphs</nowiki></pre>
+
|-
+
|
+
* You can even do mixed lists
+
*# and nest them
+
*# inside each other
+
*#* or break lines<br>in lists.
+
*#; definition lists
+
*#: can be
+
*#;; nested too
+
|<pre><nowiki>* You can even do mixed lists
+
*# and nest them
+
*# inside each other
+
*#* or break lines<br>in lists.
+
*#; definition lists
+
*#: can be
+
*#;; nested too</nowiki></pre>
+
|-
+
|
+
: A colon indents a line or paragraph.
+
A newline after that starts a new paragraph.
+
:: This is often used for discussion on [[Help:Talk page|Talk page]]s.
+
|<pre><nowiki>
+
: A colon indents a line or paragraph.
+
A newline after that starts a new paragraph.
+
:: This is often used for discussion on talk pages.
+
</nowiki></pre>
+
|-
+
|
+
You can make [[w:horizontal dividing line|horizontal dividing line]]s
+
to separate text.
+
----
+
But you should usually use sections instead,
+
so that they go in the table of contents.
+
|<pre><nowiki>
+
You can make horizontal dividing lines
+
to separate text.
+
----
+
But you should usually use sections instead,
+
so that they go in the table of contents.
+
</nowiki></pre>
+
|}
+
  
=== Links ===
+
To link to something outside the wiki, just enter the URL. If you type
 +
<nowiki>http://groups.yahoo.com/group/newroman/</nowiki>
  
You will often want to make clickable ''links'' to other pages.
+
you get a link that looks like this: http://groups.yahoo.com/group/newroman/
  
{| border="1" cellpadding="2" cellspacing="0"
+
If you want to give that link a name you must put it in '''''single''''' '''square brackets''' and add the name after the address, just leaving a space. So if you type this:
|-
+
<nowiki>[http://groups.yahoo.com/group/newroman/ a group for new citizens]</nowiki>
!What it looks like
+
!What you type
+
|-
+
|
+
Here's a link to a page named [[Official position]].
+
You can even say [[official position]]s
+
and the link will show up correctly.
+
|<pre><nowiki>
+
Here's a link to a page named [[Official position]].
+
You can even say [[official position]]s
+
and the link will show up correctly.
+
</nowiki></pre>
+
|-
+
|
+
You can put formatting around a link.
+
Example: ''[[Wikipedia]]''.
+
|<pre><nowiki>
+
You can put formatting around a link.
+
Example: ''[[Wikipedia]]''.
+
</nowiki></pre>
+
|-
+
|
+
The ''first letter'' of articles is automatically capitalized,
+
so [[wikipedia]] goes to the same place as [[Wikipedia]].
+
Capitalization matters after the first letter.
+
|<pre><nowiki>
+
The ''first letter'' of articles is automatically capitalized,
+
so [[wikipedia]] goes to the same place as [[Wikipedia]].
+
Capitalization matters after the first letter.
+
</nowiki></pre>
+
|-
+
|
+
[[The weather in London]] is a page that doesn't exist
+
yet. You could create it by clicking on the link.
+
|<pre><nowiki>
+
[[The weather in London]] is a page that doesn't exist
+
yet. You could create it by clicking on the link.
+
</nowiki></pre>
+
|-
+
|
+
You can link to a page section by its title:
+
  
*[[List of cities by country#Morocco]].
+
it will look like this: "[http://groups.yahoo.com/group/newroman/ a group for new citizens]".
  
If multiple sections have the same title, add
+
If you use the '''single square brackets''' and '''no link name''', you will get a number. If you type 
a number. [[#Example section 3]] goes to the
+
<nowiki>[http://groups.yahoo.com/group/newroman/]</nowiki>
third section named "Example section".
+
|<pre><nowiki>
+
You can link to a page section by its title:
+
  
*[[List of cities by country#Morocco]].
+
you will see this "[http://groups.yahoo.com/group/newroman/]".
  
If multiple sections have the same title, add
+
===Category links===
a number. [[#Example section 3]] goes to the
+
third section named "Example section".
+
</nowiki></pre>
+
|-
+
|
+
You can make a link point to a different place
+
with a [[Help:Piped link|piped link]]. Put the link
+
target first, then the pipe character "|", then
+
the link text.
+
  
*[[Help:Link|About Links]]
+
You can add your article to a '''category''' by putting in a ''category link''.
*[[List of cities by country#Morocco|
+
Cities in Morocco]]
+
|<pre><nowiki>
+
You can make a link point to a different place
+
with a [[Help:Piped link|piped link]]. Put the link
+
target first, then the pipe character "|", then
+
the link text.
+
  
*[[Help:Link|About Links]]
+
A '''category''' is a special kind of page. It will automatically show an alphabetical list of all the articles that have a link to that category. Every article in that category has a link like this inside it:
*[[List of cities by country#Morocco|
+
Cities in Morocco]]
+
</nowiki></pre>
+
|-
+
|
+
You can make an external link just by typing a URL:
+
http://www.nupedia.com
+
  
You can give it a title:
+
<nowiki>[[Category:Nova Roma]]</nowiki>
[http://www.nupedia.com Nupedia]
+
  
Or leave the title blank:
+
*Put a category link anywhere in the article, usually at the bottom or at the top.
[http://www.nupedia.com]
+
*The link to the category ''automatically'' appears at the bottom of the article.
|
+
*An article can be in any number of categories.
<pre><nowiki>
+
You can make an external link just by typing a URL:
+
http://www.nupedia.com
+
  
You can give it a title:
+
To make a '''link to a category''' ''without adding the article to the category'', just add a leading colon, like this:
[http://www.nupedia.com Nupedia]
+
  
Or leave the title blank:
+
<nowiki>[[:Category:Nova Roma]]</nowiki>
[http://www.nupedia.com]
+
</nowiki></pre>
+
|-
+
|
+
You can [[Help:Redirect|redirect]] the user to another page.
+
|<pre><nowiki>
+
#REDIRECT [[Official position]]
+
</nowiki></pre>
+
|-
+
|
+
[[Help:Category|Category links]] don't show up, but add the page
+
to a category. [[Category:English documentation]]
+
  
Add an extra colon to actually link to the category:
+
It will look like this: "[[:Category:Nova Roma]]"
[[:Category:English documentation]]
+
|<pre><nowiki>
+
Category links don't show up, but add the page
+
to a category. [[Category:English documentation]]
+
  
Add an extra colon to actually link to the category:
+
Of course, it now acts like a normal ''inside the wiki link'', so all the other rules apply:
[[:Category:English documentation]]
+
 
</nowiki></pre>
+
<nowiki>[[:Category:Senators (Nova Roma)|]]</nowiki>
|-
+
 
|
+
Appears as: "[[:Category:Senators (Nova Roma)|Senators]]"
The Wiki reformats linked dates to match the reader's date
+
 
preferences. These three dates will show up the same if you
+
===Date links===
choose a format in your [[Special:Preferences|Preferences]]:
+
 
* [[July 20]], [[1969]]
+
'''N.B.''' We have a special system for recent years. Put double ''braces'' around recent years in the common system. The wiki will convert these to consular dates with the common dating as hover text.
* [[20 July]] [[1969]]
+
 
* [[1969]]-[[07-20]]
+
If you type  <nowiki>{{2006}}</nowiki>
|<pre><nowiki>
+
 
The Wiki reformats linked dates to match the reader's date
+
it will become "{{2006}}".
preferences. These three dates will show up the same if you
+
 
choose a format in your [[Special:Preferences|]]:
+
 
 +
Otherwise, always put '''<nowiki>double brackets</nowiki>''' around '''dates'''.
 +
 
 +
The Wiki reformats linked dates to match the reader's date preferences. These three dates will show up the same if you choose a format in your [[Special:Preferences|Preferences]]:
 
* [[July 20]], [[1969]]
 
* [[July 20]], [[1969]]
 
* [[20 July]] [[1969]]
 
* [[20 July]] [[1969]]
 
* [[1969]]-[[07-20]]
 
* [[1969]]-[[07-20]]
</nowiki></pre>
 
|}
 
  
===Just show what I typed===
+
Always put '''<nowiki>double brackets</nowiki>''' around '''years AUC''' (in Roman numerals).
  
A few different kinds of formatting will tell the Wiki to display things as you typed them.
+
===Redirection links===
  
{| border="1" cellpadding="2" cellspacing="0"
+
You can automatically forward readers from one article to another. For example, a reader who searches for "[[eagle]]" will be forwarded automatically to the article on [[Aquila heliaca]].
|-
+
! style="width:8em" |
+
!What it looks like
+
!What you type
+
|-
+
|'''&lt;nowiki&gt; tags'''
+
|
+
<nowiki>
+
The nowiki tag ignores [[Wiki]] ''markup''.
+
It reformats text by removing newlines    and multiple spaces.
+
It still interprets special characters: &rarr;
+
</nowiki>
+
|<pre><nowiki>
+
&lt;nowiki&gt;
+
The nowiki tag ignores [[Wiki]] ''markup''.
+
It reformats text by removing newlines    and multiple spaces.
+
It still interprets special characters: &amp;rarr;
+
&lt;/nowiki&gt;
+
</nowiki></pre>
+
|-
+
|'''&lt;pre&gt; tags'''
+
|
+
<pre>
+
The pre tag ignores [[Wiki]] ''markup''.
+
It also doesn't    reformat text.
+
It still interprets special characters: &rarr;
+
</pre>
+
|<pre><nowiki>
+
<pre>
+
The pre tag ignores [[Wiki]] ''markup''.
+
It also doesn't    reformat text.
+
It still interprets special characters: &amp;rarr;
+
</pre>
+
</nowiki></pre>
+
|-
+
|'''Leading spaces'''
+
|
+
Leading spaces are another way to preserve formatting.
+
  
Putting a space at the beginning of each line
+
The article "Eagle" contains just this:
stops the text  from being reformatted. It still
+
interprets [[Wiki]] ''markup'' and special
+
characters: &rarr;
+
|<pre><nowiki>
+
Leading spaces are another way to preserve formatting.
+
  
  Putting a space at the beginning of each line
+
  <nowiki>#REDIRECT [[Aquila heliaca]]</nowiki>
stops the text  from being reformatted. It still
+
interprets [[Wiki]] ''markup'' and special
+
characters: &amp;rarr;
+
</nowiki></pre>
+
|-
+
|'''What to do inside of [[Help:list|list]]s'''
+
|
+
#<nowiki>A newline
+
surrounded by nowiki tags
+
in a list
+
does not mark the end of the list.
+
</nowiki><pre><nowiki>
+
You can combine pre tags with nowiki tags so
+
preformatted examples can go inside of lists.
+
</nowiki></pre>
+
#The list continues.
+
|
+
<pre><nowiki>
+
#&lt;nowiki&gt;A newline
+
surrounded by nowiki tags
+
in a list
+
does not mark the end of the list.
+
&lt;/nowiki&gt;<pre>&lt;nowiki&gt;
+
You can combine pre tags with nowiki tags so
+
preformatted examples can go inside of lists.
+
&lt;/nowiki&gt;</pre>
+
#The list continues.
+
</nowiki></pre>
+
|}
+
  
===Images, tables, video, and sounds===
+
The redirection happens automatically. If you add a redirect to an existing article, everything else in that article will be deleted, so use redirects carefully.
This is a very quick introduction. For more information, see:
+
* [[Help:Images and other uploaded files]] for how to upload files
+
* [[Help:Extended image syntax]] for how to arrange images on the page
+
* [[Help:Table]] for how to create a table
+
  
{| border="1" cellpadding="2" cellspacing="0"
 
|-
 
!What it looks like
 
!What you type
 
|-
 
|
 
A picture, including alternate text:
 
  
[[Image:Wiki.png|The logo for this Wiki]]
+
==Dividing the text==
  
You can put the image in a frame with a caption:
+
===Making paragraphs===
[[Image:Wiki.png|frame|The logo for this Wiki]]
+
|<pre><nowiki>
+
A picture, including alternate text:
+
  
[[Image:Wiki.png|The logo for this Wiki]]
+
Leave an empty line to start a new paragraph. A single return is ignored, but two returns (a blank line) starts a new paragraph. Do not use <nowiki><p></nowiki>.
  
You can put the image in a frame with a caption:
+
===Making sections===
[[Image:Wiki.png|frame|The logo for this Wiki]]
+
</nowiki></pre>
+
|-
+
|
+
A link to Wikipedia's page for the image:
+
[[:Image:Wiki.png]]
+
  
Or a link directly to the image itself:
+
Divide an article into sections by putting a heading on a new line and surrounding it with double equals signs:  
[[Media:Wiki.png]]
+
<nowiki>==Section heading==</nowiki>
|<pre><nowiki>
+
A link to Wikipedia's page for the image:
+
[[:Image:Wiki.png]]
+
  
Or a link directly to the image itself:
+
Make subsection headings the same way, but use '''three''' equals signs:  
[[Media:Wiki.png]]
+
<nowiki>===Sub-section heading===</nowiki>
</nowiki></pre>
+
|-
+
|
+
Use '''media:''' links to link directly to sounds
+
or videos: [[media:Sg_mrob.ogg|A sound file]]
+
|<pre><nowiki>
+
Use '''media:''' links to link directly to sounds
+
or videos: [[media:Sg_mrob.ogg|A sound file]]
+
</nowiki></pre>
+
|-
+
|
+
{| border="1" cellspacing="0" cellpadding="5" align="center"
+
! This
+
! is
+
|-  
+
| a
+
| table
+
|}
+
|<pre><nowiki>
+
{| border="1" cellspacing="0" cellpadding="5" align="center"
+
! This
+
! is
+
|-
+
| a
+
| table
+
|}
+
</nowiki></pre>
+
|}
+
  
=== Mathematical formulas ===
+
*Start with two equals signs; don't use single equals signs.
You can format mathematical formulas with [[w:TeX|TeX]] markup. See [[Help:Formula]].
+
*make smaller divisions with more equals signs.
{| border="1" cellpadding="2" cellspacing="0"
+
*Don't skip levels: two equals signs should be followed by three equals signs, not four equals signs.
|-
+
!What it looks like
+
!What you type
+
|-
+
|
+
<math>\sum_{n=0}^\infty \frac{x^n}{n!}</math>
+
|<pre><nowiki>
+
<math>\sum_{n=0}^\infty \frac{x^n}{n!}</math>
+
</nowiki></pre>
+
|}
+
  
===Special characters===
+
A table of contents will be generated automatically for any article with four or more headings.
  
''Now that [[Mediawiki]] supports [[UTF-8]], many of these can be entered directly into articles, without the HTML markup.  On many wikis, a tool appears under the edit box to make this easier.  See [[Help:Special characters]].''
+
Do not use <nowiki><h1>, <h2> etc.</nowiki>.
 +
 
 +
==''Italics'' and '''bold'''==
 +
 
 +
You can put words into ''italics'' or '''bold''' by surrounding them with apostrophes (or single quotes).
 +
 
 +
''Italics'' are used for words in another language (e.g. Latin). They are '''not''' used for emphasis.
 +
 
 +
'''Bold''' is used for emphasis.
 +
 
 +
The emphasise a word in a foreign language, you can use '''''bold italics'''''.
 +
 
 +
#Put '''two''' apostrophes around the bit you want to make italic: <nowiki>''Non-English word''</nowiki> --> ''Non-English word''.
 +
#Put '''three''' apostrophes around the bit you want to make bold: <nowiki>'''Emphasised word'''</nowiki> --> '''Emphasised word'''.
 +
#Put '''five''' apostrophes around the bit you want to make bold and italic: <nowiki>'''''Emphasised non-English word'''''</nowiki> --> '''''Emphasised non-English word''''' (usually bold italic).
 +
 
 +
It is considered ''bad form'' to use ALL CAPS for emphasis.
 +
 
 +
==Lists==
 +
 
 +
===Unordered lists===
 +
 
 +
*Start every list item on a new line.
 +
*Put an asterix in front of each item.
 +
*This list looks like this:
 +
 
 +
*Start every list item on a new line.
 +
*Put an asterix in front of each item.
 +
*This list looks like this:
 +
 
 +
===Ordered lists===
 +
 
 +
#Start every list item on a new line.
 +
#Put a number sign in front of each item.
 +
#This list looks like this:
 +
 
 +
#Start every list item on a new line.
 +
#Put a number sign in front of each item.
 +
#This list looks like this:
 +
 
 +
===Definition lists===
 +
 
 +
*Put each item to define on a new line
 +
*Put a semicolon before each item
 +
*Put a colon between each item and its definition
 +
 
 +
 
 +
;Item to define : A nice definition that can be as long or as short as you want.
 +
 
 +
;Item to define : A nice definition that can be as long or as short as you want.
 +
 
 +
 
 +
==Using footnotes==
 +
 
 +
It's of utmost importance that for all claims in a scholarly article of our website we use references in footnotes. It does not only assures our readers they are reading a high quality, researched and verified article, but it greatly hepls them in further research, to find the ancient sources, the latest scholarship, authors etc., so that they can conduct researches themselves, or deepen their understanding and Romannes.
 +
 
 +
To create a footnote, determine the point in the page content where the footnote is desired and enter the markup with the citation or note inside the '''<nowiki><ref></nowiki>'''TEXT OF THE FOOTNOTE'''<nowiki></ref></nowiki>''' tags.
 +
A numeral indicating the footnote and the footnote iself will automatically appear on the page at the point where you put this tag: '''<nowiki><references/></nowiki>''' For example:
 +
 
 +
<nowiki>This is the text on the page that needs a footnote in the "references" section below.<ref>''LibreOffice For Starters'', First Edition, Flexible Minds, Manchester, 2002, p. 18</ref>
 +
<references/></nowiki>
 +
 
 +
It will look like this:
 +
 
 +
This is the text on the page that needs a footnote in the "references" section below.<ref>''LibreOffice For Starters'', First Edition, Flexible Minds, Manchester, 2002, p. 18</ref>
 +
<references/>
 +
 
 +
'''Attention''': there must be no space before or after the '''<nowiki><ref></nowiki>'''TEXT OF THE FOOTNOTE'''<nowiki></ref></nowiki>''' tags. If there is a space there, the text will show error.
 +
 
 +
==Special characters==
 +
 
 +
''Now that Mediawiki (the software that makes this wiki go) supports UTF-8, many of these can be entered directly into articles, without the HTML markup.   
  
 
<table border="1" cellpadding="2" cellspacing="0">
 
<table border="1" cellpadding="2" cellspacing="0">
 
<tr valign="top">
 
<tr valign="top">
 
<td>
 
<td>
'''Umlauts and accents:''' <br>
+
'''Umlauts and accents:''' <br/>
À Á Â Ã Ä Å<br>
+
À Á Â Ã Ä Å<br/>
Æ Ç È É Ê Ë<br>
+
Æ Ç È É Ê Ë<br/>
Ì Í Î Ï Ñ Ò<br>
+
Ì Í Î Ï Ñ Ò<br/>
Ó Ô Õ Ö Ø Ù<br>
+
Ó Ô Õ Ö Ø Ù<br/>
Ú Û Ü ß à á<br>
+
Ú Û Ü ß à á<br/>
â ã ä å æ ç<br>
+
â ã ä å æ ç<br/>
è é ê ë ì í<br>
+
è é ê ë ì í<br/>
î ï ñ ò ó ô<br>
+
î ï ñ ò ó ô<br/>
œ õ ö ø ù ú<br>
+
œ õ ö ø ù ú<br/>
 
û ü ÿ
 
û ü ÿ
 
</td>
 
</td>
<td><br>
+
<td><br/>
<tt><nowiki>&amp;Agrave; &amp;Aacute; &amp;Acirc;  &amp;Atilde; &amp;Auml;  &amp;Aring;  </nowiki></tt><br>
+
<tt><nowiki>&amp;Agrave; &amp;Aacute; &amp;Acirc;  &amp;Atilde; &amp;Auml;  &amp;Aring;  </nowiki></tt><br/>
<tt><nowiki>&amp;AElig;  &amp;Ccedil; &amp;Egrave; &amp;Eacute; &amp;Ecirc;  &amp;Euml;  </nowiki></tt><br>
+
<tt><nowiki>&amp;AElig;  &amp;Ccedil; &amp;Egrave; &amp;Eacute; &amp;Ecirc;  &amp;Euml;  </nowiki></tt><br/>
<tt><nowiki>&amp;Igrave; &amp;Iacute; &amp;Icirc;  &amp;Iuml;  &amp;Ntilde; &amp;Ograve; </nowiki></tt><br>
+
<tt><nowiki>&amp;Igrave; &amp;Iacute; &amp;Icirc;  &amp;Iuml;  &amp;Ntilde; &amp;Ograve; </nowiki></tt><br/>
<tt><nowiki>&amp;Oacute; &amp;Ocirc;  &amp;Otilde; &amp;Ouml;  &amp;Oslash; &amp;Ugrave; </nowiki></tt><br>
+
<tt><nowiki>&amp;Oacute; &amp;Ocirc;  &amp;Otilde; &amp;Ouml;  &amp;Oslash; &amp;Ugrave; </nowiki></tt><br/>
<tt><nowiki>&amp;Uacute; &amp;Ucirc;  &amp;Uuml;  &amp;szlig;  &amp;agrave; &amp;aacute; </nowiki></tt><br>
+
<tt><nowiki>&amp;Uacute; &amp;Ucirc;  &amp;Uuml;  &amp;szlig;  &amp;agrave; &amp;aacute; </nowiki></tt><br/>
<tt><nowiki>&amp;acirc;  &amp;atilde; &amp;auml;  &amp;aring;  &amp;aelig;  &amp;ccedil; </nowiki></tt><br>
+
<tt><nowiki>&amp;acirc;  &amp;atilde; &amp;auml;  &amp;aring;  &amp;aelig;  &amp;ccedil; </nowiki></tt><br/>
<tt><nowiki>&amp;egrave; &amp;eacute; &amp;ecirc;  &amp;euml;  &amp;igrave; &amp;iacute; </nowiki></tt><br>
+
<tt><nowiki>&amp;egrave; &amp;eacute; &amp;ecirc;  &amp;euml;  &amp;igrave; &amp;iacute; </nowiki></tt><br/>
<tt><nowiki>&amp;icirc;  &amp;iuml;  &amp;ntilde; &amp;ograve; &amp;oacute; &amp;ocirc;  </nowiki></tt><br>
+
<tt><nowiki>&amp;icirc;  &amp;iuml;  &amp;ntilde; &amp;ograve; &amp;oacute; &amp;ocirc;  </nowiki></tt><br/>
<tt><nowiki>&amp;oelig;  &amp;otilde; &amp;ouml;  &amp;oslash; &amp;ugrave; &amp;uacute; </nowiki></tt><br>
+
<tt><nowiki>&amp;oelig;  &amp;otilde; &amp;ouml;  &amp;oslash; &amp;ugrave; &amp;uacute; </nowiki></tt><br/>
 
<tt><nowiki>&amp;ucirc;  &amp;uuml;  &amp;yuml;                                          </nowiki></tt>
 
<tt><nowiki>&amp;ucirc;  &amp;uuml;  &amp;yuml;                                          </nowiki></tt>
 
</td>
 
</td>
Line 549: Line 259:
 
<tr valign=top>
 
<tr valign=top>
 
<td>
 
<td>
'''Punctuation:'''<br>
+
'''Punctuation:'''<br/>
 
¿ ¡ « » § ¶<br>
 
¿ ¡ « » § ¶<br>
 
† ‡ • - – —
 
† ‡ • - – —
 
</td>
 
</td>
<td><br>
+
<td><br/>
<tt><nowiki>&amp;iquest; &amp;iexcl;  &amp;laquo; &amp;raquo; &amp;sect; &amp;para; </nowiki></tt><br>
+
<tt><nowiki>&amp;iquest; &amp;iexcl;  &amp;laquo; &amp;raquo; &amp;sect; &amp;para; </nowiki></tt><br/>
 
<tt><nowiki>&amp;dagger; &amp;Dagger; &amp;bull;  &amp;ndash; &amp;mdash;          </nowiki></tt>
 
<tt><nowiki>&amp;dagger; &amp;Dagger; &amp;bull;  &amp;ndash; &amp;mdash;          </nowiki></tt>
 
</td>
 
</td>
Line 560: Line 270:
 
<tr valign="top">
 
<tr valign="top">
 
<td>
 
<td>
'''Commercial symbols:'''<br>
+
'''Commercial symbols:'''<br/>
 
™ © ® ¢ € ¥ £ ¤
 
™ © ® ¢ € ¥ £ ¤
 
</td>
 
</td>
<td><br>
+
<td><br/>
 
<tt><nowiki>&amp;trade; &amp;copy; &amp;reg; &amp;cent; &amp;euro; &amp;yen; &amp;pound; &amp;curren;</nowiki></tt>
 
<tt><nowiki>&amp;trade; &amp;copy; &amp;reg; &amp;cent; &amp;euro; &amp;yen; &amp;pound; &amp;curren;</nowiki></tt>
 
</td>
 
</td>
 
</tr>
 
</tr>
<tr valign="top"><td>'''Greek characters:''' <br>
+
<tr valign="top"><td>'''Greek characters:''' <br/>
α β γ δ ε ζ<br>
+
α β γ δ ε ζ<br/>
η θ ι κ λ μ ν<br>
+
η θ ι κ λ μ ν<br/>
ξ ο π ρ σ ς<br>
+
ξ ο π ρ σ ς<br/>
τ υ φ χ ψ ω<br>
+
τ υ φ χ ψ ω<br/>
Γ Δ Θ Λ Ξ Π<br>
+
Γ Δ Θ Λ Ξ Π<br/>
Σ Φ Ψ Ω<br>
+
Σ Φ Ψ Ω<br/>
 
</td>
 
</td>
<td><br>
+
<td><br/>
<tt><nowiki>&amp;alpha; &amp;beta;    &amp;gamma; &amp;delta;  &amp;epsilon; &amp;zeta;            </nowiki></tt><br>
+
<tt><nowiki>&amp;alpha; &amp;beta;    &amp;gamma; &amp;delta;  &amp;epsilon; &amp;zeta;            </nowiki></tt><br/>
<tt><nowiki>&amp;eta;  &amp;theta;  &amp;iota;  &amp;kappa;  &amp;lambda;  &amp;mu;    &amp;nu; </nowiki></tt><br>
+
<tt><nowiki>&amp;eta;  &amp;theta;  &amp;iota;  &amp;kappa;  &amp;lambda;  &amp;mu;    &amp;nu; </nowiki></tt><br/>
<tt><nowiki>&amp;xi;    &amp;omicron; &amp;pi;    &amp;rho;    &amp;sigma;  &amp;sigmaf;          </nowiki></tt><br>
+
<tt><nowiki>&amp;xi;    &amp;omicron; &amp;pi;    &amp;rho;    &amp;sigma;  &amp;sigmaf;          </nowiki></tt><br/>
<tt><nowiki>&amp;tau;  &amp;upsilon; &amp;phi;  &amp;chi;    &amp;psi;    &amp;omega;          </nowiki></tt><br>
+
<tt><nowiki>&amp;tau;  &amp;upsilon; &amp;phi;  &amp;chi;    &amp;psi;    &amp;omega;          </nowiki></tt><br/>
<tt><nowiki>&amp;Gamma; &amp;Delta;  &amp;Theta; &amp;Lambda; &amp;Xi;      &amp;Pi;              </nowiki></tt><br>
+
<tt><nowiki>&amp;Gamma; &amp;Delta;  &amp;Theta; &amp;Lambda; &amp;Xi;      &amp;Pi;              </nowiki></tt><br/>
 
<tt><nowiki>&amp;Sigma; &amp;Phi;    &amp;Psi;  &amp;Omega;                                      </nowiki></tt>
 
<tt><nowiki>&amp;Sigma; &amp;Phi;    &amp;Psi;  &amp;Omega;                                      </nowiki></tt>
</td>
 
</tr>
 
<tr valign="top">
 
<td>
 
'''Math characters:''' ([[#Mathematical_formulas|TeX]] is often better) <br>
 
∫ ∑ ∏ √ − ± ∞<br>
 
≈ ∝ ≡ ≠ ≤ ≥<br>
 
× · ÷ ∂ ′ ″<br>
 
∇ ‰ ° ∴ ø<br>
 
∈ ∩ ∪ ⊂ ⊃ ⊆ ⊇<br>
 
¬ ∧ ∨ ∃ ∀ ⇒ ⇔<br>
 
→ ↔ ↑ ↓<br>
 
</td>
 
<td><br>
 
<tt><nowiki>&amp;int;  &amp;sum;    &amp;prod;  &amp;radic;  &amp;minus;  &amp;plusmn; &amp;infin; </nowiki></tt><br>
 
<tt><nowiki>&amp;asymp; &amp;prop;  &amp;equiv;  &amp;ne;    &amp;le;    &amp;ge;                </nowiki></tt><br>
 
<tt><nowiki>&amp;times; &amp;middot; &amp;divide; &amp;part;  &amp;prime;  &amp;Prime;              </nowiki></tt><br>
 
<tt><nowiki>&amp;nabla; &amp;permil; &amp;deg;    &amp;there4; &amp;oslash;                          </nowiki></tt><br>
 
<tt><nowiki>&amp;isin;  &amp;cap;    &amp;cup;    &amp;sub;    &amp;sup;    &amp;sube;  &amp;supe;  </nowiki></tt><br>
 
<tt><nowiki>&amp;not;  &amp;and;    &amp;or;    &amp;exist;  &amp;forall; &amp;rArr;  &amp;hArr;  </nowiki></tt><br>
 
<tt><nowiki>&amp;rarr;  &amp;harr;  &amp;uarr;  &amp;darr;                                                  </nowiki></tt>
 
</td>
 
</tr>
 
<tr valign="top">
 
<td>
 
'''Problem symbols:''' <br>
 
ℵ ∉
 
</td>
 
<td><br>
 
<tt><nowiki>&amp;alefsym; &amp;notin; </nowiki></tt>
 
 
</td>
 
</td>
 
</tr>
 
</tr>
 
</table>
 
</table>
  
===Templates===
 
 
'''[[Help:Template|Templates]]''' are segments of Wiki markup that are meant to be copied automatically ("transcluded") into a page.
 
You add them by putting the template's name in <nowiki>{{double braces}}</nowiki>.
 
 
Some templates take ''parameters'', as well, which you separate with the pipe character.
 
{| border="1" cellpadding="2" cellspacing="0"
 
|-
 
!What it looks like
 
!What you type
 
|-
 
|
 
{{Transclusion demo}}
 
|<pre><nowiki>
 
{{Transclusion demo}}
 
</nowiki></pre>
 
|-
 
|
 
This template takes two parameters, and
 
creates underlined text with a hover box
 
for many modern browsers supporting CSS:
 
 
{{H:title|This is the hover text|
 
Hover your mouse over this text}}
 
 
Go to this page to see the H:title template
 
itself: {{tl|H:title}}
 
 
|<pre><nowiki>
 
This template takes two parameters, and
 
creates underlined text with a hover box
 
for many modern browsers supporting CSS:
 
  
{{H:title|This is the hover text|
+
==Related Topics==
Hover your mouse over this text}}
+
  
Go to this page to see the H:title template
+
*[[NovaRoma:Images for Romans|help article for images]]
itself: {{tl|H:title}}
+
*[[NovaRoma:Templates | help article on templates]]. Templates let us put things like dates onto pages automatically.
</nowiki></pre>
+
|}
+

Latest revision as of 10:08, 31 July 2013

 Home| Latíné | Deutsch | Español | Français | Italiano | Magyar | Português | Română | Русский | English

This is one of the Nova Roma wiki help files.

This is a quick guide for editing for Romans who are new to wikis.

  • If you just want to edit an existing article:
    • Please read section 1 "Editing: Basic steps" carefully.
    • Use the other sections as a reference for doing fancier things.
  • If you want to create a new article, it is just the same, but please also read about how to name articles.

N.B.: This isn't everything that you can do, but it is probably enough for most articles. More topics are covered in Advanced Wiki Editing for Romans.

Contents

Editing: Basic steps

The Fourfold Way

The Fourfold way is the basic set of steps used for all edits.

Step 1. Click the edit tab to start making your edits.

Step 2. Enter a note in the edit Summary so others know what you have done. A summary might be as simple as "fix typos", "add links" or "add photo". Not leaving a summary is very bad form.

Step 3. Show preview to check your changes. If it isn't right, go back and do more editing. Every time you save, you create a version of the page that will be saved forever. Unnecessary saves create unnecessary load when backing up the database. Be kind to the server and preview before saving.

Step 4. When you have checked everything, click Save page.

Start editing

To start editing a page, click on the "edit" link at the top of the page. This will bring you to the edit page: a page with a text box containing the wikitext: the editable source code from which the server produces the webpage. (If you just want to experiment, please do so on your user page.)

Editing is simple

In most cases you will just type (or paste) words, sentences, paragraphs or whole articles. It is just like typing. You can read below about making headings, lists and other fancy things.

Summarize your changes

You should write a short edit summary in the small field below the edit-box.

Minor edits

There is a check box that marks an edit as "minor". Minor edits are generally spelling corrections, formatting, and minor rearrangement of text. Other users may choose to hide minor edits when viewing Recent Changes.

Preview before saving

When you have finished, press Show preview to see how your changes will look -- before you make them permanent. Repeat the edit/preview process until you are satisfied, then click Save page and your changes will be immediately applied to the article.

Links

You will often want to make clickable links to other pages.

Link to another article in the wiki

To link to another article in this wiki, just type the article title inside [[double brackets]].

To link to the article "Choosing a Roman name", you would enter

[[Choosing a Roman name]] 

and it would appear in your article like this: Choosing a Roman name.

To make it fit smoothly in a sentence, you can make the first letter (only) lower case. If you type:

We have an article about [[choosing a Roman name]]

It will look like this: "We have an article about choosing a Roman name".

If you want to link to an article but you don't want to use the article's title, you can use the pipe character |. Start your link the same way, with the article title in double brackets, but then add the pipe character and then the words that you want to appear as your link.

We have an article about [[choosing a Roman name | picking a name]].

Appears as: "We have an article about picking a name".

Many articles here have titles like "Coin (Nova Roma)". If you don't want the "(Nova Roma)" part to appear, just make a normal link, add a pipe character and then add nothing. If you type

[[Coin (Nova Roma)|]] 

you will get this: "Coin".

If you add any letters right against the end of your link, they will become part of the link. If you type

 We have also minted several [[coin (Nova Roma)|]]s.

you will get this: "We have also minted several coins."

Link to things outside the wiki

To link to something outside the wiki, just enter the URL. If you type

http://groups.yahoo.com/group/newroman/ 

you get a link that looks like this: http://groups.yahoo.com/group/newroman/

If you want to give that link a name you must put it in single square brackets and add the name after the address, just leaving a space. So if you type this:

[http://groups.yahoo.com/group/newroman/ a group for new citizens]

it will look like this: "a group for new citizens".

If you use the single square brackets and no link name, you will get a number. If you type

[http://groups.yahoo.com/group/newroman/]

you will see this "[1]".

Category links

You can add your article to a category by putting in a category link.

A category is a special kind of page. It will automatically show an alphabetical list of all the articles that have a link to that category. Every article in that category has a link like this inside it:

[[Category:Nova Roma]]
  • Put a category link anywhere in the article, usually at the bottom or at the top.
  • The link to the category automatically appears at the bottom of the article.
  • An article can be in any number of categories.

To make a link to a category without adding the article to the category, just add a leading colon, like this:

[[:Category:Nova Roma]]

It will look like this: "Category:Nova Roma"

Of course, it now acts like a normal inside the wiki link, so all the other rules apply:

[[:Category:Senators (Nova Roma)|]]

Appears as: "Senators"

Date links

N.B. We have a special system for recent years. Put double braces around recent years in the common system. The wiki will convert these to consular dates with the common dating as hover text.

If you type  {{2006}}

it will become "K. Buteone Po. Minucia cos. MMDCCLIX a.u.c.".


Otherwise, always put double brackets around dates.

The Wiki reformats linked dates to match the reader's date preferences. These three dates will show up the same if you choose a format in your Preferences:

Always put double brackets around years AUC (in Roman numerals).

Redirection links

You can automatically forward readers from one article to another. For example, a reader who searches for "eagle" will be forwarded automatically to the article on Aquila heliaca.

The article "Eagle" contains just this:

#REDIRECT [[Aquila heliaca]]

The redirection happens automatically. If you add a redirect to an existing article, everything else in that article will be deleted, so use redirects carefully.


Dividing the text

Making paragraphs

Leave an empty line to start a new paragraph. A single return is ignored, but two returns (a blank line) starts a new paragraph. Do not use <p>.

Making sections

Divide an article into sections by putting a heading on a new line and surrounding it with double equals signs:

==Section heading==

Make subsection headings the same way, but use three equals signs:

===Sub-section heading===
  • Start with two equals signs; don't use single equals signs.
  • make smaller divisions with more equals signs.
  • Don't skip levels: two equals signs should be followed by three equals signs, not four equals signs.

A table of contents will be generated automatically for any article with four or more headings.

Do not use <h1>, <h2> etc..

Italics and bold

You can put words into italics or bold by surrounding them with apostrophes (or single quotes).

Italics are used for words in another language (e.g. Latin). They are not used for emphasis.

Bold is used for emphasis.

The emphasise a word in a foreign language, you can use bold italics.

  1. Put two apostrophes around the bit you want to make italic: ''Non-English word'' --> Non-English word.
  2. Put three apostrophes around the bit you want to make bold: '''Emphasised word''' --> Emphasised word.
  3. Put five apostrophes around the bit you want to make bold and italic: '''''Emphasised non-English word''''' --> Emphasised non-English word (usually bold italic).

It is considered bad form to use ALL CAPS for emphasis.

Lists

Unordered lists

  • Start every list item on a new line.
  • Put an asterix in front of each item.
  • This list looks like this:
*Start every list item on a new line.
*Put an asterix in front of each item.
*This list looks like this:

Ordered lists

  1. Start every list item on a new line.
  2. Put a number sign in front of each item.
  3. This list looks like this:
#Start every list item on a new line.
#Put a number sign in front of each item.
#This list looks like this:

Definition lists

  • Put each item to define on a new line
  • Put a semicolon before each item
  • Put a colon between each item and its definition


Item to define 
A nice definition that can be as long or as short as you want.
;Item to define : A nice definition that can be as long or as short as you want.


Using footnotes

It's of utmost importance that for all claims in a scholarly article of our website we use references in footnotes. It does not only assures our readers they are reading a high quality, researched and verified article, but it greatly hepls them in further research, to find the ancient sources, the latest scholarship, authors etc., so that they can conduct researches themselves, or deepen their understanding and Romannes.

To create a footnote, determine the point in the page content where the footnote is desired and enter the markup with the citation or note inside the <ref>TEXT OF THE FOOTNOTE</ref> tags. A numeral indicating the footnote and the footnote iself will automatically appear on the page at the point where you put this tag: <references/> For example:

This is the text on the page that needs a footnote in the "references" section below.<ref>''LibreOffice For Starters'', First Edition, Flexible Minds, Manchester, 2002, p. 18</ref>	
<references/>

It will look like this:

This is the text on the page that needs a footnote in the "references" section below.[1]

  1. LibreOffice For Starters, First Edition, Flexible Minds, Manchester, 2002, p. 18


Attention: there must be no space before or after the <ref>TEXT OF THE FOOTNOTE</ref> tags. If there is a space there, the text will show error.

Special characters

Now that Mediawiki (the software that makes this wiki go) supports UTF-8, many of these can be entered directly into articles, without the HTML markup.

Umlauts and accents:
À Á Â Ã Ä Å
Æ Ç È É Ê Ë
Ì Í Î Ï Ñ Ò
Ó Ô Õ Ö Ø Ù
Ú Û Ü ß à á
â ã ä å æ ç
è é ê ë ì í
î ï ñ ò ó ô
œ õ ö ø ù ú
û ü ÿ


&Agrave; &Aacute; &Acirc; &Atilde; &Auml; &Aring;
&AElig; &Ccedil; &Egrave; &Eacute; &Ecirc; &Euml;
&Igrave; &Iacute; &Icirc; &Iuml; &Ntilde; &Ograve;
&Oacute; &Ocirc; &Otilde; &Ouml; &Oslash; &Ugrave;
&Uacute; &Ucirc; &Uuml; &szlig; &agrave; &aacute;
&acirc; &atilde; &auml; &aring; &aelig; &ccedil;
&egrave; &eacute; &ecirc; &euml; &igrave; &iacute;
&icirc; &iuml; &ntilde; &ograve; &oacute; &ocirc;
&oelig; &otilde; &ouml; &oslash; &ugrave; &uacute;
&ucirc; &uuml; &yuml;

Punctuation:
¿ ¡ « » § ¶
† ‡ • - – —


&iquest; &iexcl; &laquo; &raquo; &sect; &para;
&dagger; &Dagger; &bull; &ndash; &mdash;

Commercial symbols:
™ © ® ¢ € ¥ £ ¤


&trade; &copy; &reg; &cent; &euro; &yen; &pound; &curren;

Greek characters:

α β γ δ ε ζ
η θ ι κ λ μ ν
ξ ο π ρ σ ς
τ υ φ χ ψ ω
Γ Δ Θ Λ Ξ Π
Σ Φ Ψ Ω


&alpha; &beta; &gamma; &delta; &epsilon; &zeta;
&eta; &theta; &iota; &kappa; &lambda; &mu; &nu;
&xi; &omicron; &pi; &rho; &sigma; &sigmaf;
&tau; &upsilon; &phi; &chi; &psi; &omega;
&Gamma; &Delta; &Theta; &Lambda; &Xi; &Pi;
&Sigma; &Phi; &Psi; &Omega;


Related Topics

Personal tools