澳大利亚课程数学/风格指南
外观
< 澳大利亚课程数学
这是澳大利亚课程数学维基教科书的风格指南。
请随时为风格指南贡献力量。随着时间的推移,编辑将就维基教科书的风格达成一致意见。
任何好的数学教科书都有很多图片。您可以通过三种方式添加图片
使用维基共享资源上的图片
在维基共享资源上找到图片并直接在维基教科书中使用。维基共享资源是一个知识共享媒体库,可以在整个维基媒体平台(包括维基百科和维基教科书)中使用。
如果您访问维基共享资源并搜索图片,它将有一个唯一的文件名。只需将该文件名直接粘贴到以下代码中
[[File:Pythag anim.gif|250px|Rollover caption - A proof of the Pythagorean Theorem]]
这将显示为
正如您所见,可以使用各种动画 GIF 和视频。
找到图片并将其上传到维基共享资源
这需要登录。图片需要能够在知识共享许可下使用。作者必须已发布它,或者作品必须是公共领域。
上传文件后,维基平台上的任何人都可以轻松地使用它。
创建您自己的图片并将其上传到维基共享资源
同样,这需要注册,但您需要放弃对您作品的知识共享版权。
上传文件后,维基平台上的任何人都可以轻松地使用它。
对于数学文本,在 7 年级及以上使用 LaTeX。维基教科书有一个LaTeX书籍,您可以使用它来熟悉代码。
所有数学文本都需要包含在数学代码标签之间。
例如
<math>2+3=5</math>
看起来像
以下基本运算符将在除最高年级课程以外的所有课程中绝大多数情况下使用。
运算 | LaTeX 代码 | 结果 |
---|---|---|
加法 | 1+2=3 |
|
减法 | 2-1=1 |
|
乘法 | 2\times2=4 |
|
除法 | 2\div2=1 |
|
幂 | 2^2=4 |
|
对数* | \log_2(2)=1 |
- 以下标准函数可以在 LaTeX 中使用
\arccos |
\cos |
\csc |
\exp |
\ker |
\limsup |
\min |
\sinh
|
\arcsin |
\cosh |
\deg |
\gcd |
\lg |
\ln |
\Pr |
\sup
|
\arctan |
\cot |
\det |
\hom |
\lim |
\log |
\sec |
\tan
|
\arg |
\coth |
\dim |
\inf |
\liminf |
\max |
\ sin |
\ tanh
|
在创建问题列表时,列表应为 3 列宽,并使用小写字母进行编号。实现此目标的代码如下。它使用两个元素。第一个是无边框三列表格。此表格将列表中的三列对齐。第二个元素是编号列表。注意每个列表都有一个起始值,该值从上一个列表停止的地方开始。
{| |- <! this line starts a borderless table to space the lists>
|| <! this line creates the first column>
<ol type="a" start="1"> <! this line starts an enumerated list at a>
<li> <math>1+1=</math> <br><br></li> <!each of these lines represent an item on the list>
<li> <math>2-1=</math> <br><br></li>
<li><math>3\times1=</math> <br><br></li>
</ol> <! this line finishes the first list>
|| <! this line starts the next column>
<ol type="a" start="4"> <! this line starts an enumerated list at the fourth letter i.e. d>
<li> <math>1\div2=</math> <br><br></li>
<li> <math>2\times2=</math> <br><br></li>
<li> <math>3-2=</math> <br><br></li>
</ol>
|| <! this line starts the third column>
<ol type="a" start="7">
<li> <math>1+3=</math> <br><br></li>
<li> <math>2^3=</math> <br><br></li>
<li> <math>(3,3)=</math> <br><br></li>
</ol>
|} <! this line ends the table>
这将显示为
|
|
|