<< Chapter < Page | Chapter >> Page > |
list
タグはリストを作成するのに使用されます。
list
タグは2つの属性をもっています。
id
- 固有のIDです。必ず必要です。type
- リストのフォーマットの定義。
type
属性は
bulleted
(ディフォルト)、
enumerated
、
named-item
、
inline
という値を取ります。list
タグには、2つの子要素があります。
name (任意)と
item
です。これらはリストの情報が格納されているところです。
<list id='marinade' type='enumerated'><name>Beer Marinade</name><item>pour beer into large bowl</item><item>add chili powder to taste</item><item>squeeze half lime into beer marinade</item><item>place steak in beer, let soak for 30 minutes</item></list>
結果はこのようになります。
CNXML0.5では2つの新しいタイプのリストを使うことができます。最初のタイプはnamed itemリストです。このタイプのリストを使うには、listタグの
type
属性に
named-item
と指定してください。名前のあるリストの各アイテムは名前を持ちます。
<list id='marinade' type='named-item'><name>Beer Marinade</name><item><name>Step 1</name>pour beer into large bowl</item><item><name>Step 2</name>add chili powder to taste</item><item><name>Step 3</name>squeeze half lime into beer marinade</item><item><name>Step 4</name>place steak in beer, let soak for 30 minutes</item></list>
結果はこのようになります。
もう1つの新しいタイプのリストはinlineリストです。このタイプのリストは以下のようになります。
In order to make a good marinade follow these directions:<list
id='marinade' type='inline'><name>Beer Marinade</name><item><name>Step 1</name>pour beer into large bowl</item><item><name>Step 2</name>add chili powder to taste</item><item><name>Step 3</name>squeeze half lime into beer marinade</item><item><name>Step 4</name>place steak in beer, let soak for 30 minutes</item></list>.
The resulting list will look like: In order to make a goodmarinade follow these directions:
equation
タグは、ASCIIテキストや数式を表示するための
media などを使って、Connexions内のドキュメントで数式を表示するために使用されます。
最初の子要素は、ASCIIテキストに埋め込まれた media タグの番号に続く、任意の name です。
<equation id="eqn14"><name>Euler's Relation</name><media type='image/gif' src='euler.gif' /></equation>
<equation id='eqn15'><name>Simple Arithmetic</name>11+27=38</equation>
This equation will display as:
definition
タグはConnexionsドキュメントの単語を定義するのに使用されます。それは必ず
id
属性を持ち、
term 、
meaning
、
example という3つの子要素を持ちます。definitionタグの使い方は少し難しいので、
[link] を調べることを忘れないでください。
最初の子要素のタグは、定義された単語や熟語を含む
term タグです。この次にはいろいろな
example を伴った
meaning
タグが来ます。この過程は繰り返されます。
<definition id='tbonedef'><term>T-Bone</term><meaning>"The T-bone steak is cut between 1 and 3 inches thick and comes
from the center section of the short loin. This steak ischaracterized by its T-shape bone, has a fine-grained shell and a
small tenderloin eye,"<cite>http://www.chophousecalgary.com/steak.html</cite>.</meaning><example id='tboneexam'><figure id='tbonefig'><name>T-Bone Steak</name><media type='image/jpeg' src='tbone.jpg'/></figure></example></definition>
rule
タグは、定理、原理、経験則などのルールを、CNXMLドキュメントに挿入するのに使用されます。それは2つの属性を持っています。
id
- 固有のID。必ず必要です。type
- ルールの種類。必ず必要です。(例えば定理、原理、経験則)
statement
タグは
rule
タグの中で使用され、ルールの宣言を定義します。任意の
id
属性を持ちます。また、
para と
equation の2つの子要素を持ちます。
proof
タグは
rule
タグの中で使用され、ルールの証拠をマークします。それは任意の
id
属性を持ち、別のrule、
para 、
equation 、
figure 、
list タグを持つことがあります。
<rule id='murph' type='law'><name>Murphy's Law</name><statement><para id='murphp1'>If there are two or more ways to do something, and one of those
ways can result in a catastrophe, then someone will do it.</para></statement><proof><para id='murphp2'>Edward A. Murphy, Jr. was one of the engineers on the
rocket-sled experiments that were done by the U.S. Air Force in1949 to test human acceleration tolerances (USAF project
MX981). One experiment involved a set of 16 accelerometersmounted to different parts of the subject's body. There were two
ways each sensor could be glued to its mount, and somebodymethodically installed all 16 the wrong way around. Murphy then
made the original form of his pronouncement, which the testsubject (Major John Paul Stapp) quoted at a news conference a
few days later<cite>http://www.lylemariam.com/murphy.htm</cite>.</para></proof></rule>
If there are two or more ways to do something, and
one of those ways can result in a catastrophe, thensomeone will do it. Edward A. Murphy, Jr. was one of the engineers on
the rocket-sled experiments that were done by theU.S. Air Force in 1949 to test human acceleration
tolerances (USAF project MX981). One experimentinvolved a set of 16 accelerometers mounted to
different parts of the subject's body. There weretwo ways each sensor could be glued to its mount,
and somebody methodically installed all 16 the wrongway around. Murphy then made the original form of
his pronouncement, which the test subject (MajorJohn Paul Stapp) quoted at a news conference a few
days later
http://www.lylemariam.com/murphy.htm .Murphy's law
更なる情報は The Advanced CNXML を見てください。または CNXML Spec に相談してください。
Notification Switch
Would you like to follow the 'Connexions tutorial and reference (japanese version)' conversation and receive update notifications?