1,819
个编辑
更改
帮助:高级编辑
,无编辑摘要
{{info|这个页面的内容译自MediaWiki,相关内容可能未创建或需要重定向至希灵帝国设定集相应页面。}}
== 高级编辑(Advanced Editing) — 前言 ==
__NOTOC__
本页来自官方链接 — [http://meta.wikimedia.org/wiki/Help:Advanced_editing Help:Advanced_editing]
现已将官方页面汉化,链接:[http://meta.wikimedia.org/wiki/Help:Advanced_editing/Zh Help:Advanced_editing(中文)](因本WIKI缺乏一些模板,所以显示效果较差,推荐您直接访问官方汉化地址)
*翻译者:--[[User:炽火|小火呼呼]] 01:31, 17 10月 2006 (CST)
*Tips:点击“编辑”,查看规范的书写方式,非常简洁
*参考:[[帮助:使用示例]]
== 标记 — 让你的页面如你所想==
See also [[Help:Editing]].
<!-- This is the part everybody wants, therefore some argue that it should be transcluded and not just linked.-->
*如果你想尝试一下,又不想造成损害,你可以在[[沙盒]]中随意捣鼓。
*更多信息 [[Help:Html in wikitext|HTML tags in wikitext]]
=== 编组书写 — 章节,段落,列表,分行 ===
{| border="1" cellpadding="2" cellspacing="0"
|-
!显示效果
!你的输入
|-
|
;Sections and subsections
起始一个带标题的段落。(其实就是粗体+单行显示)
注意:单等号表示最高等级标题,例如页面标题;一般按照惯例不使用。
<!-- This is the original
= 这样的单等号标题不要用 =
== New section ==
=== Subsection ===
==== Sub-subsection ====
-->
<!-- next set
<h1> DO NOT USE THIS </h1>
<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>
*从二级标题(h2)起 (<tt><nowiki>==</nowiki></tt>); 不要使用一级(=).
*不要跳级 (例如,二级后面接四级).
*如果包含4个以上的部分(Section),会被自动添加一个 [[#Table of contents|目录]]。
*尽可能将子目按顺序排列。例如国家列表,按字母排序远胜于按照人口经济,或者乱序。
*如果你不想要标题的TOC,就必须使用HTML标签,并且不可用反斜杠结尾。例如:<br /><nowiki><h4>heading too low level to be in the toc of large page<h4></nowiki>.
|<pre><nowiki>
;Sections and subsections
起始一个带标题的段落。
== New section ==
=== Subsection ===
==== Sub-subsection ====
</nowiki></pre>
|-
|
;[[w:newline|Newline]]:
一个
单独的
换行
显示时
没有
效果。
但是一个空行
会开始一个新的段落,
或者结束一个列表或者缩进。
(<nowiki><p></nowiki> 符号会禁用这个分段的能力,直到结尾符号 <nowiki></p></nowiki> 或者段落(Section)结束)
(在 Cologne Blue 中,两个新行和一个'div'标签只能得到一个换行;如果顺序 换行->DIV->换行 ,结果是两个新行)
行首的分号不会被显示,但是会有换行效果。
该行的冒号也不会显示,但是会有换行并缩进的效果,见'定义表'
直接换行可以提高文字的可读性。
但将来你会发现,这可能导致问题 — see [[w:Wikipedia:Don't use line breaks]] for details.
* 使用列表的时候,换行是会作用到显示输出的。 (See [[Help:List]]).
|<pre><nowiki>
一个
单独的
换行
显示时
没有
效果。
但是一个空行
会开始一个新的段落。</nowiki></pre>
|-
|你可以断行<br />
而不必开始新的段落。<p>
( HTML标签 <nowiki><br /></nowiki> 就足够了。系统会生成XHTML代码 <nowiki><br /></nowiki>。)</p>
* 请不要滥用。
* 在行内结束标记;不要开始一个 [[Help:Link|链接]] 或者 ''斜体'' 或者 '''粗体''',却在下一行结束。
|<pre><nowiki>你可以断行<br />
而不必开始新的段落。</nowiki></pre>
|-
|
* '''无序列表'''写起来很简单:
** 在行首写上个星号
*** 多个星号对应多级
*列表中
*的换行
标记了列表项的结束。
*当然了
*你可以
*再开始。
|<pre><nowiki>* 无序列表写起来很简单:
** 在行首写上个星号
*** 多个星号对应多级
*列表中
*的换行
标记了列表项的结束。
*当然了
*你可以
*再开始。
</nowiki></pre>
|-
|
# 编号列表同样好使
## 非常有序
## 容易理解
#列表中
#的换行
标记了列表项的结束。
#新的数字
#从1开始。
|<pre><nowiki># 编号列表同样好使
## 非常有序
## 容易理解
#列表中
#的换行
标记了列表项的结束。
#新的数字
#从1开始。
</nowiki></pre>
|-
|
* 你甚至可以做混合列表
*# 只需将其嵌套
*#* 或者换行<br />即可
|<pre><nowiki>* 你甚至可以做混合列表
*# 只需将其嵌套
*#* 或者换行<br />即可</nowiki></pre>
|-
|'''定义表'''
; 单词 : 单词的定义
; 长点的句子
: 定义的句子
|<pre><nowiki>; 单词 : 单词的定义
; 长点的句子
: 定义的句子</nowiki></pre>
* 每项一行;冒号前可以用换行,但是冒号前用空格更符合含义。
|-
|
;缩进
:行首加冒号可使段落缩进。
换行起始新段。
* 常用于讨论页、[[讨论:讨论版]]和[[讨论:提问求助区]].
冒号前有分号接一些字符,这种情况下,第一个冒号会换行并缩进,即使冒号不在行首,见上节:定义表。
|<pre><nowiki>:行首加冒号可使段落缩进。
换行起始新段。
</nowiki></pre>
|-
|
当需要分隔出来一段字符区域时
<blockquote>
'''blockquote'''符号将左右缩进,不像冒号只是左缩进。
额外效果字符额外效果字符额外效果字符额外效果字符额外效果字符
</blockquote>
在插入引用段落时(就像其名称)很有用。
|
<pre><nowiki>
<blockquote>
'''blockquote'''符号
将左右缩进,
不像冒号只是左缩进。
额外效果字符额外效果字符额外效果字符额外效果字符额外效果字符
</blockquote>
</nowiki></pre>
|-
|<center>居中字符串。</center>
* 注意 "center" 是美式拼写.
|<pre><nowiki><center>居中字符串。</center></nowiki></pre>
|-
|'''水平分割线''':
之上的部分...
----
...之下的部分。
If you don't use a section header, you don't get a TOC entry.
|<pre><nowiki>水平分割线:
之上的部分...
----
...之下的部分。
</nowiki></pre>
|}
=== 链接,超链接 Links, URLs ===
更多信息 [[Help:Link]]
==== 内部链接 Internal links ====
概述:
*将'''目标字符串''' 放入双方括号的包围中 — <nowiki>"[[" and "]]"</nowiki>
*目标字符串的第一个字母将自动变成大写.
*空白字符将以下划线方式展现(但是你自己不要亲自写下划线)
*[[like this one|链接指向不存在的页面]] 会被以红色显示 — [[帮助:创建条目的四种方法]] 描述了如何创建一个新页.
*鼠标停留在链接上时,在链接下方将出现一个提示框,包含链接提示。
{| border="1" cellpadding="2" cellspacing="0"
|-
!显示
!输入
|-
|
;基础
Sue 正在阅读 [[official position]]
(or [[Official position]]s).
|<pre><nowiki>Sue is reading the
[[official position]]
(or [[Official position]]s).</nowiki></pre>
|-
|
;基础 + [[Help:Editing#Text_formatting_--_controlling_how_it_looks|文字格式]]
你还可以使链接 ''斜体'' 显示。例如:''[[Wikipedia]]''。
|<pre><nowiki> ''[[Wikipedia]]'' </nowiki></pre>
|-
|
;wiki 内部链接
链接到其它Wiki上的页面(例如其它语言的同一主题)
*See [[m:Help:Interwiki linking]].
*[[:fr:Wikipédia:Aide]].
|<pre><nowiki>
*See [[m:Help:Interwiki linking]].
*[[:fr:Wikipédia:Aide]].
</nowiki></pre>
|-
|
;页面内 段落标题
*[[List of cities by country#Morocco]]
*[[List of cities by country#Norway]]
如果段落标题不存在,链接将跳转到页首。
如果有多个相同标题,添加序号来链接到指定标题。(例如:如果有3个标题名为“示例标题”,你想跳转到第三个,那么使用<nowiki>[[#示例标题 3]]</nowiki>。
:更多信息见 [[Help:Editing FAQ#Q: Can I link to a specific section header if there are multiple section headers of the same name? If so, how?|Help:Editing FAQ]].
|
<pre><nowiki>
*[[List of cities by country#Morocco]]
*[[List of cities by country#Norway]]
</nowiki></pre>
|-
|
;指定显示字符
用管道符号 "'''|'''" 来创建一个'''标签链接''':
*[[Help:Link|About Links]]
|<pre><nowiki>
*[[Help:Link|About Links]]
</nowiki></pre>
|-
|'''"空" 管道'''
:隐藏额外字符
*Parentheses: [[kingdom (biology)|kingdom]].
*Colon: [[m:Requests for adminship|Requests for adminship]].
在管道符号 '''|''' 后留空,服务器将自动填充链接标签。
|<pre><nowiki>*Parentheses: [[kingdom (biology)|]].
*Colon: [[m:Requests for adminship|]].</nowiki></pre>
|-
|
;指向不存在页面的链接
红色的链接 ([[like this one]]) 表示指向的页面不存在。
*点击后可以创建该页面。
*看看 [[Help:Starting a new page|如何开始一页]] 向导,以及[[帮助:条目命名]]。
|<pre><nowiki>
红色的链接 ([[like this one]]) 表示指向的页面不存在。
</nowiki></pre>
|-
|
;链接自己
讨论页面上,请务必在评论后留下'''签名''':
: 你的用户名: [[User:炽火|炽火]]
: 你的用户名 + 时间戳: [[User:炽火|炽火]] 04:17, 18 10月 2006 (CST)
: 五个波浪线则只有时间戳: 04:17, 18 10月 2006 (CST)
保存后服务器会替换该链接成为你的'''签名'''。
|<pre><nowiki>讨论页面上,请务必在评论后留下'''签名''':
: 你的用户名: ~~~
: 你的用户名 + 时间戳: ~~~~
: 五个波浪线则只有时间戳: ~~~~~
</nowiki></pre>
|-
|
;重定向
用来跳转到其它文章。
|<pre><nowiki>#REDIRECT [[United States]]</nowiki></pre>
|-
|
;"魔术" 链接
* [[w:ISBN|ISBN]] (国际标准书号)链接到书: ISBN 0123456789X
* [[w:Request for Comments|RFC]] 链接到请求注解: RFC 123 (See [[mediawiki:Rfcurl]])
|<pre><nowiki>
ISBN 0123456789X
RFC 123</nowiki></pre>
|-
|
;媒体链接
要包含非图象链接,使用“媒体”链接
To include links to non-image uploads such as sounds, use a "media" link.
<br />[[media:Sg_mrob.ogg|Sound]]
|<pre><nowiki>[[media:Sg_mrob.ogg|Sound]]
</nowiki></pre>
|-
|
;类别清单链接(在页尾列出类别的内容)
用在页尾,用来列出类别的内容,并链接到该类别。<br />
<nowiki>[[Category:English documentation]]</nowiki>
|<pre><nowiki>[[Category:English documentation]]
</nowiki></pre>
|-
|
;类别无清单链接(行内显示''没有''类别内容清单)
要链接到一个类别,但不列出类别内容,在类别前'''添加冒号'''<br />
[[:Category:English documentation]]
|<pre><nowiki>[[:Category:English documentation]]
</nowiki></pre>
|-
|
;日期:
使用日期链接,这样大家可以设置他们的显示排序。使用 [[Special:Preferences|参数设置]] 来更改你自己的日期显示格式设定。<br />
[[July 20]] [[1969]]
[[20 July]] [[1969]]
and [[1969]]-[[07-20]]
|<pre><nowiki>
[[July 20]] [[1969]]
[[20 July]] [[1969]]
and [[1969]]-[[07-20]]
</nowiki></pre>
|-
|
;特殊页面
"那些页面链接到当前页" 等等,可以这样链接:<br />
[[Special:Whatlinkshere/Help:Editing]]
|<pre><nowiki>
[[Special:Whatlinkshere/Help:Editing]]
</nowiki></pre>
|}
====外部链接 External links====
{| border="1" cellpadding="2" cellspacing="0"
|-
|[http://www.nupedia.com Nupedia], [http://www.nupedia.com]
|<pre><nowiki>
[http://www.nupedia.com Nupedia],
[http://www.nupedia.com]</nowiki></pre>
|-
|[mailto:email@example.com Email Example],
[mailto:email@example.com]
|<pre><nowiki>[mailto:email@example.com Email Example],
[mailto:email@example.com]</nowiki></pre>
|-
|或者直接给出网址URL: http://www.nupedia.com.
* 超链接中,所有字符必须是以下之一: A-Z a-z 0-9 ._\/~%- &#?!=()@ \x80-\xFF 。如果一个超链接包含了其它字符就应该被转换;例如,^ 必须写成 ^ (用于在[[w:ASCII|ASCII]]中检索)。一个空格也可以被转换成一个下划线。
*In the [[Help:URL|URL]] all symbols must be among: A-Z a-z 0-9 ._\/~%- &#?!=()@ \x80-\xFF. If a URL contains a different character it should be converted; for example, ^ has to be written ^ (to be looked up in [[w:ASCII|ASCII]]). A blank space can also be converted into an underscore.
|<pre><nowiki>或者直接给出网址URL:
http://www.nupedia.com.</nowiki></pre>
|}
.
=== 格式化文本 — 控制它的外观 ===
<table border="1" cellpadding="2" cellspacing="0">
<tr>
<th>显示</th>
<th>输入</th>
</tr>
<tr valign="top">
<td>
''Emphasize'' (斜体), '''strongly''' (粗体), '''''very strongly''''' (粗斜体).
(这些是双/三个单引号,不是双引号哦)
<small>注意: 链接也可以使用这些格式。(例如, ''[[Wikipedia]]'').</small>
</td>
<td valign="bottom">
<pre><nowiki>''Emphasize'', '''strongly''',
'''''very strongly'''''.
''[[Wikipedia]]''
</nowiki></pre>
</td>
</tr>
<tr valign="top">
<td>
你也可以直接书写HTML标签(部分),例如<nowiki><i>italic</i> and <b>bold</b></nowiki>.
在编辑数学公式时很有用,这时你不仅需要粗体斜体,还需要特殊字符格式。
:<b>F</b> = <i>m</i><b>a</b>
(两种方法的区别对图形浏览器来说不重要,所以尽可忽略)。但是也许在编辑的视觉效果上区别较大。;-)
</td>
<td>
<pre><nowiki>You can also write <i>italic</i> and <b>bold</b>.
This is useful in mathematical formulas where you
need specific font styles rather than emphasis.
:<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>
你还可以书写小号大写(英文字符适用)
<span style="font-variant:small-caps">
in small caps</span>.
如果wiki有这个模版, 这个
{{bsm}}可以简化书写{{esm}}.
</td>
<td>
<pre><nowiki>You can also write
<span style="font-variant:small-caps">
in small caps</span>.
If the wiki has the templates, this can
{{bsm}}be much simpler to write{{esm}}.</nowiki></pre>
</td>
</tr>
<tr valign=top>
<td>打字机字体,有时用于
<tt>术语名词</tt> and <code>计算机代码</code>.
* 在语义上,用 <code><code></code> 比用 <code><tt></code> 更加合适.
* (tt实际上应该是'teletype'电传打字机,不是'technical term'专业术语)
</td>
<td><pre><nowiki>A typewriter font, sometimes used for
<tt>technical terms</tt> and <code>computer code</code>.</nowiki></pre>
</td><!-- tt is really 'teletype', not 'technical term' -->
</tr>
<tr valign=top>
<td>说明文字可以用 <small>小号文本</small>。</td>
<td><pre><nowiki>You can use <small>small text</small>
for captions.</nowiki></pre>
</td>
</tr>
<tr valign="top">
<td>可以使用 <strike><del>删划线表示删除的材料</del>
和 <u><u>下划线表示新材料</u>.
你还可以标记上 <del><del>删除材料</del> 和
<ins><ins>插入材料</ins> ,用逻辑标记胜于使用虚拟标记。
* 当编辑正式文章时,直接做更改,不要用特殊方法做记号。
* 当编辑讨论页你过去的发言时,有时候标记上你的删除和添加部分是比较合适的。
</td>
<td><pre><nowiki>You can <del>strike out deleted material</del>
and <u>underline new material</u>.
You can also mark <del>deleted material</del> and
<ins>inserted material</ins> using logical markup
rather than visual markup.
</nowiki></pre>
</td>
</tr>
<tr valign="bottom" id="subscript">
<td>下标(脚注): x<sub>2</sub><br />
上标: x<sup>2</sup> 或 x²
大部分浏览器支持使用更简洁的书写格式 &sup2; 而不必书写 <sup>2</sup>
ε<sub>0</sub> =
8.85 × 10<sup>−12</sup>
C² / J m.
<br />
<br />
1 [[hectare]] = [[1 E4 m²]] 1公顷等于一万立方米
</td>
<td valign="bottom"><pre><nowiki>Subscript: x<sub>2</sub>
Superscript: x<sup>2</sup> or x&sup2;
</nowiki></pre>
<pre><nowiki>
&epsilon;<sub>0</sub> =
8.85 &times; 10<sup>&minus;12</sup>
C&sup2; / J m.
1 [[hectare]] = [[1 E4 m&sup2]]
</nowiki></pre></td>
</tr>
</table>
=== 禁用wiki专用标签和简写 and/or 重新格式化 ===
<nowiki> 标签和 <pre> 标签可以让服务器和浏览器仅显示你的原始输入,忽略其中包含的其它标签。
{| border="1" cellpadding="2" cellspacing="0">
|'''正常情况'''
* 解释专用字符
* 解释wiki专用标记
* 重新格式化文本(去除单独新行和重复的空格,执行自动换行)
* 一个双空行被解释为一个新的段落开始(就是分段)
arrow →
''italics''
[[link]]
|
<pre><nowiki>arrow &rarr;
''italics''
[[link]]</nowiki></pre>
|-
|'''<nowiki>'''
* 解释专用字符
* 不解释wiki专用标记
* 重新格式化文本
* 忽略双空行(不分段);因此必须在段落内使用。
''can be applied in-line:'' <nowiki>
arrow →
''italics''
[[link]]
</nowiki>''[[normal]] again''
|<pre><nowiki>
''can be applied in-line:'' <nowiki>
arrow &rarr;
''italics''
[[link]]
</nowiki></nowiki>''[[normal]] again''</pre>
|-
|'''<pre>'''
* 解释专用字符
* 不解释wiki专用标记
* 不格式化文本(不会自动换行no wrapping)
* 允许在HTML元素pre上套用CSS格式;默认皮肤是一个虚线实心块。
* 使用定宽字体,该字体在浏览器中设置。
<pre>arrow →
''italics''
[[link]]
</pre>
|<pre><nowiki><pre>arrow &rarr;
''italics''
[[link]]</pre></nowiki></pre>
|-
|'''行前空格'''
* 解释专用字符
* 解释wiki专用标记
* 不格式化文本 (不自动换行no wrapping)
* 产生HTML元素pre,因此字体和CSS与pre相同;默认皮肤下是个实块。
arrow →
''italics''
[[link]]
IF a line of plain text starts with a space
it will be formatted exactly
as typed
in a font
in a grey dotted-outline box
lines won't wrap
ENDIF
this is useful for:
* pasting preformatted text;
* algorithm descriptions;
* program source code
* ASCII art;
* chemical structures;
* poetry
;WARNING
:如果你写的过长, 会 [[w:page widening|强制整页变长]],并因此而减少可读性。
:永远不要在普通的一行前加入空格。
<center>(see also below)</center>
|<pre> <nowiki>arrow &rarr;
''italics''
[[link]]</nowiki></pre>
<pre><nowiki> IF a line of plain text starts with a space
it will be formatted exactly
as typed
in a fixed-width font
in a grey dotted-outline box
lines won't wrap
ENDIF
this is useful for:
* pasting preformatted text
* algorithm descriptions
* program source code
* ASCII art
* chemical structures
* poetry
</nowiki></pre>
|-
|'''打字机字体'''
(超出段尾后失效):
<tt>arrow →</tt>
<tt>''italics''</tt>
<tt>[[link]]
New paragraph.</tt>
|<pre><nowiki><tt>arrow &rarr;</tt>
<tt>''italics''</tt>
<tt>[[link]]</nowiki>
New paragraph.</tt></pre>
|-
|
;显示专用字符代码:
&rarr;
|<pre>&amp;rarr;</pre>
|-
|
;注释
在 '''前'''
<!-- comment here -->
'''后''' 之间的注释不会显示
|<pre><nowiki>在 '''前'''
<!-- comment here -->
'''后''' 之间的注释不会显示</nowiki></pre>
|}
=== 特殊字符 ===
{| border="1" cellpadding="2" cellspacing="0"
! 显示
! 输入
|- valign="top"
|
'''原音变音和重音符号:''' (See [[Help:Special characters]])<br />
À Á Â Ã Ä Å
Æ Ç È É Ê Ë
Ì Í Î Ï Ñ Ò
Ó Ô Õ Ö Ø Ù
Ú Û Ü ß à á
â ã ä å æ ç
è é ê ë ì í
î ï ñ ò ó ô
œ õ ö ø ù ú
û ü ÿ<br />
<br />
À Á Â Ã Ä Å <br />
Æ Ç È É Ê Ë <br />
Ì Í
Î Ï Ñ Ò <br />
Ó Ô Õ
Ö Ø Ù <br />
Ú Û Ü ß
à á <br />
â ã ä å æ
ç <br />
è é ê ë ì í<br />
î ï ñ ò ó ô <br />
œ õ
ö ø ù ú <br />
û ü ÿ
|
<pre><nowiki>
À Á Â Ã Ä Å
Æ Ç È É Ê Ë
Ì Í Î Ï Ñ Ò
Ó Ô Õ Ö Ø Ù
Ú Û Ü ß à á
â ã ä å æ ç
è é ê ë ì í
î ï ñ ò ó ô
œ õ ö ø ù ú
û ü ÿ
&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;</nowiki></pre>
|- valign="top"
|
'''标点符号:'''<br />
¿ ¡ « » § ¶
† ‡ • - – —
¿ ¡ « » § ¶<br />
† ‡ • - – —
|
<pre><nowiki>
¿ ¡ « » § ¶
† ‡ • - – —
&iquest; &iexcl; &laquo; &raquo; &sect; &para;
&dagger; &Dagger; &bull; - &ndash; &mdash;</nowiki></pre></td>
|- valign="top"
|
'''商业符号:'''<br />
™ © ® ¢ € ¥ £ ¤
™ © ® ¢ € ¥ £ ¤
|
<pre><nowiki>
™ © ® ¢ € ¥ £ ¤
&trade; &copy; &reg; &cent; &euro; &yen; &pound; &curren;
</nowiki></pre>
|- valign="top"
|
;希腊字母:
α β γ δ ε ζ
η θ ι κ λ μ ν
ξ ο π ρ σ ς
τ υ φ χ ψ ω
Γ Δ Θ Λ Ξ Π
Σ Φ Ψ Ω
α β γ δ ε ζ <br />
η θ ι κ λ μ ν <br />
ξ ο π ρ σ ς <br />
τ υ φ χ ψ ω<br />
Γ Δ Θ Λ Ξ Π <br />
Σ Φ Ψ Ω
|
<pre><nowiki>
α β γ δ ε ζ
η θ ι κ λ μ ν
ξ ο π ρ σ ς
τ υ φ χ ψ ω
Γ Δ Θ Λ Ξ Π
Σ Φ Ψ Ω
&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;
</nowiki></pre>
|- valign="top"
|
;数学符号:
∫ ∑ ∏ √ − ± ∞
≈ ∝ ≡ ≠ ≤ ≥
× · ÷ ∂ ′ ″
∇ ‰ ° ∴ ø
∈ ∩ ∪ ⊂ ⊃ ⊆ ⊇
¬ ∧ ∨ ∃ ∀ ⇒ ⇔
→ ↔ ↑
∫ ∑ ∏ √ − ± ∞<br />
≈ ∝ ≡ ≠ ≤ ≥<br />
× · ÷ ∂ ′ ″<br />
∇ ‰ ° ∴ ø<br />
∈ ∩ ∪ ⊂ ⊃ ⊆ ⊇<br />
¬ ∧ ∨ ∃ ∀ ⇒ ⇔<br />
→ ↔ ↑<br />
有问题的符号:
ℵ ∉
ℵ ∉
| valign="middle" |
<pre><nowiki>
∫ ∑ ∏ √ − ± ∞
≈ ∝ ≡ ≠ ≤ ≥
× · ÷ ∂ ′ ″
∇ ‰ ° ∴ ø
∈ ∩ ∪ ⊂ ⊃ ⊆ ⊇
¬ ∧ ∨ ∃ ∀ ⇒ ⇔
→ ↔ ↑
&int; &sum; &prod; &radic; &minus; &plusmn; &infin;
&asymp; &prop; &equiv; &ne; &le; &ge;
&times; &middot; &divide; &part; &prime; &Prime;
&nabla; &permil; &deg; &there4; &oslash;
&isin; &cap; &cup; &sub; &sup; &sube; &supe;
&not; &and; &or; &exist; &forall; &rArr; &hArr;
&rarr; &harr; &uarr;
有问题的符号:
ℵ ∉
&alefsym; &notin;
</nowiki></pre>
|}
===包含其它页面 — 引用和模版 ===
更改一个被引用的文件,所有引用它的文件都会改变。
Changing a transcluded file will change every file that transcludes it.
<table border="1" cellpadding="2" cellspacing="0">
<tr valign="bottom">
<td>
;transclusion
:将其它页面的内容包括进来。
<div style="border: 1pt dashed blue; background : grey; padding: 1em 1em;">
{{:Help:Transclusion Demo}}</div></td>
<td>
<pre><nowiki>{{</nowiki>:Help:Transclusion Demo<nowiki>}}</nowiki></pre></td>
</tr>
<tr valign="bottom">
<td>
;[[Help:Template|template]]
:模版
一种为引用而特殊设计的页面。这些页面位于'''模版:''' [[help:namespace|namespace]]
模版甚至可以接受参数。
当你编辑的时候,页面上使用的所有模版会在编辑框下面列出。
<div style="border: 1pt dashed blue; background : grey; padding: 1em 1em;">
{{H:title|hovertext|This is underlined}}</div></td>
<td>
<pre><nowiki>{{H:title|hovertext|This is underlined}}</nowiki></pre></td></tr>
</table>
{{DEFAULTSORT:Gaojibian}}
[[分类:帮助]]
== 高级编辑(Advanced Editing) — 前言 ==
__NOTOC__
本页来自官方链接 — [http://meta.wikimedia.org/wiki/Help:Advanced_editing Help:Advanced_editing]
现已将官方页面汉化,链接:[http://meta.wikimedia.org/wiki/Help:Advanced_editing/Zh Help:Advanced_editing(中文)](因本WIKI缺乏一些模板,所以显示效果较差,推荐您直接访问官方汉化地址)
*翻译者:--[[User:炽火|小火呼呼]] 01:31, 17 10月 2006 (CST)
*Tips:点击“编辑”,查看规范的书写方式,非常简洁
*参考:[[帮助:使用示例]]
== 标记 — 让你的页面如你所想==
See also [[Help:Editing]].
<!-- This is the part everybody wants, therefore some argue that it should be transcluded and not just linked.-->
*如果你想尝试一下,又不想造成损害,你可以在[[沙盒]]中随意捣鼓。
*更多信息 [[Help:Html in wikitext|HTML tags in wikitext]]
=== 编组书写 — 章节,段落,列表,分行 ===
{| border="1" cellpadding="2" cellspacing="0"
|-
!显示效果
!你的输入
|-
|
;Sections and subsections
起始一个带标题的段落。(其实就是粗体+单行显示)
注意:单等号表示最高等级标题,例如页面标题;一般按照惯例不使用。
<!-- This is the original
= 这样的单等号标题不要用 =
== New section ==
=== Subsection ===
==== Sub-subsection ====
-->
<!-- next set
<h1> DO NOT USE THIS </h1>
<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>
*从二级标题(h2)起 (<tt><nowiki>==</nowiki></tt>); 不要使用一级(=).
*不要跳级 (例如,二级后面接四级).
*如果包含4个以上的部分(Section),会被自动添加一个 [[#Table of contents|目录]]。
*尽可能将子目按顺序排列。例如国家列表,按字母排序远胜于按照人口经济,或者乱序。
*如果你不想要标题的TOC,就必须使用HTML标签,并且不可用反斜杠结尾。例如:<br /><nowiki><h4>heading too low level to be in the toc of large page<h4></nowiki>.
|<pre><nowiki>
;Sections and subsections
起始一个带标题的段落。
== New section ==
=== Subsection ===
==== Sub-subsection ====
</nowiki></pre>
|-
|
;[[w:newline|Newline]]:
一个
单独的
换行
显示时
没有
效果。
但是一个空行
会开始一个新的段落,
或者结束一个列表或者缩进。
(<nowiki><p></nowiki> 符号会禁用这个分段的能力,直到结尾符号 <nowiki></p></nowiki> 或者段落(Section)结束)
(在 Cologne Blue 中,两个新行和一个'div'标签只能得到一个换行;如果顺序 换行->DIV->换行 ,结果是两个新行)
行首的分号不会被显示,但是会有换行效果。
该行的冒号也不会显示,但是会有换行并缩进的效果,见'定义表'
直接换行可以提高文字的可读性。
但将来你会发现,这可能导致问题 — see [[w:Wikipedia:Don't use line breaks]] for details.
* 使用列表的时候,换行是会作用到显示输出的。 (See [[Help:List]]).
|<pre><nowiki>
一个
单独的
换行
显示时
没有
效果。
但是一个空行
会开始一个新的段落。</nowiki></pre>
|-
|你可以断行<br />
而不必开始新的段落。<p>
( HTML标签 <nowiki><br /></nowiki> 就足够了。系统会生成XHTML代码 <nowiki><br /></nowiki>。)</p>
* 请不要滥用。
* 在行内结束标记;不要开始一个 [[Help:Link|链接]] 或者 ''斜体'' 或者 '''粗体''',却在下一行结束。
|<pre><nowiki>你可以断行<br />
而不必开始新的段落。</nowiki></pre>
|-
|
* '''无序列表'''写起来很简单:
** 在行首写上个星号
*** 多个星号对应多级
*列表中
*的换行
标记了列表项的结束。
*当然了
*你可以
*再开始。
|<pre><nowiki>* 无序列表写起来很简单:
** 在行首写上个星号
*** 多个星号对应多级
*列表中
*的换行
标记了列表项的结束。
*当然了
*你可以
*再开始。
</nowiki></pre>
|-
|
# 编号列表同样好使
## 非常有序
## 容易理解
#列表中
#的换行
标记了列表项的结束。
#新的数字
#从1开始。
|<pre><nowiki># 编号列表同样好使
## 非常有序
## 容易理解
#列表中
#的换行
标记了列表项的结束。
#新的数字
#从1开始。
</nowiki></pre>
|-
|
* 你甚至可以做混合列表
*# 只需将其嵌套
*#* 或者换行<br />即可
|<pre><nowiki>* 你甚至可以做混合列表
*# 只需将其嵌套
*#* 或者换行<br />即可</nowiki></pre>
|-
|'''定义表'''
; 单词 : 单词的定义
; 长点的句子
: 定义的句子
|<pre><nowiki>; 单词 : 单词的定义
; 长点的句子
: 定义的句子</nowiki></pre>
* 每项一行;冒号前可以用换行,但是冒号前用空格更符合含义。
|-
|
;缩进
:行首加冒号可使段落缩进。
换行起始新段。
* 常用于讨论页、[[讨论:讨论版]]和[[讨论:提问求助区]].
冒号前有分号接一些字符,这种情况下,第一个冒号会换行并缩进,即使冒号不在行首,见上节:定义表。
|<pre><nowiki>:行首加冒号可使段落缩进。
换行起始新段。
</nowiki></pre>
|-
|
当需要分隔出来一段字符区域时
<blockquote>
'''blockquote'''符号将左右缩进,不像冒号只是左缩进。
额外效果字符额外效果字符额外效果字符额外效果字符额外效果字符
</blockquote>
在插入引用段落时(就像其名称)很有用。
|
<pre><nowiki>
<blockquote>
'''blockquote'''符号
将左右缩进,
不像冒号只是左缩进。
额外效果字符额外效果字符额外效果字符额外效果字符额外效果字符
</blockquote>
</nowiki></pre>
|-
|<center>居中字符串。</center>
* 注意 "center" 是美式拼写.
|<pre><nowiki><center>居中字符串。</center></nowiki></pre>
|-
|'''水平分割线''':
之上的部分...
----
...之下的部分。
If you don't use a section header, you don't get a TOC entry.
|<pre><nowiki>水平分割线:
之上的部分...
----
...之下的部分。
</nowiki></pre>
|}
=== 链接,超链接 Links, URLs ===
更多信息 [[Help:Link]]
==== 内部链接 Internal links ====
概述:
*将'''目标字符串''' 放入双方括号的包围中 — <nowiki>"[[" and "]]"</nowiki>
*目标字符串的第一个字母将自动变成大写.
*空白字符将以下划线方式展现(但是你自己不要亲自写下划线)
*[[like this one|链接指向不存在的页面]] 会被以红色显示 — [[帮助:创建条目的四种方法]] 描述了如何创建一个新页.
*鼠标停留在链接上时,在链接下方将出现一个提示框,包含链接提示。
{| border="1" cellpadding="2" cellspacing="0"
|-
!显示
!输入
|-
|
;基础
Sue 正在阅读 [[official position]]
(or [[Official position]]s).
|<pre><nowiki>Sue is reading the
[[official position]]
(or [[Official position]]s).</nowiki></pre>
|-
|
;基础 + [[Help:Editing#Text_formatting_--_controlling_how_it_looks|文字格式]]
你还可以使链接 ''斜体'' 显示。例如:''[[Wikipedia]]''。
|<pre><nowiki> ''[[Wikipedia]]'' </nowiki></pre>
|-
|
;wiki 内部链接
链接到其它Wiki上的页面(例如其它语言的同一主题)
*See [[m:Help:Interwiki linking]].
*[[:fr:Wikipédia:Aide]].
|<pre><nowiki>
*See [[m:Help:Interwiki linking]].
*[[:fr:Wikipédia:Aide]].
</nowiki></pre>
|-
|
;页面内 段落标题
*[[List of cities by country#Morocco]]
*[[List of cities by country#Norway]]
如果段落标题不存在,链接将跳转到页首。
如果有多个相同标题,添加序号来链接到指定标题。(例如:如果有3个标题名为“示例标题”,你想跳转到第三个,那么使用<nowiki>[[#示例标题 3]]</nowiki>。
:更多信息见 [[Help:Editing FAQ#Q: Can I link to a specific section header if there are multiple section headers of the same name? If so, how?|Help:Editing FAQ]].
|
<pre><nowiki>
*[[List of cities by country#Morocco]]
*[[List of cities by country#Norway]]
</nowiki></pre>
|-
|
;指定显示字符
用管道符号 "'''|'''" 来创建一个'''标签链接''':
*[[Help:Link|About Links]]
|<pre><nowiki>
*[[Help:Link|About Links]]
</nowiki></pre>
|-
|'''"空" 管道'''
:隐藏额外字符
*Parentheses: [[kingdom (biology)|kingdom]].
*Colon: [[m:Requests for adminship|Requests for adminship]].
在管道符号 '''|''' 后留空,服务器将自动填充链接标签。
|<pre><nowiki>*Parentheses: [[kingdom (biology)|]].
*Colon: [[m:Requests for adminship|]].</nowiki></pre>
|-
|
;指向不存在页面的链接
红色的链接 ([[like this one]]) 表示指向的页面不存在。
*点击后可以创建该页面。
*看看 [[Help:Starting a new page|如何开始一页]] 向导,以及[[帮助:条目命名]]。
|<pre><nowiki>
红色的链接 ([[like this one]]) 表示指向的页面不存在。
</nowiki></pre>
|-
|
;链接自己
讨论页面上,请务必在评论后留下'''签名''':
: 你的用户名: [[User:炽火|炽火]]
: 你的用户名 + 时间戳: [[User:炽火|炽火]] 04:17, 18 10月 2006 (CST)
: 五个波浪线则只有时间戳: 04:17, 18 10月 2006 (CST)
保存后服务器会替换该链接成为你的'''签名'''。
|<pre><nowiki>讨论页面上,请务必在评论后留下'''签名''':
: 你的用户名: ~~~
: 你的用户名 + 时间戳: ~~~~
: 五个波浪线则只有时间戳: ~~~~~
</nowiki></pre>
|-
|
;重定向
用来跳转到其它文章。
|<pre><nowiki>#REDIRECT [[United States]]</nowiki></pre>
|-
|
;"魔术" 链接
* [[w:ISBN|ISBN]] (国际标准书号)链接到书: ISBN 0123456789X
* [[w:Request for Comments|RFC]] 链接到请求注解: RFC 123 (See [[mediawiki:Rfcurl]])
|<pre><nowiki>
ISBN 0123456789X
RFC 123</nowiki></pre>
|-
|
;媒体链接
要包含非图象链接,使用“媒体”链接
To include links to non-image uploads such as sounds, use a "media" link.
<br />[[media:Sg_mrob.ogg|Sound]]
|<pre><nowiki>[[media:Sg_mrob.ogg|Sound]]
</nowiki></pre>
|-
|
;类别清单链接(在页尾列出类别的内容)
用在页尾,用来列出类别的内容,并链接到该类别。<br />
<nowiki>[[Category:English documentation]]</nowiki>
|<pre><nowiki>[[Category:English documentation]]
</nowiki></pre>
|-
|
;类别无清单链接(行内显示''没有''类别内容清单)
要链接到一个类别,但不列出类别内容,在类别前'''添加冒号'''<br />
[[:Category:English documentation]]
|<pre><nowiki>[[:Category:English documentation]]
</nowiki></pre>
|-
|
;日期:
使用日期链接,这样大家可以设置他们的显示排序。使用 [[Special:Preferences|参数设置]] 来更改你自己的日期显示格式设定。<br />
[[July 20]] [[1969]]
[[20 July]] [[1969]]
and [[1969]]-[[07-20]]
|<pre><nowiki>
[[July 20]] [[1969]]
[[20 July]] [[1969]]
and [[1969]]-[[07-20]]
</nowiki></pre>
|-
|
;特殊页面
"那些页面链接到当前页" 等等,可以这样链接:<br />
[[Special:Whatlinkshere/Help:Editing]]
|<pre><nowiki>
[[Special:Whatlinkshere/Help:Editing]]
</nowiki></pre>
|}
====外部链接 External links====
{| border="1" cellpadding="2" cellspacing="0"
|-
|[http://www.nupedia.com Nupedia], [http://www.nupedia.com]
|<pre><nowiki>
[http://www.nupedia.com Nupedia],
[http://www.nupedia.com]</nowiki></pre>
|-
|[mailto:email@example.com Email Example],
[mailto:email@example.com]
|<pre><nowiki>[mailto:email@example.com Email Example],
[mailto:email@example.com]</nowiki></pre>
|-
|或者直接给出网址URL: http://www.nupedia.com.
* 超链接中,所有字符必须是以下之一: A-Z a-z 0-9 ._\/~%- &#?!=()@ \x80-\xFF 。如果一个超链接包含了其它字符就应该被转换;例如,^ 必须写成 ^ (用于在[[w:ASCII|ASCII]]中检索)。一个空格也可以被转换成一个下划线。
*In the [[Help:URL|URL]] all symbols must be among: A-Z a-z 0-9 ._\/~%- &#?!=()@ \x80-\xFF. If a URL contains a different character it should be converted; for example, ^ has to be written ^ (to be looked up in [[w:ASCII|ASCII]]). A blank space can also be converted into an underscore.
|<pre><nowiki>或者直接给出网址URL:
http://www.nupedia.com.</nowiki></pre>
|}
.
=== 格式化文本 — 控制它的外观 ===
<table border="1" cellpadding="2" cellspacing="0">
<tr>
<th>显示</th>
<th>输入</th>
</tr>
<tr valign="top">
<td>
''Emphasize'' (斜体), '''strongly''' (粗体), '''''very strongly''''' (粗斜体).
(这些是双/三个单引号,不是双引号哦)
<small>注意: 链接也可以使用这些格式。(例如, ''[[Wikipedia]]'').</small>
</td>
<td valign="bottom">
<pre><nowiki>''Emphasize'', '''strongly''',
'''''very strongly'''''.
''[[Wikipedia]]''
</nowiki></pre>
</td>
</tr>
<tr valign="top">
<td>
你也可以直接书写HTML标签(部分),例如<nowiki><i>italic</i> and <b>bold</b></nowiki>.
在编辑数学公式时很有用,这时你不仅需要粗体斜体,还需要特殊字符格式。
:<b>F</b> = <i>m</i><b>a</b>
(两种方法的区别对图形浏览器来说不重要,所以尽可忽略)。但是也许在编辑的视觉效果上区别较大。;-)
</td>
<td>
<pre><nowiki>You can also write <i>italic</i> and <b>bold</b>.
This is useful in mathematical formulas where you
need specific font styles rather than emphasis.
:<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>
你还可以书写小号大写(英文字符适用)
<span style="font-variant:small-caps">
in small caps</span>.
如果wiki有这个模版, 这个
{{bsm}}可以简化书写{{esm}}.
</td>
<td>
<pre><nowiki>You can also write
<span style="font-variant:small-caps">
in small caps</span>.
If the wiki has the templates, this can
{{bsm}}be much simpler to write{{esm}}.</nowiki></pre>
</td>
</tr>
<tr valign=top>
<td>打字机字体,有时用于
<tt>术语名词</tt> and <code>计算机代码</code>.
* 在语义上,用 <code><code></code> 比用 <code><tt></code> 更加合适.
* (tt实际上应该是'teletype'电传打字机,不是'technical term'专业术语)
</td>
<td><pre><nowiki>A typewriter font, sometimes used for
<tt>technical terms</tt> and <code>computer code</code>.</nowiki></pre>
</td><!-- tt is really 'teletype', not 'technical term' -->
</tr>
<tr valign=top>
<td>说明文字可以用 <small>小号文本</small>。</td>
<td><pre><nowiki>You can use <small>small text</small>
for captions.</nowiki></pre>
</td>
</tr>
<tr valign="top">
<td>可以使用 <strike><del>删划线表示删除的材料</del>
和 <u><u>下划线表示新材料</u>.
你还可以标记上 <del><del>删除材料</del> 和
<ins><ins>插入材料</ins> ,用逻辑标记胜于使用虚拟标记。
* 当编辑正式文章时,直接做更改,不要用特殊方法做记号。
* 当编辑讨论页你过去的发言时,有时候标记上你的删除和添加部分是比较合适的。
</td>
<td><pre><nowiki>You can <del>strike out deleted material</del>
and <u>underline new material</u>.
You can also mark <del>deleted material</del> and
<ins>inserted material</ins> using logical markup
rather than visual markup.
</nowiki></pre>
</td>
</tr>
<tr valign="bottom" id="subscript">
<td>下标(脚注): x<sub>2</sub><br />
上标: x<sup>2</sup> 或 x²
大部分浏览器支持使用更简洁的书写格式 &sup2; 而不必书写 <sup>2</sup>
ε<sub>0</sub> =
8.85 × 10<sup>−12</sup>
C² / J m.
<br />
<br />
1 [[hectare]] = [[1 E4 m²]] 1公顷等于一万立方米
</td>
<td valign="bottom"><pre><nowiki>Subscript: x<sub>2</sub>
Superscript: x<sup>2</sup> or x&sup2;
</nowiki></pre>
<pre><nowiki>
&epsilon;<sub>0</sub> =
8.85 &times; 10<sup>&minus;12</sup>
C&sup2; / J m.
1 [[hectare]] = [[1 E4 m&sup2]]
</nowiki></pre></td>
</tr>
</table>
=== 禁用wiki专用标签和简写 and/or 重新格式化 ===
<nowiki> 标签和 <pre> 标签可以让服务器和浏览器仅显示你的原始输入,忽略其中包含的其它标签。
{| border="1" cellpadding="2" cellspacing="0">
|'''正常情况'''
* 解释专用字符
* 解释wiki专用标记
* 重新格式化文本(去除单独新行和重复的空格,执行自动换行)
* 一个双空行被解释为一个新的段落开始(就是分段)
arrow →
''italics''
[[link]]
|
<pre><nowiki>arrow &rarr;
''italics''
[[link]]</nowiki></pre>
|-
|'''<nowiki>'''
* 解释专用字符
* 不解释wiki专用标记
* 重新格式化文本
* 忽略双空行(不分段);因此必须在段落内使用。
''can be applied in-line:'' <nowiki>
arrow →
''italics''
[[link]]
</nowiki>''[[normal]] again''
|<pre><nowiki>
''can be applied in-line:'' <nowiki>
arrow &rarr;
''italics''
[[link]]
</nowiki></nowiki>''[[normal]] again''</pre>
|-
|'''<pre>'''
* 解释专用字符
* 不解释wiki专用标记
* 不格式化文本(不会自动换行no wrapping)
* 允许在HTML元素pre上套用CSS格式;默认皮肤是一个虚线实心块。
* 使用定宽字体,该字体在浏览器中设置。
<pre>arrow →
''italics''
[[link]]
</pre>
|<pre><nowiki><pre>arrow &rarr;
''italics''
[[link]]</pre></nowiki></pre>
|-
|'''行前空格'''
* 解释专用字符
* 解释wiki专用标记
* 不格式化文本 (不自动换行no wrapping)
* 产生HTML元素pre,因此字体和CSS与pre相同;默认皮肤下是个实块。
arrow →
''italics''
[[link]]
IF a line of plain text starts with a space
it will be formatted exactly
as typed
in a font
in a grey dotted-outline box
lines won't wrap
ENDIF
this is useful for:
* pasting preformatted text;
* algorithm descriptions;
* program source code
* ASCII art;
* chemical structures;
* poetry
;WARNING
:如果你写的过长, 会 [[w:page widening|强制整页变长]],并因此而减少可读性。
:永远不要在普通的一行前加入空格。
<center>(see also below)</center>
|<pre> <nowiki>arrow &rarr;
''italics''
[[link]]</nowiki></pre>
<pre><nowiki> IF a line of plain text starts with a space
it will be formatted exactly
as typed
in a fixed-width font
in a grey dotted-outline box
lines won't wrap
ENDIF
this is useful for:
* pasting preformatted text
* algorithm descriptions
* program source code
* ASCII art
* chemical structures
* poetry
</nowiki></pre>
|-
|'''打字机字体'''
(超出段尾后失效):
<tt>arrow →</tt>
<tt>''italics''</tt>
<tt>[[link]]
New paragraph.</tt>
|<pre><nowiki><tt>arrow &rarr;</tt>
<tt>''italics''</tt>
<tt>[[link]]</nowiki>
New paragraph.</tt></pre>
|-
|
;显示专用字符代码:
&rarr;
|<pre>&amp;rarr;</pre>
|-
|
;注释
在 '''前'''
<!-- comment here -->
'''后''' 之间的注释不会显示
|<pre><nowiki>在 '''前'''
<!-- comment here -->
'''后''' 之间的注释不会显示</nowiki></pre>
|}
=== 特殊字符 ===
{| border="1" cellpadding="2" cellspacing="0"
! 显示
! 输入
|- valign="top"
|
'''原音变音和重音符号:''' (See [[Help:Special characters]])<br />
À Á Â Ã Ä Å
Æ Ç È É Ê Ë
Ì Í Î Ï Ñ Ò
Ó Ô Õ Ö Ø Ù
Ú Û Ü ß à á
â ã ä å æ ç
è é ê ë ì í
î ï ñ ò ó ô
œ õ ö ø ù ú
û ü ÿ<br />
<br />
À Á Â Ã Ä Å <br />
Æ Ç È É Ê Ë <br />
Ì Í
Î Ï Ñ Ò <br />
Ó Ô Õ
Ö Ø Ù <br />
Ú Û Ü ß
à á <br />
â ã ä å æ
ç <br />
è é ê ë ì í<br />
î ï ñ ò ó ô <br />
œ õ
ö ø ù ú <br />
û ü ÿ
|
<pre><nowiki>
À Á Â Ã Ä Å
Æ Ç È É Ê Ë
Ì Í Î Ï Ñ Ò
Ó Ô Õ Ö Ø Ù
Ú Û Ü ß à á
â ã ä å æ ç
è é ê ë ì í
î ï ñ ò ó ô
œ õ ö ø ù ú
û ü ÿ
&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;</nowiki></pre>
|- valign="top"
|
'''标点符号:'''<br />
¿ ¡ « » § ¶
† ‡ • - – —
¿ ¡ « » § ¶<br />
† ‡ • - – —
|
<pre><nowiki>
¿ ¡ « » § ¶
† ‡ • - – —
&iquest; &iexcl; &laquo; &raquo; &sect; &para;
&dagger; &Dagger; &bull; - &ndash; &mdash;</nowiki></pre></td>
|- valign="top"
|
'''商业符号:'''<br />
™ © ® ¢ € ¥ £ ¤
™ © ® ¢ € ¥ £ ¤
|
<pre><nowiki>
™ © ® ¢ € ¥ £ ¤
&trade; &copy; &reg; &cent; &euro; &yen; &pound; &curren;
</nowiki></pre>
|- valign="top"
|
;希腊字母:
α β γ δ ε ζ
η θ ι κ λ μ ν
ξ ο π ρ σ ς
τ υ φ χ ψ ω
Γ Δ Θ Λ Ξ Π
Σ Φ Ψ Ω
α β γ δ ε ζ <br />
η θ ι κ λ μ ν <br />
ξ ο π ρ σ ς <br />
τ υ φ χ ψ ω<br />
Γ Δ Θ Λ Ξ Π <br />
Σ Φ Ψ Ω
|
<pre><nowiki>
α β γ δ ε ζ
η θ ι κ λ μ ν
ξ ο π ρ σ ς
τ υ φ χ ψ ω
Γ Δ Θ Λ Ξ Π
Σ Φ Ψ Ω
&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;
</nowiki></pre>
|- valign="top"
|
;数学符号:
∫ ∑ ∏ √ − ± ∞
≈ ∝ ≡ ≠ ≤ ≥
× · ÷ ∂ ′ ″
∇ ‰ ° ∴ ø
∈ ∩ ∪ ⊂ ⊃ ⊆ ⊇
¬ ∧ ∨ ∃ ∀ ⇒ ⇔
→ ↔ ↑
∫ ∑ ∏ √ − ± ∞<br />
≈ ∝ ≡ ≠ ≤ ≥<br />
× · ÷ ∂ ′ ″<br />
∇ ‰ ° ∴ ø<br />
∈ ∩ ∪ ⊂ ⊃ ⊆ ⊇<br />
¬ ∧ ∨ ∃ ∀ ⇒ ⇔<br />
→ ↔ ↑<br />
有问题的符号:
ℵ ∉
ℵ ∉
| valign="middle" |
<pre><nowiki>
∫ ∑ ∏ √ − ± ∞
≈ ∝ ≡ ≠ ≤ ≥
× · ÷ ∂ ′ ″
∇ ‰ ° ∴ ø
∈ ∩ ∪ ⊂ ⊃ ⊆ ⊇
¬ ∧ ∨ ∃ ∀ ⇒ ⇔
→ ↔ ↑
&int; &sum; &prod; &radic; &minus; &plusmn; &infin;
&asymp; &prop; &equiv; &ne; &le; &ge;
&times; &middot; &divide; &part; &prime; &Prime;
&nabla; &permil; &deg; &there4; &oslash;
&isin; &cap; &cup; &sub; &sup; &sube; &supe;
&not; &and; &or; &exist; &forall; &rArr; &hArr;
&rarr; &harr; &uarr;
有问题的符号:
ℵ ∉
&alefsym; &notin;
</nowiki></pre>
|}
===包含其它页面 — 引用和模版 ===
更改一个被引用的文件,所有引用它的文件都会改变。
Changing a transcluded file will change every file that transcludes it.
<table border="1" cellpadding="2" cellspacing="0">
<tr valign="bottom">
<td>
;transclusion
:将其它页面的内容包括进来。
<div style="border: 1pt dashed blue; background : grey; padding: 1em 1em;">
{{:Help:Transclusion Demo}}</div></td>
<td>
<pre><nowiki>{{</nowiki>:Help:Transclusion Demo<nowiki>}}</nowiki></pre></td>
</tr>
<tr valign="bottom">
<td>
;[[Help:Template|template]]
:模版
一种为引用而特殊设计的页面。这些页面位于'''模版:''' [[help:namespace|namespace]]
模版甚至可以接受参数。
当你编辑的时候,页面上使用的所有模版会在编辑框下面列出。
<div style="border: 1pt dashed blue; background : grey; padding: 1em 1em;">
{{H:title|hovertext|This is underlined}}</div></td>
<td>
<pre><nowiki>{{H:title|hovertext|This is underlined}}</nowiki></pre></td></tr>
</table>
{{DEFAULTSORT:Gaojibian}}
[[分类:帮助]]