<< Chapter < Page Chapter >> Page >
This is a basic introduction to the CNXML language. It includes a description on how to begin a CNXML module and also examples of the basic tags needed to start writing in CNXML.

This module contains Connexions documentation which is out-of-date. The contents of this module are provided here for historical purposes only and should not be considered accurate for the current version of the Connexions website. The current (English-language) version of this module can be located at (External Link) . If you have any additional questions or cannot find the answer to your question, please contact techsupport@cnx.org and we will be happy to assist in any way we can.

If you would like to assist Connexions by helping us update this module with an appropriate translation from the current English version, please contact us at cnx@cnx.org as we would appreciate your help with improving our support for non-English-speaking users.

Cnxmlの開始

 CNXMLは、教育的なコンテンツを作成しやすいXMLマークアップ言語です。CNXMLの目標は、特定のプレゼンテーションではなく、コンテンツを伝えることです。 Connexionsプロジェクト は、ドキュメントを格納する第一言語として、Connexions Markup Language (CNXML)が使用されています。さぁ、はじめましょう。

Cnxmlタグ

Document

 すべてのCNXMLドキュメントには、ルートとして document タグがあります。ドキュメントについての全てを含んでいるメタデータや、documentタグ内で含まれれるコンテンツです。CNXMLドキュメントの基本構造を理解することは重要です。構造は以下の通りです。

    Document (root tag)

  • Name (required)
  • Metadata Section (optional)
  • Content Section (required)

ドキュメントを有効にするために必要な追加情報があります。それは Other Required Stuff というタイトルのセクションの下で説明されています。

 documentタグには必須の属性が1つあります。

  • id - ドキュメントに与えられた固有のID(通常、Connexionsプロジェクトから割り当てられます)

Id属性

 CNXMLと他のマークアップ言語の主な違いは id 属性要求です。あるタグは id 属性を含めることを必要とします。それらのタグは以下に記載されています。

  • document
  • para
  • equation
  • rule
  • definition
  • exercise
  • list
 上記のタグのどれかを使用するなら、id属性が必須なので、固有の id を必ず与えてください。例を以下に示します。

<para id='uniqueid1'>This is an example to illustrate the use of the<code>id</code>attribute.</para><para id='uniqueid2'>This paragraph has a different id than the last.</para>
どんなタグも id 属性を含むことができます。特定のタグに含まれた情報にリンクさせたいなら、これは役に立ちます。

ネームスペース

 また document タグは ネームスペース 宣言も含むべきです。 Namespaces はCNXML内で、タグ名の衝突の心配をすることなく、簡単に他のマークアップ言語を使えるようにしてくれます。CNXMLだけを使用する簡単なドキュメントのために、 というCNXMLネームスペース属性を含む必要があります。これは、プリフィックスのないタグがCNXMLで解釈されている間、プリフィックスmがあるタグはMathMLタグとして解釈されることを述べています。

<document id='doc1' xmlns='http://cnx.rice.edu/cnxml'>

Name

  name タグは親要素の名前を保持するために、多くのCNXMLタグで使用されます。このタグはASCIIテキストの情報のみを含むことができます。

<name>Grilling a Good Steak</name>
CNXML 0.5 specification を見て、タグに名前を付けることができるか見てください。

Content

 今あなたは、idとネームスペース情報でセットアップされた document タグを持っています。次にあなたのドキュメントに対して行うことは、内容の追加です。内容とはドキュメントの大半を占めるテキストという意味です。

厳密に言うと、メタデータは内容に関する情報を優先するべきですが、それは後からやりましょう。
 内容の全てが content タグの中に置かれます。すべてのCNXMLドキュメントは1つだけ content タグを持ちます。ドキュメントの中身は content タグの中に位置します。

 構造的なタグは、ドキュメントに構造を与えるため、 content タグの中で使用されているタグです。これらのタグについて下で説明します。

Structure tags

 構造タグは sectionparadocumentcontent です。

  document タグと content タグについては述べました。よって、他のタグに関する短い解説と例を述べましょう。

Para

  para タグを使用することによって、テキストをドキュメントに挿入することができます。各paraはドキュメント内で固有の id を持っています。

<para id='intro'>I have eaten many steaks in my life and none have been more satisfying than the backyard-grill cooked steak. Maybe this is because of therelaxing nature of drinking a beer, being outside, and lounging that accompanies the grilling procedure. Maybe it is because of the aromaof the grill and the beef perfectly seasoned to your taste. Either way, this document shows how a good steak can be prepared.</para>

Get Jobilize Job Search Mobile App in your pocket Now!

Get it on Google Play Download on the App Store Now




Source:  OpenStax, Connexions tutorial and reference (japanese version). OpenStax CNX. Aug 26, 2005 Download for free at http://cnx.org/content/col10298/1.9
Google Play and the Google Play logo are trademarks of Google Inc.

Notification Switch

Would you like to follow the 'Connexions tutorial and reference (japanese version)' conversation and receive update notifications?

Ask