Help

From wipipedia.org
(Difference between revisions)
Jump to: navigation, search


(General: Removed one link; pointed others to Wikipedia.)
(Categorisew)
 
(3 intermediate revisions by 3 users not shown)
Line 1: Line 1:
-----------------------------
+
See [[Wikipedia:How to edit a page|editing help on Wikipedia]]
{{handbook sidebar|Editor toc}}
+
  
 
+
[[Category:Maintenance]]
==General==
+
To edit a [[Wikipedia:MediaWiki|MediaWiki]] page, click on the "'''Edit this page'''" (or just "'''edit'''") link at one of its edges. This will bring you to a page with a text box containing the ''[[wikitext]]'': the editable source code from which the server produces the webpage.
+
 
+
The edit link of a page showing an old version leads to an edit page with the old wikitext. This allows restoring the old version. However, the edit link of a [[diff]] page gives the current wikitext, even if the diff page shows an old version below the table of differences.
+
 
+
After adding to or changing the wikitext it is useful to press "Show preview", which produces the corresponding webpage in your browser but does not make it publicly available yet (not until you press "Save"). Errors in formatting, links, tables, etc., are often much easier to discover from the rendered page than from the raw wikitext.
+
 
+
If you are not satisfied you can make more changes and preview the page as many times as necessary. Then write a short [[Help:Edit summary|edit summary]] in the small text field below the edit-box and when finished press "Save". Depending on your system, pressing the "Enter" key while the edit box is not active (i.e., there is no typing cursor in it) may have the same effect as pressing "Save".
+
 
+
You may find it more convenient to copy and paste the text first into your favorite [[en:text editor|text editor]], edit and spell check it there, and then paste it back into your web browser to preview. This way, you can also keep a local backup copy of the pages you have edited. It also allows you to make changes offline, but before you submit your changes, ''please make sure nobody else has edited the page'' since you saved your local copy (by checking the [[Help:page history|page history]]), otherwise you may accidently revert someone else's edits. If someone ''has'' edited it since you copied the page, you'll have to merge their edits into your new version (you can find their specific edits by using the "[[Help:diff|diff]]" feature of the page history). These issues are handled automatically by the Mediawiki software if you edit the page in your web browser.
+
 
+
See also [[Wikipedia:MediaWiki architecture|MediaWiki architecture]].
+
 
+
== Dummy edit and null edit==
+
 
+
If the wikitext is not changed no edit will be recorded and the edit summary is discarded.
+
 
+
A '''dummy edit''' is a change in wikitext that has no effect on the rendered page, such as changing the number of [[w:newline|newline]]s at some position from 0 to 1 or from 2 to 3 or conversely (changing from 1 to 2 makes a difference, see below). This allows an edit summary, and is useful for correcting a previous edit summary, or an accidental marking of a previous edit as "minor" (see below).
+
 
