Toolbox: Difference between revisions

From KDE TechBase
(Created page with "<languages /> <translate> {{Info|This page offers examples of formatting code for common tasks}} == Format Your Text == === Use Headings === Headings automatically form par...")
 
(Adjust to modified template)
(7 intermediate revisions by 4 users not shown)
Line 2: Line 2:
<translate>
<translate>


<!--T:1-->
{{Info|This page offers examples of formatting code for common tasks}}
{{Info|This page offers examples of formatting code for common tasks}}


== Format Your Text ==  
== Format Your Text == <!--T:2-->


=== Use Headings ===  
=== Use Headings === <!--T:3-->


Headings automatically form part of your Table of Contents, so need to be structured.  Their place in the tree is governed by multiple '=' characters at each end of the heading.  Avoid using a single one - that denotes a page heading, and the automatic page heading should be used.  Your major headings will use '==text goes here==', the next level, '===more text===' and so on.
<!--T:4-->
Headings automatically form part of your Table of Contents, so need to be structured.  Their place in the tree is governed by multiple '=' characters at each end of the heading.  Avoid using a single one - that denotes a page heading, and the automatic page heading should be used.  Your major headings will use '== text goes here ==', the next level, '=== more text ===' and so on.


=== Use '''bold''' and ''italic'' ===  
=== Use '''bold''' and ''italic'' === <!--T:5-->


<!--T:6-->
Blips are used to specify bold and italic words.
Blips are used to specify bold and italic words.


<!--T:7-->
Use <nowiki>'''bold text'''</nowiki> to specify '''bold text''' and
Use <nowiki>'''bold text'''</nowiki> to specify '''bold text''' and
<nowiki>''italic text''</nowiki> to specify ''italic text''.
<nowiki>''italic text''</nowiki> to specify ''italic text''.


<!--T:8-->
In order to ensure we get easy and accurate translations, please adhere to the ''[[Special:myLanguage/Typographical_Guidelines|typographical guidelines]].''
In order to ensure we get easy and accurate translations, please adhere to the ''[[Special:myLanguage/Typographical_Guidelines|typographical guidelines]].''


=== Add a Code Snippet ===  
=== Add a Code Snippet === <!--T:9-->


<!--T:10-->
We have templates to assist in correctly displaying code snippets.  Examples of use in various situations are available on [[Special:myLanguage/Typographical_Guidelines|the typographical guideline page]].  Code for the various box templates can be taken from [[User:Annewilson/Boxes|this page]].