+
To refresh the cache of some item in the database a lesser kind of dummy edit, called a '''null edit''', may be sufficient: one that does not cause any change in the wikitext, and no entry in the history, in Recent Changes, etc.: this can be done by opening the edit window and saving; a section edit is sufficient. See also  [[Help:Category#A_category_tag_in_a_template.3B_caching_problem|A category tag in a template; caching problem]].
+
 
+
== Minor edits ==
+
When editing a page, a [[MediaWiki User's Guide: Logging-in|logged-in]] user has the option of flagging the edit as a "minor edit". This feature is important, because users can choose to ''hide'' minor edits in their view of the [[MediaWiki User's Guide: The Recent Changes page | Recent Changes page]], to keep the volume of edits down to a manageable level.
+
 
+
When to use this is somewhat a matter of personal preference. The rule of thumb is that an edit of a page that consists of spelling corrections, formatting, and minor rearranging of text should be flagged as a "minor edit".  A major edit is basically something that makes the entry worth revisiting for somebody who wants to watch the article rather closely. So any "real" change, even if it is a single word, should be flagged as a "major edit".
+
 
+
The reason for not allowing a user who is not logged in to mark an edit as minor is that vandalism could then be marked as a minor edit, in which case it would stay unnoticed longer. This limitation is another reason to log in.
+
 
+
== The wiki markup ==
+
In the left column of the table below, you can see what effects are possible. In the right column, you can see how those effects were achieved. In other words, to make text look like it looks in the left column, type it in the format you see in the right column.
+
 
+
You may want to keep this page open in a separate browser window for reference. If you want to try out things without danger of doing any harm, you can do so in the [[Sandbox]].
+
 
+
=== Sections, paragraphs, lists and lines ===
+
<table border="1" cellpadding="2" cellspacing="0">
+
<tr>
+
<th>What it looks like</th>
+
<th>What you type</th>
+
</tr>
+
<tr>
+
<td>
+
Start your sections with header lines:
+
 
+
<!-- This is the original
+
== New section ==
+
=== Subsection ===
+
==== Sub-subsection ====
+
-->
+
 
+
<!-- next set
+
<h2> New section </h2>
+
<h3> Subsection </h3>
+
<h4> Sub-subsection </h4>
+
-->
+
 
+
<!-- This code prevents confusion in the section editing feature-->
+
<b><font style="font-size:120%"> New section </font></b>
+
 
+
<b><font style="font-size:110%"> Subsection</font></b>
+
 
+
<b><font style="font-size:100%"> Sub-subsection</font></b>
+
 
+
</td>
+
<td><pre><nowiki>
+
 
+
== New section ==
+
 
+
=== Subsection ===
+
 
+
==== Sub-subsection ====
+
</nowiki></pre>
+
</td>
+
</tr>
+
<tr>
+
<td>
+
[[en:newline|Newline]]:
+
 
+
A single
+
newline
+
has no
+
effect on the
+
layout.
+
 
+
But an empty line
+
starts a new paragraph.
+
 
+
(<nowiki><p></nowiki> disables this paragraphing until <nowiki></p></nowiki> or the end  of the section)
+
 
+
(in Cologne Blue two newlines and a div tag give just one newline; in the order newline, div tag, newline, the result is two newlines)
+
 
+
</td>
+
<td>
+
<pre><nowiki>
+
 
+
A single
+
newline
+
has no
+
effect on the
+
layout.
+
 
+
But an empty line
+
starts a new paragraph.</nowiki></pre>
+
</td>
+
</tr>
+
<tr valign="top"><td>You can break lines<br>
+
without starting a new paragraph.<p>
+
Sufficient as wikitext code is &lt;br&gt;, the XHTML code &lt;br /&gt; is not needed, the system produces this code.</p></td>
+
<td><pre><nowiki>You can break lines<br>
+
without starting a new paragraph.</nowiki></pre>
+
</td>
+
</tr>
+
<tr>
+
<td>
+
* Lists are easy to do:
+
** start every line with a star
+
*** more stars means deeper levels
+
*A newline
+
*in a list 
+
marks the end of the list.
+
*Of course
+
*you can
+
*start again.
+
 
+
</td>
+
<td><pre><nowiki>* Lists are easy to do:
+
** start every line with a star
+
*** more stars means deeper levels
+
*A newline
+
*in a list 
+
marks the end of the list.
+
*Of course
+
*you can
+
*start again.
+
 
+
</nowiki></pre>
+
</td>
+
</tr>
+
<tr>
+
<td>
+
# Numbered lists are also good
+
## very organized
+
## easy to follow
+
#A newline
+
#in a list 
+
marks the end of the list.
+
#New numbering starts
+
#with 1.
+
 
+
</td>
+
<td><pre><nowiki># Numbered lists are also good
+
## very organized
+
## easy to follow
+
#A newline
+
#in a list 
+
marks the end of the list.
+
#New numbering starts
+
#with 1.
+
</nowiki></pre>
+
</td>
+
</tr>
+
<tr>
+
<td>
+
* You can even do mixed lists
+
*# and nest them
+
*#* like this<br>or have newlines<br>inside lists
+
</td>
+
<td><pre><nowiki>* You can even do mixed lists
+
*# and nest them
+
*#* like this<br>or have newlines<br>inside lists</nowiki></pre>
+
</td>
+
</tr>
+
<tr>
+
<td>
+
* You can also
+
**break lines<br>inside lists<br>like this
+
</td>
+
<td><pre><nowiki>* You can also
+
**break lines<br>inside lists<br>like this</nowiki></pre>
+
</td>
+
<tr>
+
<td>
+
; Definition list : list of definitions
+
; item : the item's definition
+
</td>
+
<td><pre><nowiki>; Definition list : list
+
of definitions
+
; item : the item's definition</nowiki></pre>
+
</td>
+
</tr>
+
<tr>
+
<td>
+
:A colon indents a line or paragraph.
+
A manual newline starts a new paragraph.
+
* This is primarily for displayed material, but is also used for discussion on [[Help:Talk page|Talk page]]s.
+
</td>
+
<td><pre><nowiki>: A colon indents a line or paragraph.
+
A manual newline starts a new paragraph.
+
</nowiki></pre>
+
</td>
+
</tr>
+
<tr valign=top>
+
<td>
+
<pre><nowiki>IF a line of plain text starts with a space THEN
+
  it will be formatted exactly
+
    as typed;
+
  in a fixed-width font;
+
  lines won't wrap;
+
ENDIF
+
this is useful for:
+
  * pasting preformatted text;
+
  * algorithm descriptions;
+
  * program source code
+
  * ASCII art;
+
  * chemical structures;</nowiki></pre>
+
 
+
WARNING If you make it wide,
+
you [[en:page widening|force the whole page to be wide]] and
+
hence less readable. Never start ordinary lines with spaces.<br>
+
<center>(see also below)</center>
+
</td>
+
<td><pre><nowiki> IF a line of plain text starts with a space THEN
+
  it will be formatted exactly
+
    as typed;
+
  in a fixed-width font;
+
  lines won't wrap;
+
ENDIF
+
this is useful for:
+
  * pasting preformatted text;
+
  * algorithm descriptions;
+
  * program source code
+
  * ASCII art;
+
  * chemical structures;</nowiki></pre></td>
+
</tr>
+
<tr valign="top"><td><center>Centered text.</center>
+
</td>
+
<td><pre><nowiki><center>Centered text.</center></nowiki></pre>
+
</td>
+
</tr>
+
<tr>
+
<td>A [[en:horizontal dividing line|horizontal dividing line]]: above
+
----
+
 
+
and below.
+
 
+
Mainly useful for separating threads on Talk pages.
+
</td>
+
<td><pre><nowiki>A horizontal dividing line: above
+
----
+
and below. </nowiki></pre>
+
</td>
+
</tr>
+
</table>
+
 
+
Summarizing the effect of a single newline: no effect in general, but it ends a list item or indented part; thus changing some text into a list item, or indenting it, is more cumbersome if it contains newlines, they have to be removed; see also [[w:Wikipedia:Don't use line breaks]].
+
 
+
=== Links, URLs ===
+
 
+
<table border="1" cellpadding="2" cellspacing="0">
+
<tr>
+
<th>What it looks like</th>
+
<th>What you type</th>
+
</tr>
+
<tr valign="top"><td>Sue is reading the [[help]] page.
+
*First letter of target is automatically capitalized.
+
*Internally spaces are automatically represented as underscores (typing an underscore has the same effect as typing a space, but is not recommended).
+
Thus the [[link]] above is to <nowiki>http://meta.wikipedia.org/wiki/Video_policy</nowiki>, which is the page with the name "Video policy".
+
</td>
+
<td><pre><nowiki>Sue is reading the [[help]] page.</nowiki></pre>
+
</td>
+
</tr>
+
 
+
<tr><td>
+
Link to a section on a page, e.g.
+
 
+
[[BDSM#Safety]]; when section linking does not work the link is treated as link to the page, i.e. to the top; this applies for:
+
*links to non-existent sections
+
*links in redirects
+
*interwiki links</td><td>
+
<pre><nowiki>[[BDSM#Safety]].</nowiki></pre></td>
+
</tr>
+
 
+
<tr valign="top"><td>Link target and link label are different: [[User:Larry Sanger|answers]].
+
 
+
(This is called a [[piped link]]).
+
</td>
+
<td><pre><nowiki>Same target, different name:
+
[[User:Larry Sanger|answers]]</nowiki></pre>
+
</td>
+
</tr>
+
<tr valign="top">
+
<td>Endings are blended into the link: [[official position]]s, [[gene]]s</td>
+
<td>
+
<pre><nowiki>Endings are blended
+
into the link: [[official position]]s, [[gene]]s</nowiki></pre>
+
</td>
+
</tr>
+
<tr valign="top">
+
<td>
+
Automatically hide stuff in parentheses: [[kingdom (biology)|kingdom]].
+
<p>Automatically hide namespace: [[Wikipedia:Village pump|Village pump]].</p>
+
<p>The server fills in the part after the | when you save the page. Next time you open the edit box you will see the expanded piped link. A preview interprets the abbreviated form correctly, but does not expand it yet in the edit box. Press Save and again Edit, and you will see the expanded version. The same applies for the following feature.</p>
+
</td>
+
<td>
+
<pre><nowiki>Automatically hide stuff in parentheses:
+
[[kingdom (biology)|]]. </nowiki></pre>
+
<pre><nowiki>Automatically hide namespace:
+
[[Wikipedia:Village pump|]].</nowiki></pre>
+
</td></tr>
+
<tr>
+
<td>When adding a comment to a Talk page,
+
you should sign it. You can do this by
+
adding three tildes for your user name:
+
: [[User:Karl Wick|Karl Wick]]
+
or four for user name plus date/time:
+
: [[User:Karl Wick|Karl Wick]] 08:10 Oct 5, 2002 (UTC)
+
</td>
+
<td><pre><nowiki>When adding a comment to a Talk page,
+
you should sign it. You can do this by
+
adding three tildes for your user name:
+
: ~~~
+
or four for user name plus date/time:
+
: ~~~~</nowiki></pre>
+
</td>
+
</tr>
+
<tr valign="top"><td>[[The weather in London]] is a page that doesn't exist yet.
+
*You can create it by clicking on the link.
+
*To create a new page:
+
*#Create a link to it on some other page.
+
*#Save that page.
+
*#Click on the link you just made. The new page will open for editing.
+
*Have a look at [[MediaWiki User's Guide: Starting a new page|how to start a page]] guide and the naming conventions page for your project.
+
</td>
+
<td><pre><nowiki>[[The weather in London]] is a page
+
that doesn't exist yet.</nowiki></pre>
+
</td>
+
</tr>
+
<tr valign="top"><td>
+
[[MediaWiki User's Guide: Using redirects|Redirect]] one article title to another by putting text like this in its first line.
+
</td>
+
<td><pre><nowiki>#REDIRECT [[United States]]</nowiki></pre>
+
</td>
+
 
+
<!-- </tr>
+
<tr valign="top"><td>
+
A link to the page on the same subject in another language or, more generally, to a page on another wiki:
+
[[fr:Wikipédia:Aide]].
+
For more info see [[MediaWiki User's Guide: Interwiki linking]].
+
</td>
+
<td><pre><nowiki>[[fr:Wikipédia:Aide]], [[:fr:Wikipédia:Aide]]</nowiki></pre></td>
+
</tr>
+
-->
+
 
+
<tr>
+
<td>"What links here" and "Related changes" can be linked as:<br/>
+
[[Special:Whatlinkshere/Wikipedia:How to edit a page]] and
+
[[Special:Recentchangeslinked/Wikipedia:How to edit a page]]
+
</td>
+
<td><pre><nowiki>
+
[[Special:Whatlinkshere/
+
Wikipedia:How to edit a page]] and
+
[[Special:Recentchangeslinked/
+
Wikipedia:How to edit a page]]</nowiki></pre>
+
</td>
+
</tr>
+
<tr valign="top"><td>External links: [http://www.nupedia.com Nupedia], [http://www.nupedia.com]
+
</td>
+
<td><pre><nowiki>External links:
+
[http://www.nupedia.com Nupedia],
+
[http://www.nupedia.com]</nowiki></pre>
+
</td>
+
</tr>
+
<tr valign="top"><td>Or just give the URL: http://www.nupedia.com.
+
*In the [[en:URL|URL]] all symbols must be among: A-Z a-z 0-9 ._\/~%-+&amp;#?!=()@ \x80-\xFF. If a URL contains a different character it should be converted; for example, ^ has to be written %5E (to be looked up in [[en:ASCII|ASCII]]). A blank space can also be converted into an underscore.
+
</td>
+
<td><pre><nowiki>Or just give the URL:
+
http://www.nupedia.com.</nowiki></pre>
+
</td>
+
</tr>
+
<tr>
+
<td>
+
To link to books, you can use [[en:ISBN|ISBN]] links.
+
ISBN 0123456789X See [[Help:ISBN links]]
+
</td>
+
<td>
+
<pre><nowiki>ISBN 0123456789X</nowiki></pre>
+
</td>
+
<tr>
+
<td>
+
Link to [[w:Request for Comments|Request for Comments]]: RFC 123 (URL specified in [[mediawiki:Rfcurl]])
+
</td>
+
<td>
+
<pre><nowiki>RFC 123</nowiki></pre>
+
</td>
+
<tr>
+
<td>
+
To include links to non-image uploads such as sounds, use a "media" link.
+
<br/>[[media:Sg_mrob.ogg|Sound]]
+
</td>
+
<td>
+
<pre>
+
<nowiki>
+
[[media:Sg_mrob.ogg|Sound]]
+
</nowiki></pre>
+
</td>
+
</tr>
+
<tr valign=top>
+
<td>Use links for dates, so everyone can set their own display order. Use [[Special:Preferences]] to change your own date display setting.
+
</td>
+
<td><pre><nowiki>[[July 20]], [[1969]] , [[20 July]] [[1969]]
+
and [[1969]]-[[07-20]]
+
</nowiki></pre>will all appear as [[20 July]] [[1969]] if you set your date display preference to 1 January 2001.
+
</td>
+
</tr>
+
</table>
+
 
+
=== Images ===
+
Only images that have been uploaded to Wikipedia can be used. To upload images, use the [[Special:Upload|upload page]]. You can find the uploaded image on the [[Special:Imagelist|image list]].
+
 
+
{| border="1" cellpadding="2" cellspacing="0"
+
|-
+
! What it looks like
+
! What you type
+
|- valign="top"
+
|A picture:
+
[[Image:wipi.png]]
+
|<pre>A picture:
+
<nowiki>[[Image:wipi.png]]</nowiki></pre>
+
 
+
 
+
|- valign="top"
+
|With alternative text:
+
[[Image:wipi.png|coiled whip]]
+
|<pre>With alternative text:
+
<nowiki>[[Image:wipi.png|coiled whip]]</nowiki></pre>
+
* Alternative text, used when a mouse hovers over the image or when the image is not loaded in a text-only browser, or when spoken aloud, is '''strongly''' encouraged. See Wikipedia's [[Wikipedia:Wikipedia:Alternate text for images|Alternate text for images]] for help on choosing it.
+
 
+
 
+
|- valign="top"
+
|Floating to the right side of the page and with a caption:
+
[[Image:wipi.png|frame|Wipipedia Encyclopedia]]<br clear=all>
+
|<pre>Floating to the right side of the page and with a caption:
+
<nowiki>[[Image:wipi.png|frame|Wipipedia Encyclopedia]]</nowiki></pre>
+
* The frame tag automatically floats the image right.
+
* The caption is also used as alternate text.
+
 
+
 
+
|- valign="top"
+
|Floating to the right side of the page ''without'' a caption:
+
[[Image:wipi.png|right|Wikipedia Encyclopedia]]
+
|<pre>Floating to the right side of the page ''without'' a caption:
+
<nowiki>[[Image:wipi.png|right|Wikipedia Encyclopedia]]</nowiki></pre>
+
* The help topic on [[En:Wikipedia:Extended image syntax|Extended image syntax]] explains more options.
+
 
+
 
+
|- valign="top"
+
|Linking directly to the description page of an image:
+
[[:Image:wipi.png]]
+
|<pre>Linking directly to the description page of an image:
+
<nowiki>[[:Image:wipi.png]]</nowiki></pre>
+
* Clicking on an image displayed on a page (such as any of the ones above) also leads to the description page
+
 
+
|- valign="top"
+
|Linking directly to an image without displaying it:
+
[[media:wipi.png|Image of the coiled whip logo]]
+
|<pre>Linking directly to an image without displaying it:
+
<nowiki>[[media:wipi.png|Image of the coiled whip logo]]</nowiki></pre>
+
* To include links to images shown as links instead of drawn on the page, use a "media" link.
+
 
+
|}
+
 
+
See the Wikipedia's [[Wikipedia:Image use policy|image use policy]] as a guideline used on Wipipedia.
+
 
+
For further help on images, including some more versatile abilities, see the topic on [[En:Wikipedia:Extended image syntax|Extended image syntax]].
+
 
+
=== Character formatting ===
+
 
+
<table border="1" cellpadding="2" cellspacing="0">
+
<tr>
+
<th>What it looks like</th>
+
<th>What you type</th>
+
</tr>
+
<tr valign="top"><td>
+
''Emphasize'', '''strongly''', '''''very strongly'''''.
+
*These are double and triple apostrophes, not double quotes.
+
</td>
+
<td>
+
<pre><nowiki>''Emphasize'', '''strongly''',
+
'''''very strongly'''''.</nowiki></pre>
+
</td>
+
</tr>
+
<tr valign="top"><td>
+
You can also write <i>italic</i> and <b>bold</b>
+
if the desired effect is a specific font style
+
rather than emphasis, as in mathematical formulae:
+
:<b>F</b> = <i>m</i><b>a</b>
+
*However, the difference between these two methods is not very important for graphical browsers, and many people choose to ignore it.
+
</td>
+
<td>
+
<pre><nowiki>You can also write <i>italic</i>
+
and <b>bold</b> if the desired effect is a
+
specific font style rather than emphasis, as
+
in mathematical formulas:
+
:<b>F</b> = <i>m</i><b>a</b></nowiki></pre><!-- that's not a mathematical formula, though -- sure it is, just because it's being applied to physics doesn't make it stop being mathematics -->
+
</td>
+
</tr>
+
<tr valign=top>
+
<td>A typewriter font for <tt>technical terms</tt>.
+
</td>
+
<td><pre><nowiki>A typewriter font for
+
<tt>technical terms</tt>.</nowiki></pre>
+
</td><!-- tt is really 'teletype', not 'technical term' -->
+
</tr>
+
<tr valign=top>
+
<td>You can use <small>small text</small> for captions.
+
</td>
+
<td><pre><nowiki>You can use <small>small text</small>
+
for captions.</nowiki></pre>
+
</td>
+
</tr>
+
<tr valign="top"><td>You can <strike>strike out deleted material</strike>
+
and <u>underline new material</u>.
+
</td>
+
<td><pre><nowiki>You can <strike>strike out deleted material</strike>
+
and <u>underline new material</u>.</nowiki></pre>
+
</td>
+
</tr>
+
<tr valign="top">
+
<td>
+
'''Umlauts and accents:''' (See [[MediaWiki User's Guide: Creating special characters]])<br/>
+
è é ê ë ì í<br/>
+
<br/>
+
&Agrave; &Aacute; &Acirc; &Atilde; &Auml; &Aring; <br/>
+
&AElig; &Ccedil; &Egrave; &Eacute; &Ecirc; &Euml; <br/>
+
&Igrave; &Iacute;
+
&Icirc; &Iuml; &Ntilde; &Ograve; <br/>
+
&Oacute; &Ocirc; &Otilde;
+
&Ouml; &Oslash; &Ugrave; <br/>
+
&Uacute; &Ucirc; &Uuml; &szlig;
+
&agrave; &aacute; <br/>
+
&acirc; &atilde; &auml; &aring; &aelig;
+
&ccedil; <br/>
+
&egrave; &eacute; &ecirc; &euml; &igrave; &iacute;<br/>
+
&icirc; &iuml; &ntilde; &ograve; &oacute; &ocirc; <br/>
+
&oelig; &otilde;
+
&ouml; &oslash; &ugrave; &uacute; <br/>
+
&ucirc; &uuml; &yuml;
+
</td>
+
<td><pre><nowiki>
+
 
+
è é ê ë ì í
+
 
+
&amp;Agrave; &amp;Aacute; &amp;Acirc; &amp;Atilde; &amp;Auml; &amp;Aring;
+
&amp;AElig; &amp;Ccedil; &amp;Egrave; &amp;Eacute; &amp;Ecirc; &amp;Euml;
+
&amp;Igrave; &amp;Iacute; &amp;Icirc; &amp;Iuml; &amp;Ntilde; &amp;Ograve;
+
&amp;Oacute; &amp;Ocirc; &amp;Otilde; &amp;Ouml; &amp;Oslash; &amp;Ugrave;
+
&amp;Uacute; &amp;Ucirc; &amp;Uuml; &amp;szlig; &amp;agrave; &amp;aacute;
+
&amp;acirc; &amp;atilde; &amp;auml; &amp;aring; &amp;aelig; &amp;ccedil;
+
&amp;egrave; &amp;eacute; &amp;ecirc; &amp;euml; &amp;igrave; &amp;iacute;
+
&amp;icirc; &amp;iuml; &amp;ntilde; &amp;ograve; &amp;oacute; &amp;ocirc;
+
&amp;oelig; &amp;otilde; &amp;ouml; &amp;oslash; &amp;ugrave; &amp;uacute;
+
&amp;ucirc; &amp;uuml; &amp;yuml;</nowiki></pre></td>
+
</tr>
+
<tr valign=top>
+
<td>
+
'''Punctuation:'''<br/>
+
&iquest; &iexcl; &laquo; &raquo; &sect; &para;<br/>
+
&dagger; &Dagger; &bull; - &ndash; &mdash;
+
</td>
+
<td><pre><nowiki>
+
&amp;iquest; &amp;iexcl; &amp;laquo; &amp;raquo; &amp;sect; &amp;para;
+
&amp;dagger; &amp;Dagger; &amp;bull; - &amp;ndash; &amp;mdash;</nowiki></pre></td>
+
</tr>
+
<tr valign="top">
+
<td>
+
'''Commercial symbols:'''<br/>
+
&trade; &copy; &reg; &cent; &euro; &yen; <br/>
+
&pound; &curren;</td>
+
<td><pre><nowiki>
+
&amp;trade; &amp;copy; &amp;reg; &amp;cent; &amp;euro; &amp;yen;
+
&amp;pound; &amp;curren;
+
</nowiki></pre></td>
+
</tr>
+
<tr valign="top" id="subscript"><td>Subscript: x<sub>2</sub><br/>
+
Superscript: x<sup>2</sup> or x&sup2;
+
 
+
*The latter method of superscript can't be used in the most general context, but is preferred when possible (as with units of measurement) because most browsers have an easier time formatting lines with it.
+
&epsilon;<sub>0</sub> =
+
8.85 &times; 10<sup>&minus;12</sup>
+
C&sup2; / J m.
+
<br/>
+
<br/>
+
1 [[hectare]] = [[1 E4 m²]]
+
</td>
+
<td><pre><nowiki>Subscript: x<sub>2</sub>
+
Superscript: x<sup>2</sup> or x&amp;sup2;
+
 
+
or in projects with the templates sub and sup:
+
 
+
Subscript: x{{sub|2}}
+
Superscript: x{{sup|2}}
+
 
+
&amp;epsilon;<sub>0</sub> =
+
8.85 &amp;times; 10<sup>&amp;minus;12</sup>
+
C&amp;sup2; / J m.
+
 
+
1 [[hectare]] = [[1 E4 m²]]
+
</nowiki></pre></td>
+
</tr>
+
<tr valign="top"><td>'''Greek characters:''' <br/>
+
&alpha; &beta; &gamma; &delta; &epsilon; &zeta; <br/>
+
&eta; &theta; &iota; &kappa; &lambda; &mu; &nu; <br/>
+
&xi; &omicron; &pi; &rho;  &sigma; &sigmaf; <br/>
+
&tau; &upsilon; &phi; &chi; &psi; &omega;<br/>
+
&Gamma; &Delta; &Theta; &Lambda; &Xi; &Pi; <br/>
+
&Sigma; &Phi; &Psi; &Omega;
+
</td>
+
<td><pre><nowiki>
+
&amp;alpha; &amp;beta; &amp;gamma; &amp;delta; &amp;epsilon; &amp;zeta;
+
&amp;eta; &amp;theta; &amp;iota; &amp;kappa; &amp;lambda; &amp;mu; &amp;nu;
+
&amp;xi; &amp;omicron; &amp;pi; &amp;rho;  &amp;sigma; &amp;sigmaf;
+
&amp;tau; &amp;upsilon; &amp;phi; &amp;chi; &amp;psi; &amp;omega;
+
&amp;Gamma; &amp;Delta; &amp;Theta; &amp;Lambda; &amp;Xi; &amp;Pi;
+
&amp;Sigma; &amp;Phi; &amp;Psi; &amp;Omega;
+
</nowiki></pre></td>
+
</tr>
+
<tr valign="top">
+
<td>
+
'''Math characters:''' <br/>
+
&int; &sum; &prod; &radic; &minus; &plusmn; &infin;<br/>
+
&asymp; &prop; &equiv; &ne; &le; &ge;<br/>
+
&times; &middot; &divide; &part; &prime; &Prime;<br/>
+
&nabla; &permil; &deg; &there4; &alefsym; &oslash;<br/>
+
&isin; &notin; &cap; &cup; &sub; &sup; &sube; &supe;<br/>
+
&not; &and; &or; &exist; &forall; &rArr; &hArr;<br/>
+
&rarr; &harr; &uarr;<br/>
+
</td>
+
<td valign="middle"><pre><nowiki>
+
&amp;int; &amp;sum; &amp;prod; &amp;radic; &amp;minus; &amp;plusmn; &amp;infin;
+
&amp;asymp; &amp;prop; &amp;equiv; &amp;ne; &amp;le; &amp;ge;
+
&amp;times; &amp;middot; &amp;divide; &amp;part; &amp;prime; &amp;Prime;
+
&amp;nabla; &amp;permil; &amp;deg; &amp;there4; &amp;alefsym; &amp;oslash;
+
&amp;isin; &amp;notin; &amp;cap; &amp;cup; &amp;sub; &amp;sup; &amp;sube; &amp;supe;
+
&amp;not; &amp;and; &amp;or; &amp;exist; &amp;forall; &amp;rArr; &amp;hArr;
+
&amp;rarr; &amp;harr; &amp;uarr;
+
</nowiki></pre></td>
+
</tr>
+
<tr valign="top"><td><i>x</i><sup>2</sup>&nbsp;&nbsp;&nbsp;&ge;&nbsp;&nbsp;&nbsp;0 true.
+
*To space things out, use non-breaking spaces - <tt>&amp;nbsp;</tt>.
+
*<tt>&amp;nbsp;</tt> also prevents line breaks in the middle of text, this is useful in formulas.
+
</td>
+
<td><pre><nowiki>
+
<i>x</i><sup>2</sup>&amp;nbsp;&amp;nbsp;&amp;ge;&amp;nbsp;&amp;nbsp;0 true.
+
</nowiki></pre></td>
+
</tr>
+
<tr>
+
<td>
+
'''Complicated formulae:'''<br/>
+
&nbsp;&nbsp;<math>\sum_{n=0}^\infty \frac{x^n}{n!}</math>
+
* See [[MediaWiki User's Guide: Editing mathematical formulae:TeX markup|TeX markup]]
+
</td>
+
<td><pre><nowiki>
+
<math>\sum_{n=0}^\infty \frac{x^n}{n!}</math>
+
</nowiki></pre>
+
</td>
+
</tr>
+
<tr>
+
<td>
+
'''For comparison for the following examples:'''
+
 
+
arrow      &rarr;
+
 
+
''italics''
+
[[link]]
+
</td>
+
<td valign="bottom">
+
<pre><nowiki>arrow      &amp;rarr;
+
 
+
''italics''
+
[[link]]</nowiki></pre>
+
</td>
+
</tr>
+
<tr>
+
<td>
+
'''Use &lt;nowiki> to suppress interpretation of wiki markup, but interpret character references and remove newlines and multiple spaces:'''
+
 
+
<nowiki>arrow      &rarr;
+
 
+
''italics''
+
[[link]]
+
</nowiki>
+
</td>
+
<td valign="bottom">
+
<pre><nowiki><nowiki>arrow      &amp;rarr;
+
 
+
''italics''
+
[[link]]</nowiki></nowiki></pre>
+
 
+
</td>
+
</tr>
+
<tr>
+
<td>
+
'''Use &lt;pre> to suppress interpretation of wiki markup and keep newlines and multiple spaces, and get typewriter font, but interpret character references:'''
+
 
+
<pre>arrow      &rarr;
+
 
+
''italics''
+
[[link]]
+
</pre>
+
</td>
+
<td valign="bottom">
+
<pre><nowiki><pre>arrow      &amp;rarr;
+
 
+
''italics''
+
[[link]]</pre></nowiki></pre>
+
</td>
+
</tr>
+
<tr>
+
<td>
+
'''Use leading space on each line to keep newlines and multiple spaces, and get typewriter font:
+
arrow      &rarr;
+
 
+
''italics''
+
[[link]]
+
</pre>
+
</td>
+
<td valign="bottom">
+
<pre> <nowiki>arrow      &amp;rarr;
+
 
+
''italics''
+
[[link]]</nowiki></pre>
+
</td>
+
</tr>
+
<tr>
+
<td>
+
'''Use typewriter font:'''
+
 
+
<tt>arrow      &rarr;</tt>
+
 
+
<tt>''italics''</tt>
+
<tt>[[link]]</tt>
+
 
+
</td>
+
<td valign="bottom">
+
<pre><nowiki><tt>arrow      &amp;rarr;</tt>
+
 
+
<tt>''italics''</tt>
+
<tt>[[link]]</nowiki></tt></pre>
+
</td>
+
</tr>
+
<tr>
+
<td>
+
'''Show character references:'''
+
 
+
&amp;rarr;
+
</td>
+
<td valign="bottom">
+
&amp;amp;rarr;</pre>
+
</td>
+
</tr>
+
<tr>
+
<td>
+
'''Commenting page source:'''<br/>
+
''not shown in page''
+
* Used to leave comments in a page for future editors.
+
</td>
+
<td>
+
<pre><nowiki><!-- comment here --></nowiki></pre>
+
</td>
+
</tr>
+
</table>
+
 
+
=== HTML Tables ===
+
 
+
[[en:HTML|HTML]] tables can be quite useful as well. For details on how to use them and discussion about when they are appropriate, see [[m:Help:Table]].
+
 
+
==Templates==
+
 
+
Some part of a page may correspond in the edit box to just a reference to another page, in the form <nowiki>{{</nowiki>''name''<nowiki>}}</nowiki>, referring to the page "Template:''name''" (or if the name starts with a namespace prefix, it refers to the page with that name; if it starts with a colon it refers to the page in the main namespace with that name without the colon). This is called a [[help:template|template]]. For changing that part of the page, edit that other page. Sometimes a separate edit link is provided for this purpose. A convenient way to put such a link in a template is with a template like [[m:Template:ed]]. Note that the change also affects other pages which use the same template.
+
 
+
==Page protection==
+
 
+
In a few cases the link labeled "{{MediaWiki:Editthispage}}" is replaced by the text "{{MediaWiki:Protectedpage}}" (or equivalents in the language of the project). In that case the page cannot be edited.
+
 
+
==Position-independent wikitext==
+
 
+
Wikitext for which the result does not depend on the position in the wikitext page:
+
 
+
*[[interlanguage link]]s (see also above) - the mutual order is preserved, but otherwise the positions within the page are immaterial
+
*[[category]] specification - ditto
+
*<nowiki>__NOTOC__, __FORCETOC__</nowiki>, see [[Help:Section]]
+
 
+
==Separating edits==
+
 
+
When moving or copying a piece of text within a page or from another page, and also making other edits, it is useful to separate these edits. This way the [[Help:Diff|diff function]] can be usefully applied for checking these other edits.
+
 
+
==See also==
+
 
+
*[[Help:Automatic conversion of wikitext]]
+
*[[Help:Calculation]]
+
*[[Help:Editing toolbar]]
+
*[[Help:Html in wikitext]]
+
*[[Help:Administration#Page_protection| Protecting pages]]
+
*[[Help:Starting a new page]]
+
*[[Help:Variable]]
+
*[[Parser testing]]
+
*[[en:UseModWiki|UseModWiki]] and [[en:Wikipedia:PHP script|Wikipedia:PHP script]].
+
*[[en:HTML tag|HTML tag]].
+
 
+
==External links==
+
*[http://home.earthlink.net/~awinkelried/keyboard_shortcuts.html Special characters in HTML]
+
 
+
[[Category:Other Topics]]
+

Latest revision as of 18:16, 26 October 2013

See editing help on Wikipedia

Personal tools
Namespaces

Variants
Actions
Navigation
Tools