We have templates to assist in correctly displaying code snippets.  Examples of use in various situations are available on [[Special:myLanguage/Typographical_Guidelines|the typographical guideline page]]
<!--T:11-->
If you have problems displaying pipe characters in your code snippet, please see the explanation and markup detailed on [[Special:myLanguage/Typographical_Guidelines|Typographical Guidelines]


If you have problems displaying pipe characters in your code snippet, please see the explanation and markup detailed on [[Special:myLanguage/Typographical_Guidelines|Typographical Guidelines]]
=== Add Indents === <!--T:12-->
 
=== Add Indents ===  


<!--T:13-->
:"''':'''" is used for an indent, and was used in multiples in some old pages.  This is deprecated, and causes some problems, so the multiples will be removed as they are found.  A single "''':'''" indents by four characters.
:"''':'''" is used for an indent, and was used in multiples in some old pages.  This is deprecated, and causes some problems, so the multiples will be removed as they are found.  A single "''':'''" indents by four characters.


=== Format Dates ===  
=== Format Dates === <!--T:14-->


<!--T:15-->
Dates in a purely numerical format cause confusion, due to differences in expectations of geographical zones.  Please format dates as {{Input|1=<nowiki>18 Mar 2011</nowiki>}} with the month either spelled out completely or in abbreviated form, and the year in 4-digit format.  The day may be single or double-digit.
Dates in a purely numerical format cause confusion, due to differences in expectations of geographical zones.  Please format dates as {{Input|1=<nowiki>18 Mar 2011</nowiki>}} with the month either spelled out completely or in abbreviated form, and the year in 4-digit format.  The day may be single or double-digit.
</translate><span id="Bulleted Lists"></span><translate>
</translate><span id="Bulleted Lists"></span><translate>


=== Bulleted Lists ===  
=== Bulleted Lists === <!--T:16-->


<!--T:17-->
<nowiki>*</nowiki> is the symbol to use for bulletted lists.  ** gives a second level:<br />
<nowiki>*</nowiki> is the symbol to use for bulletted lists.  ** gives a second level:<br />


<!--T:18-->
<!--}}-->{{Input|1=<nowiki>
<!--}}-->{{Input|1=<nowiki>
* Almonds
* Almonds


<!--T:19-->
* Nuts
* Nuts
** Cashews
** Cashews


<!--T:20-->
* Raisins
* Raisins
</nowiki>}}<!--{{-->
</nowiki>}}<!--{{-->
produces
produces


<!--T:21-->
* Almonds
* Almonds


<!--T:22-->
* Nuts
* Nuts
** Cashews
** Cashews


<!--T:23-->
* Raisins
* Raisins


=== Enumerations ===  
=== Enumerations === <!--T:24-->


<!--T:25-->
Enumerations are produced in the same way, using '#'.
Enumerations are produced in the same way, using '#'.


<!--T:26-->
{{Input|1=<nowiki>
{{Input|1=<nowiki>
# Sift
# Sift
Line 67: Line 84:
</nowiki>}}
</nowiki>}}


<!--T:27-->
produces
produces


<!--T:28-->
# Sift
# Sift
# Mix
# Mix
Line 74: Line 93:
# Bake
# Bake


=== Combining Bulleted Lists and Enumerations ===  
=== Combining Bulleted Lists and Enumerations === <!--T:29-->


<!--T:30-->
You can have an enumerated sublist in a bulleted list and vice versa, like this:
You can have an enumerated sublist in a bulleted list and vice versa, like this:


<!--T:31-->
{{Input|1=<nowiki>
{{Input|1=<nowiki>
* Nuts
* Nuts
Line 85: Line 106:
</nowiki>}}
</nowiki>}}


<!--T:32-->
produces
produces


<!--T:33-->
* Nuts
* Nuts
*# Cashew
*# Cashew
Line 92: Line 115:
* Other things
* Other things


<!--T:34-->
while
while


<!--T:35-->
{{Input|1=<nowiki>
{{Input|1=<nowiki>
# Nuts
# Nuts
Line 101: Line 126:
</nowiki>}}
</nowiki>}}


<!--T:36-->
produces
produces


<!--T:37-->
# Nuts
# Nuts
#* Cashew
#* Cashew
Line 108: Line 135:
# Other things
# Other things


<!--T:38-->
{{Note|1=Enumerations should never have blank lines in them: it breaks the sequence and numbering starts at one again. Similarly, there should never be blank lines before a sublist item whether enumerated or bulleted: it creates two levels of item markings (bullets or numbers)}}
{{Note|1=Enumerations should never have blank lines in them: it breaks the sequence and numbering starts at one again. Similarly, there should never be blank lines before a sublist item whether enumerated or bulleted: it creates two levels of item markings (bullets or numbers)}}


<!--T:39-->
{{Note|1=Please remember, that long lists are a problem for translators. With single level bulleted lists, place each bullet in a section of its own, i.e. make a blank line between bullets. With two levels of bullets the subitems must be kept in the same section as their top level bullet; if you have to use subbullets, please keep the sublists short! With enumerations involved, you must keep everything in one unit. Please try to avoid enumerations, and if you find that you must use them try to keep them short.}}
{{Note|1=Please remember, that long lists are a problem for translators. With single level bulleted lists, place each bullet in a section of its own, i.e. make a blank line between bullets. With two levels of bullets the subitems must be kept in the same section as their top level bullet; if you have to use subbullets, please keep the sublists short! With enumerations involved, you must keep everything in one unit. Please try to avoid enumerations, and if you find that you must use them try to keep them short.}}


=== Itemizations ===  
=== Itemizations === <!--T:40-->


<!--T:41-->
Itemizations are produced using ''';''' and ''':''' alternately.  They are best for giving short descriptions for a group of related objects.
Itemizations are produced using ''';''' and ''':''' alternately.  They are best for giving short descriptions for a group of related objects.




<!--T:42-->
<!--}}-->{{Input|1=<nowiki>
<!--}}-->{{Input|1=<nowiki>
;Animals
;Animals
: They move around and devour other creatures.
: They move around and devour other creatures.


<!--T:43-->
;Plants
;Plants
: They have roots and feed upon ground water and sun.
: They have roots and feed upon ground water and sun.
Line 126: Line 158:
produces
produces


<!--T:44-->
;Animals
;Animals
: They move around and devour other creatures.
: They move around and devour other creatures.


<!--T:45-->
;Plants
;Plants
: They have roots and feed upon ground water and sun.
: They have roots and feed upon ground water and sun.


<!--T:46-->
{{Note|1=As allways, please keep each item in a section of its own; it helps translators a lot.}}
{{Note|1=As allways, please keep each item in a section of its own; it helps translators a lot.}}


===Add a Link===  
===Add a Link=== <!--T:47-->


There are two kinds of links to learn, internal ones, to another userbase page, and external URL links.
<!--T:48-->
There are two kinds of links to learn, internal ones, to another TechBase page, and external URL links.


<!--T:49-->
For an internal link the format <nowiki>[[Typographical_Guidelines]]</nowiki>, where you want to display the name of the page, does work, but it is not ideal, particularly for translation to docbook and for localisation.  It is better to use the form <nowiki>[[Special:myLanguage/Typographical_Guidelines|Typographical Guidelines]]</nowiki>, because that allows translators to link correctly even though the page name is localised.  The result is that it directs to the correctly translated page, if one exists. You often need to include the link in a sentence, so in that case you would use  
For an internal link the format <nowiki>[[Typographical_Guidelines]]</nowiki>, where you want to display the name of the page, does work, but it is not ideal, particularly for translation to docbook and for localisation.  It is better to use the form <nowiki>[[Special:myLanguage/Typographical_Guidelines|Typographical Guidelines]]</nowiki>, because that allows translators to link correctly even though the page name is localised.  The result is that it directs to the correctly translated page, if one exists. You often need to include the link in a sentence, so in that case you would use  


<!--T:50-->
{{Input|1=<nowiki>[[Special:myLanguage/Typographical_Guidelines|this page]]</nowiki>}} which displays  
{{Input|1=<nowiki>[[Special:myLanguage/Typographical_Guidelines|this page]]</nowiki>}} which displays  
[[Special:myLanguage/Typographical_Guidelines|this page]]
[[Special:myLanguage/Typographical_Guidelines|this page]]


<!--T:51-->
External links are slightly different so
External links are slightly different so


<!--T:52-->
{{Input|1=<nowiki>[http://techbase.kde.org/Schedules our road map]</nowiki>}} displays  
{{Input|1=<nowiki>[http://techbase.kde.org/Schedules our road map]</nowiki>}} displays  
[http://techbase.kde.org/Schedules our road map], which would take you straight to the techbase page.
[http://techbase.kde.org/Schedules our road map], which would take you straight to the techbase page.


<!--T:53-->
One last thing to note - when you preview your page, all links are live.  This gives you two benefits. You can check (by hovering) that your links are set up as you expected, and you can use a red link to create a new page.
One last thing to note - when you preview your page, all links are live.  This gives you two benefits. You can check (by hovering) that your links are set up as you expected, and you can use a red link to create a new page.


== Illustrate Your Text ==  
== Illustrate Your Text == <!--T:54-->


=== Add a single image, centered ===  
=== Add a single image, centered === <!--T:55-->




<!--T:56-->
{{Input|1=<nowiki>[[Image:KMail-kde4.png|250px|center]]</nowiki>}}
{{Input|1=<nowiki>[[Image:KMail-kde4.png|250px|center]]</nowiki>}}


<!--T:57-->
Note that you can change the position of the image, but the default is left.  The size of the image depends on the circumstances, but for screenshots I recommend no less than 250px and no more than 500px.
Note that you can change the position of the image, but the default is left.  The size of the image depends on the circumstances, but for screenshots I recommend no less than 250px and no more than 500px.


=== Make the Image Clickable, and Add a Caption ===  
=== Make the Image Clickable, and Add a Caption === <!--T:58-->


<!--T:59-->
Where you need to show more detail, create a moderately sized image, clickable, so that the full-size can be seen.  Simply add the parameter '|thumb' within the image parentheses.
Where you need to show more detail, create a moderately sized image, clickable, so that the full-size can be seen.  Simply add the parameter '|thumb' within the image parentheses.


<!--T:60-->
A caption can also be added as a parameter, but will only show if '|thumb' is present.
A caption can also be added as a parameter, but will only show if '|thumb' is present.


=== Use Tables to Precisely Place Multiple Images ===  
=== Use Tables to Precisely Place Multiple Images === <!--T:61-->


<!--T:62-->
{{Input|1=<nowiki>{|class="tablecenter" style="border: 1px solid grey;"
{{Input|1=<nowiki>{|class="tablecenter" style="border: 1px solid grey;"
|[[Image:Desktop-config-customized.png|230px|center]]||[[Image:Desktop-settings-rightclick.png|230px|center]]
|[[Image:Desktop-config-customized.png|230px|center]]||[[Image:Desktop-settings-rightclick.png|230px|center]]
Line 173: Line 219:
|}</nowiki>}}
|}</nowiki>}}


<!--T:63-->
displays
displays


<!--T:64-->
{|class="tablecenter" style="border: 1px solid grey;"
{|class="tablecenter" style="border: 1px solid grey;"
|[[Image:Desktop-config-customized.png|230px|center]]||[[Image:Desktop-settings-rightclick.png|230px|center]]
|[[Image:Desktop-config-customized.png|230px|center]]||[[Image:Desktop-settings-rightclick.png|230px|center]]
Line 183: Line 231:




<!--T:65-->
Note that all the parameters for one image are contained within <nowiki>[[...]]</nowiki>, and cells are separated by '||'.  To start a new line, insert '|-' on an otherwise-empty line, then '|' at the start of the next one.
Note that all the parameters for one image are contained within <nowiki>[[...]]</nowiki>, and cells are separated by '||'.  To start a new line, insert '|-' on an otherwise-empty line, then '|' at the start of the next one.


==Add Notes and Warnings== <!--T:69-->  
==Add Notes and Warnings== <!--T:94-->


<!--T:66-->
Where a note or warning is relevant within your text, use these templates:
Where a note or warning is relevant within your text, use these templates:


<!--T:67-->
<nowiki>{{Info|This is general information}}</nowiki> displays
<nowiki>{{Info|This is general information}}</nowiki> displays
{{Info|This is general information}}
{{Info|This is general information}}


<!--T:68-->
<nowiki>{{Note|Some important information at this point}}</nowiki> displays
<nowiki>{{Note|Some important information at this point}}</nowiki> displays
{{Note|Some important information at this point}}
{{Note|Some important information at this point}}


<!--T:95-->
<nowiki>{{Tip|A helpful piece of advice, something to remember}}</nowiki>displays
<nowiki>{{Tip|A helpful piece of advice, something to remember}}</nowiki>displays
{{Tip|A helpful piece of advice, something to remember}}
{{Tip|A helpful piece of advice, something to remember}}


<!--T:70-->
<nowiki>{{Warning|Take care - this is a dangerous thing to do}}</nowiki> displays
<nowiki>{{Warning|Take care - this is a dangerous thing to do}}</nowiki> displays
{{Warning|Take care - this is a dangerous thing to do}}
{{Warning|Take care - this is a dangerous thing to do}}


<!--T:71-->
Where the strongest possible warning is needed, the Remember box can be used, but please use sparingly.
Where the strongest possible warning is needed, the Remember box can be used, but please use sparingly.
<nowiki>{{Remember|1=This is for things that definitely must not be forgotten}}</nowiki>
<nowiki>{{Remember|1=This is for things that definitely must not be forgotten}}</nowiki>
{{Remember|1=This is for things that definitely must not be forgotten}}
{{Remember|1=This is for things that definitely must not be forgotten}}


<!--T:72-->
You can also change the heading:
You can also change the heading:


{{Remember|3=Don't Forget This!|1=You can use parameter number 3 to set an individual box heading:
<!--T:73-->
{{Input|1=<nowiki>{{Remember|3=Don't Forget This!|1=You can use...}}</nowiki>}}}}
{{Remember|2=Don't Forget This!|1=You can use parameter number 2 to set an individual box heading:
{{Input|1=<nowiki>{{Remember|2=Don't Forget This!|1=You can use...}}</nowiki>}}}}


== Other Useful Templates ==  
== Other Useful Templates == <!--T:74-->


=== Inserting GUI Icons ===  
=== Inserting GUI Icons === <!--T:75-->


<!--T:76-->
The best way to refer to icons in the GUI is to display it in the text. This can be done with a template like this: <code><nowiki>{{Icon|list-add}}</nowiki></code>. This will display the {{Icon|list-add}} icon.
The best way to refer to icons in the GUI is to display it in the text. This can be done with a template like this: <code><nowiki>{{Icon|list-add}}</nowiki></code>. This will display the {{Icon|list-add}} icon.


<!--T:77-->
For this to work, the icon image must have been uploaded to the wiki. See [[Special:myLanguage/Update_an_Image|Update an Image]] for an explanation on how to upload images. The .png files can usually be found here: <tt>usr/share/icons/oxygen</tt>. If possible use the 16x16 icon. The file name should have an <tt>Icon-</tt> prefix as in <tt>Icon-list-add.png</tt> &mdash; apart from the prefix the filename should exactly match the usual name. Note, that when using the template you should neither write the <tt>Icon-</tt> prefix nor the <tt>.png</tt> file type extension.
For this to work, the icon image must have been uploaded to the wiki. See [[Special:myLanguage/Update_an_Image|Update an Image]] for an explanation on how to upload images. The .png files can usually be found here: <tt>usr/share/icons/oxygen</tt>. If possible use the 16x16 icon. The file name should have an <tt>Icon-</tt> prefix as in <tt>Icon-list-add.png</tt> &mdash; apart from the prefix the filename should exactly match the usual name. Note, that when using the template you should neither write the <tt>Icon-</tt> prefix nor the <tt>.png</tt> file type extension.


<!--T:78-->
The {{Plus}} icon can also be written as <code><nowiki>{{Plus}}</nowiki></code>, and the {{Minus}} icon as <code><nowiki>{{Minus}}</nowiki></code>. You can also use <code><nowiki>{{Configure}}</nowiki></code> to get the {{Configure}} icon, and <code><nowiki>{{Exit}}</nowiki></code> gets you the {{Exit}} icon.
The {{Plus}} icon can also be written as <code><nowiki>{{Plus}}</nowiki></code>, and the {{Minus}} icon as <code><nowiki>{{Minus}}</nowiki></code>. You can also use <code><nowiki>{{Configure}}</nowiki></code> to get the {{Configure}} icon, and <code><nowiki>{{Exit}}</nowiki></code> gets you the {{Exit}} icon.


=== Making Major Edits to Existing Pages ===  
=== Making Major Edits to Existing Pages === <!--T:79-->


<!--T:80-->
If a page is likely to be open for editing for some time there is a danger of conflicts - someone else may edit at the same time, and saving your edit will cancel out theirs, or vice versa.  The way to avoid that is to make a temporary entry, directly under the language bar, using <nowiki>{{Being_Edited}}</nowiki> which will display
If a page is likely to be open for editing for some time there is a danger of conflicts - someone else may edit at the same time, and saving your edit will cancel out theirs, or vice versa.  The way to avoid that is to make a temporary entry, directly under the language bar, using <nowiki>{{Being_Edited}}</nowiki> which will display


<!--T:81-->
{{Being_Edited}}
{{Being_Edited}}


<!--T:82-->
''Don't forget to remove it when you have finished!''
''Don't forget to remove it when you have finished!''


=== Adding a New Complex Page ===  
=== Adding a New Complex Page === <!--T:83-->


<!--T:84-->
If you need to be able to work on a page for quite some time, over several days, for instance, you may like to use the Construction template - <nowiki>{{Construction}}</nowiki>, which displays
If you need to be able to work on a page for quite some time, over several days, for instance, you may like to use the Construction template - <nowiki>{{Construction}}</nowiki>, which displays


<!--T:85-->
{{Construction}}
{{Construction}}


== Adding a List of Sub-Pages ==  
== Adding a List of Sub-Pages == <!--T:86-->


<!--T:87-->
{{Input|1=<nowiki>== Subpages of {{FULLPAGENAME}} ==
{{Input|1=<nowiki>== Subpages of {{FULLPAGENAME}} ==
{{Special:PrefixIndex/{{FULLPAGENAME}}/}}</nowiki>}}
{{Special:PrefixIndex/{{FULLPAGENAME}}/}}</nowiki>}}


<!--T:88-->
is very useful when you want to list subpages with active links, such as  
is very useful when you want to list subpages with active links, such as  


=== Subpages of {{FULLPAGENAME}}===  
=== Subpages of {{FULLPAGENAME}}=== <!--T:89-->


<!--T:90-->
It does, however, also list all "other-language" pages, so use with discretion.
It does, however, also list all "other-language" pages, so use with discretion.


<!--T:91-->
{{Special:PrefixIndex/{{FULLPAGENAME}}/}}
{{Special:PrefixIndex/{{FULLPAGENAME}}/}}




<!--T:92-->
----
----






[[Category:Contributing]]
<!--T:93-->
[[Category:Translator_Help]]
</translate>
</translate>

Revision as of 16:39, 27 August 2012

Information
This page offers examples of formatting code for common tasks


Format Your Text

Use Headings

Headings automatically form part of your Table of Contents, so need to be structured. Their place in the tree is governed by multiple '=' characters at each end of the heading. Avoid using a single one - that denotes a page heading, and the automatic page heading should be used. Your major headings will use '== text goes here ==', the next level, '=== more text ===' and so on.

Use bold and italic

Blips are used to specify bold and italic words.

Use '''bold text''' to specify bold text and ''italic text'' to specify italic text.

In order to ensure we get easy and accurate translations, please adhere to the typographical guidelines.

Add a Code Snippet

We have templates to assist in correctly displaying code snippets. Examples of use in various situations are available on the typographical guideline page. Code for the various box templates can be taken from this page.

If you have problems displaying pipe characters in your code snippet, please see the explanation and markup detailed on [[Special:myLanguage/Typographical_Guidelines|Typographical Guidelines]

Add Indents

":" is used for an indent, and was used in multiples in some old pages. This is deprecated, and causes some problems, so the multiples will be removed as they are found. A single ":" indents by four characters.

Format Dates

Dates in a purely numerical format cause confusion, due to differences in expectations of geographical zones. Please format dates as

18 Mar 2011

with the month either spelled out completely or in abbreviated form, and the year in 4-digit format. The day may be single or double-digit.

Bulleted Lists

* is the symbol to use for bulletted lists. ** gives a second level:

* Almonds

* Nuts
** Cashews

* Raisins

produces

  • Almonds
  • Nuts
    • Cashews
  • Raisins

Enumerations

Enumerations are produced in the same way, using '#'.

# Sift
# Mix
## Stir thoroughly
# Bake

produces

  1. Sift
  2. Mix
    1. Stir thoroughly
  3. Bake

Combining Bulleted Lists and Enumerations

You can have an enumerated sublist in a bulleted list and vice versa, like this:

* Nuts
*# Cashew
*# Crazy
* Other things

produces

  • Nuts
    1. Cashew
    2. Crazy
  • Other things

while

# Nuts
#* Cashew
#* Crazy
# Other things

produces

  1. Nuts
    • Cashew
    • Crazy
  2. Other things
Note
Enumerations should never have blank lines in them: it breaks the sequence and numbering starts at one again. Similarly, there should never be blank lines before a sublist item whether enumerated or bulleted: it creates two levels of item markings (bullets or numbers)


Note
Please remember, that long lists are a problem for translators. With single level bulleted lists, place each bullet in a section of its own, i.e. make a blank line between bullets. With two levels of bullets the subitems must be kept in the same section as their top level bullet; if you have to use subbullets, please keep the sublists short! With enumerations involved, you must keep everything in one unit. Please try to avoid enumerations, and if you find that you must use them try to keep them short.


Itemizations

Itemizations are produced using ; and : alternately. They are best for giving short descriptions for a group of related objects.


;Animals
: They move around and devour other creatures.

;Plants
: They have roots and feed upon ground water and sun.

produces

Animals
They move around and devour other creatures.
Plants
They have roots and feed upon ground water and sun.
Note
As allways, please keep each item in a section of its own; it helps translators a lot.


Add a Link

There are two kinds of links to learn, internal ones, to another TechBase page, and external URL links.

For an internal link the format [[Typographical_Guidelines]], where you want to display the name of the page, does work, but it is not ideal, particularly for translation to docbook and for localisation. It is better to use the form [[Special:myLanguage/Typographical_Guidelines|Typographical Guidelines]], because that allows translators to link correctly even though the page name is localised. The result is that it directs to the correctly translated page, if one exists. You often need to include the link in a sentence, so in that case you would use

[[Special:myLanguage/Typographical_Guidelines|this page]]

which displays

this page

External links are slightly different so

[http://techbase.kde.org/Schedules our road map]

displays

our road map, which would take you straight to the techbase page.

One last thing to note - when you preview your page, all links are live. This gives you two benefits. You can check (by hovering) that your links are set up as you expected, and you can use a red link to create a new page.

Illustrate Your Text

Add a single image, centered

[[Image:KMail-kde4.png|250px|center]]

Note that you can change the position of the image, but the default is left. The size of the image depends on the circumstances, but for screenshots I recommend no less than 250px and no more than 500px.

Make the Image Clickable, and Add a Caption

Where you need to show more detail, create a moderately sized image, clickable, so that the full-size can be seen. Simply add the parameter '|thumb' within the image parentheses.

A caption can also be added as a parameter, but will only show if '|thumb' is present.

Use Tables to Precisely Place Multiple Images

{|class="tablecenter" style="border: 1px solid grey;"
|[[Image:Desktop-config-customized.png|230px|center]]||[[Image:Desktop-settings-rightclick.png|230px|center]]
|-
|[[Image:Desktop-theme-details-dialog.png|230px|center]]||[[Image:Plasma-multiple-themes.png|230px|center]]
|}

displays


Note that all the parameters for one image are contained within [[...]], and cells are separated by '||'. To start a new line, insert '|-' on an otherwise-empty line, then '|' at the start of the next one.

Add Notes and Warnings

Where a note or warning is relevant within your text, use these templates:

{{Info|This is general information}} displays

Information
This is general information


{{Note|Some important information at this point}} displays

Note
Some important information at this point


{{Tip|A helpful piece of advice, something to remember}}displays

Tip
A helpful piece of advice, something to remember


{{Warning|Take care - this is a dangerous thing to do}} displays

Warning
Take care - this is a dangerous thing to do


Where the strongest possible warning is needed, the Remember box can be used, but please use sparingly. {{Remember|1=This is for things that definitely must not be forgotten}}

 
Remember
This is for things that definitely must not be forgotten


You can also change the heading:

 
Don't Forget This!
You can use parameter number 2 to set an individual box heading:
{{Remember|2=Don't Forget This!|1=You can use...}}


Other Useful Templates

Inserting GUI Icons

The best way to refer to icons in the GUI is to display it in the text. This can be done with a template like this: {{Icon|list-add}}. This will display the icon.

For this to work, the icon image must have been uploaded to the wiki. See Update an Image for an explanation on how to upload images. The .png files can usually be found here: usr/share/icons/oxygen. If possible use the 16x16 icon. The file name should have an Icon- prefix as in Icon-list-add.png — apart from the prefix the filename should exactly match the usual name. Note, that when using the template you should neither write the Icon- prefix nor the .png file type extension.

The icon can also be written as {{Plus}}, and the icon as {{Minus}}. You can also use {{Configure}} to get the icon, and {{Exit}} gets you the icon.

Making Major Edits to Existing Pages

If a page is likely to be open for editing for some time there is a danger of conflicts - someone else may edit at the same time, and saving your edit will cancel out theirs, or vice versa. The way to avoid that is to make a temporary entry, directly under the language bar, using {{Being_Edited}} which will display

 
Currently Being Edited
This page is currently being edited.
If this notice persists for an unreasonable time, please either notify irc.freenode.org #kde-www or report on Annewilson's Talk page.


Don't forget to remove it when you have finished!

Adding a New Complex Page

If you need to be able to work on a page for quite some time, over several days, for instance, you may like to use the Construction template - {{Construction}}, which displays

 
Under Construction
This is a new page, currently under construction!


Adding a List of Sub-Pages

== Subpages of {{FULLPAGENAME}} ==
{{Special:PrefixIndex/{{FULLPAGENAME}}/}}

is very useful when you want to list subpages with active links, such as

Subpages of Toolbox

It does, however, also list all "other-language" pages, so use with discretion.