示例一:
<?xml version="1.0" encoding="UTF-8"?>
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<xsd:element name="FounderEnpML">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="Version" type="xsd:string"/>
<xsd:element ref="Magazine"/>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
<xsd:element name="Magazine">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="Name" type="xsd:string"/>
<xsd:element name="Year" type="xsd:integer"/>
<xsd:element name="IssueNO" type="xsd:integer"/>
<xsd:element name="Press" type="xsd:string"/>
<xsd:element name="PublishDate" type="xsd:date"/>
<xsd:element name="PageCount" type="xsd:integer"/>
<xsd:element name="Language" type="xsd:string"/>
<xsd:element name="Comment" type="xsd:string"/>
<xsd:element ref="Attachement"/>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
<xsd:element name="Attachement">
<xsd:complexType>
<xsd:sequence>
<xsd:element ref="file" minOccurs="6" maxOccurs="6"/>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
<xsd:element name="file">
<xsd:complexType>
<xsd:choice>
<xsd:element name="filename" type="xsd:string" minOccurs="0"/>
<xsd:element name="filepath" type="xsd:string" minOccurs="0"/>
<xsd:element name="file" minOccurs="0" maxOccurs="2">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="filename" type="xsd:string"/>
<xsd:element name="width" type="xsd:string"/>
<xsd:element name="hight" type="xsd:string"/>
<xsd:element name="pixe" type="xsd:string"/>
<xsd:element name="filelength" type="xsd:string"/>
<xsd:element name="page" type="xsd:string"/>
<xsd:element name="category" type="xsd:string"/>
<xsd:element name="color" type="xsd:string"/>
<xsd:element name="description" type="xsd:string"/>
</xsd:sequence>
<xsd:attribute name="type" type="xsd:string"/>
</xsd:complexType>
</xsd:element>
</xsd:choice>
<xsd:attribute name="type" type="xsd:string"/>
</xsd:complexType>
</xsd:element>
</xsd:schema>
XML文件一:
<?xml version="1.0" encoding="UTF-8"?>
<FounderEnpML>
<Version>1.0.0</Version>
<Magazine>
<Name>aaa</Name>
<Year>1981</Year>
<IssueNO>11</IssueNO>
<Press>aaa</Press>
<PublishDate>1981-11-01</PublishDate>
<PageCount>146</PageCount>
<Language>日文</Language>
<Comment></Comment>
<Attachement>
<file type="lowerpdf">
<filename>198111//198111L.PDF</filename>
</file>
<file type="highpdf">
<filename>198111//198111H.PDF</filename>
</file>
<file type="pagepdf">
<filepath>\198111</filepath>
</file>
<file type="pagejpg">
<filepath>\198111</filepath>
</file>
<file type="coverpage">
<file type="lower">
<filename>198111//LC0001.JPG</filename>
<width></width>
<hight></hight>
<pixe></pixe>
<filelength></filelength>
<page></page>
<category></category>
<color></color>
<description></description>
</file>
<file type="high">
<filename>198111//C0001.JPG</filename>
<width></width>
<hight></hight>
<pixe></pixe>
<filelength></filelength>
<page></page>
<category></category>
<color></color>
<description></description>
</file>
</file>
<file type="catalog">
<filename>198111//198111ML.XML</filename>
</file>
</Attachement>
</Magazine>
</FounderEnpML>
示例二:
<?xml version="1.0" encoding="UTF-8"?>
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<xsd:element name="FounderEnpML">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="Version" type="xsd:string"/>
<xsd:element ref="Catalog"/>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
<xsd:element name="Catalog">
<xsd:complexType>
<xsd:sequence>
<xsd:element ref="columns"/>
</xsd:sequence>
<xsd:attribute name="title" type="xsd:string"/>
<xsd:attribute name="titlesecond" type="xsd:string"/>
<xsd:attribute name="sface1" type="xsd:string"/>
<xsd:attribute name="sface2" type="xsd:string"/>
<xsd:attribute name="sface3" type="xsd:string"/>
<xsd:attribute name="sface4" type="xsd:string"/>
<xsd:attribute name="note" type="xsd:string"/>
</xsd:complexType>
</xsd:element>
<xsd:element name="columns">
<xsd:complexType>
<xsd:sequence>
<xsd:element ref="column" minOccurs="0" maxOccurs="unbounded"/>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
<xsd:element name="column">
<xsd:complexType>
<xsd:sequence>
<xsd:element ref="files" minOccurs="0"/>
<xsd:element ref="column" minOccurs="0" maxOccurs="unbounded"/>
</xsd:sequence>
<xsd:attribute name="iscolumn" type="xsd:integer"/>
<xsd:attribute name="name" type="xsd:string"/>
<xsd:attribute name="fname" type="xsd:string"/>
<xsd:attribute name="columnbak" type="xsd:string"/>
<xsd:attribute name="fileid" type="xsd:string"/>
<xsd:attribute name="title" type="xsd:string"/>
<xsd:attribute name="words" type="xsd:string"/>
<xsd:attribute name="pages" type="xsd:string"/>
<xsd:attribute name="pagenumber" type="xsd:string"/>
<xsd:attribute name="author" type="xsd:string"/>
<xsd:attribute name="editor" type="xsd:string"/>
<xsd:attribute name="images" type="xsd:string"/>
<xsd:attribute name="note" type="xsd:string"/>
<xsd:attribute name="from" type="xsd:string"/>
<xsd:attribute name="frommsg" type="xsd:string"/>
</xsd:complexType>
</xsd:element>
<xsd:element name="files">
<xsd:complexType>
<xsd:sequence>
<xsd:element ref="file" minOccurs="0" maxOccurs="unbounded"/>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
<xsd:element name="file">
<xsd:complexType>
<xsd:attribute name="name" type="xsd:string"/>
<xsd:attribute name="fname" type="xsd:string"/>
<xsd:attribute name="columnbak" type="xsd:string"/>
<xsd:attribute name="fileid" type="xsd:string"/>
<xsd:attribute name="title" type="xsd:string"/>
<xsd:attribute name="words" type="xsd:integer"/>
<xsd:attribute name="pages" type="xsd:string"/>
<xsd:attribute name="pagenumber" type="xsd:string"/>
<xsd:attribute name="author" type="xsd:string"/>
<xsd:attribute name="editor" type="xsd:string"/>
<xsd:attribute name="images" type="xsd:integer"/>
<xsd:attribute name="note" type="xsd:string"/>
<xsd:attribute name="from" type="xsd:integer"/>
<xsd:attribute name="frommsg" type="xsd:string"/>
</xsd:complexType>
</xsd:element>
</xsd:schema>
XML二:
<?xml version="1.0" encoding="UTF-8"?>
<FounderEnpML>
<Version>1.0.0</Version>
<Catalog title="aaa" titlesecond="" sface1="" sface2="" sface3="" sface4="" note="">
<columns>
<column iscolumn="1" name="グラフ" fname="" columnbak="" fileid="" title="" words="" pages="" pagenumber="" author="" editor="" images="" note="" from="0" frommsg="(+)">
<files>
<file name="" fname="" columnbak="" fileid="8111041.XML" title="雲南少数民族の頭飾りと服飾" words="3633" pages="C0002,0002ins001,0002ins002,0002ins003,0002ins004,0002ins005,0002ins006,0002ins007,0002ins008" pagenumber="" author="" editor="" images="28" note="" from="0" frommsg="(+)"/>
</files>
<column iscolumn="2" name="連載 旅" fname="" columnbak="" fileid="" title="" words="" pages="" pagenumber="" author="" editor="" images="" note="" from="0" frommsg="(+)">
<files>
<file name="" fname="" columnbak="" fileid="8111042.XML" title="興安、竜勝、陽朔" words="3520" pages="136,137,138,139,140,141,142,143" pagenumber="" author="" editor="" images="14" note="" from="0" frommsg="(+)"/>
</files>
</column>
<column iscolumn="2" name="映画" fname="" columnbak="" fileid="" title="" words="" pages="" pagenumber="" author="" editor="" images="" note="" from="0" frommsg="(+)">
<files>
<file name="" fname="" columnbak="" fileid="8111045.XML" title="南郭先生" words="435" pages="070,071" pagenumber="" author="" editor="" images="3" note="" from="0" frommsg="(+)"/>
<file name="" fname="" columnbak="" fileid="8111046.XML" title="愚人、くつを買う" words="460" pages="070,071" pagenumber="" author="" editor="" images="3" note="" from="0" frommsg="(+)"/>
<file name="" fname="" columnbak="" fileid="8111047.XML" title="張飛の瓜裁判" words="453" pages="070,071" pagenumber="" author="" editor="" images="3" note="" from="0" frommsg="(+)"/>
</files>
</column>
<column iscolumn="2" name="中国の名画" fname="" columnbak="" fileid="" title="" words="" pages="" pagenumber="" author="" editor="" images="" note="" from="0" frommsg="(+)">
<files>
<file name="" fname="" columnbak="" fileid="8111048.XML" title="明人「芙蓉白鷺図」" words="189" pages="072,073" pagenumber="" author="" editor="" images="1" note="" from="0" frommsg="(+)"/>
</files>
</column>
<column iscolumn="2" name="古文物" fname="" columnbak="" fileid="" title="" words="" pages="" pagenumber="" author="" editor="" images="" note="" from="0" frommsg="(+)">
<files>
<file name="" fname="" columnbak="" fileid="8111049.XML" title="五代·奔鹿文注子" words="161" pages="074" pagenumber="" author="" editor="" images="1" note="" from="0" frommsg="(+)"/>
</files>
</column>
<column iscolumn="2" name="書道鑑賞" fname="" columnbak="" fileid="" title="" words="" pages="" pagenumber="" author="" editor="" images="" note="" from="0" frommsg="(+)">
<files>
<file name="" fname="" columnbak="" fileid="8111050.XML" title="清·鄧石如の篆書" words="188" pages="135" pagenumber="" author="" editor="" images="2" note="" from="0" frommsg="(+)"/>
</files>
</column>
</column>
</column>
</columns>
</Catalog>
</FounderEnpML>
示例三:
<?xml version="1.0" encoding="UTF-8"?>
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<xsd:element name="FounderEnpML">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="Version" type="xsd:string"/>
<xsd:element ref="Article"/>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
<xsd:element name="Article">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="DocID" type="xsd:string"/>
<xsd:element name="Title" type="xsd:string"/>
<xsd:element name="Subtitle" type="xsd:string"/>
<xsd:element name="Author" type="xsd:string"/>
<xsd:element name="PublishDate" type="xsd:string"/>
<xsd:element name="Year" type="xsd:integer"/>
<xsd:element name="IssueNO" type="xsd:integer"/>
<xsd:element name="Language" type="xsd:string"/>
<xsd:element name="ImageCount" type="xsd:string"/>
<xsd:element name="Magazine" type="xsd:string"/>
<xsd:element name="Column" type="xsd:string"/>
<xsd:element name="Secondcolum" type="xsd:string"/>
<xsd:element name="Category" type="xsd:string"/>
<xsd:element name="Press" type="xsd:string"/>
<xsd:element name="Page" type="xsd:string"/>
<xsd:element name="Abstract" type="xsd:string"/>
<xsd:element ref="Content"/>
<xsd:element ref="Attachement" minOccurs="0" maxOccurs="unbounded"/>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
<xsd:element name="Content">
<xsd:complexType>
<xsd:sequence>
<xsd:group ref="contentgroup" minOccurs="0" maxOccurs="unbounded"/>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
<xsd:element name="Attachement">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="file">
<xsd:complexType>
<xsd:sequence>
<xsd:element ref="file" minOccurs="2" maxOccurs="2"/>
</xsd:sequence>
<xsd:attribute name="type" type="xsd:string"/>
</xsd:complexType>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
<xsd:element name="file">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="filename" type="xsd:string"/>
<xsd:element name="width" type="xsd:integer"/>
<xsd:element name="hight" type="xsd:integer"/>
<xsd:element name="pixe" type="xsd:string"/>
<xsd:element name="filelength" type="xsd:string"/>
<xsd:element name="page" type="xsd:string"/>
<xsd:element name="category" type="xsd:string"/>
<xsd:element name="color" type="xsd:string"/>
<xsd:element ref="description"/>
</xsd:sequence>
<xsd:attribute name="type" type="xsd:string"/>
</xsd:complexType>
</xsd:element>
<xsd:element name="image">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="filename" type="xsd:string"/>
<xsd:element ref="description" minOccurs="0" maxOccurs="unbounded"/>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
<xsd:element name="blockquote" type="content_type"/>
<xsd:element name="p" type="content_type"/>
<xsd:element name="b" type="content_type"/>
<xsd:element name="i" type="content_type"/>
<xsd:element name="h1" type="content_type"/>
<xsd:element name="h2" type="content_type"/>
<xsd:element name="h3" type="content_type"/>
<xsd:element name="description" type="content_type"/>
<xsd:complexType name="content_type" mixed="true">
<xsd:sequence>
<xsd:group ref="contentgroup" minOccurs="0" maxOccurs="unbounded"/>
</xsd:sequence>
<xsd:attribute name="style" type="xsd:string"/>
<xsd:attribute name="align" type="xsd:string"/>
<xsd:attribute name="id" type="xsd:string"/>
<xsd:attribute name="class" type="xsd:string"/>
<xsd:attribute name="title" type="xsd:string"/>
<xsd:attribute name="lang" type="xsd:string"/>
</xsd:complexType>
<xsd:group name="contentgroup">
<xsd:choice>
<xsd:element name="br"/>
<xsd:element name="hr"/>
<xsd:element ref="p"/>
<xsd:element ref="h1"/>
<xsd:element ref="h2"/>
<xsd:element ref="h3"/>
<xsd:element ref="image"/>
<xsd:element ref="blockquote"/>
<xsd:element ref="i"/>
<xsd:element ref="b"/>
</xsd:choice>
</xsd:group>
</xsd:schema>
XML三:
<?xml version="1.0" encoding="UTF-8"?>
<FounderEnpML>
<Version>1.0.0</Version>
<Article>
<DocID></DocID>
<Title>1 風邪を防ぐ体操</Title>
<Subtitle></Subtitle>
<Author>趙勲皋</Author>
<PublishDate>1981-11-01</PublishDate>
<Year>1981</Year>
<IssueNO>11</IssueNO>
<Language>日文</Language>
<ImageCount>14</ImageCount>
<Magazine>aa</Magazine>
<Column>特集 中国伝統の四つの「健身法」</Column>
<Secondcolum></Secondcolum>
<Category></Category>
<Press>aaa</Press>
<Page>012,013,014,015,016</Page>
<Abstract></Abstract>
<Content>
<image><filename>L0012.T001.JPG</filename><description><p></p>
<p>「練功十八法」<br/>
「リューマチに効く体操」</p>
<p></p></description></image>
<image><filename>L0013.T001.JPG</filename><description><p></p>
<p>「風邪を防ぐ体操」</p>
<p></p></description></image>
<image><filename>L0013.T002.JPG</filename><description><p></p>
<p>腰を鍛える体操</p>
<p></p></description></image>
<image><filename>L0014.T001.JPG</filename><description><p></p>
<p>風邪を防ぐ体操の指導にあたる、南京市衛生防疫所の趙勲皋主任医師(中央向かって左。この体操の発案者)と王中和医師(同右)。</p>
<p></p></description></image>
<p style="text-indent:30pt" align="justify">私の家のとなりに小さい娘さんがいるが、かしこくて礼儀正しく、なかなか感じがいい。ただ、体質がよわく、しょっちゅう風邪をひいては、その都度私のところへ看せにくる。</p>
<p style="text-indent:30pt" align="justify">一度も、私が、体温をはからせ、胸部を見てから、処方を書こうとしていると、その子が思いつめた顔をしてこう言うではないか。「趙おじさん、お薬ものまず、そして鍼(はり)も打たないで風邪がなおせたら、いいでしょうねぇ」</p>
<p style="text-indent:30pt" align="justify">「そりゃ、いいだろうねぇ」私は彼女の語調をまねて言った。「でも、いまのところ、そんないい方法がないんだよね」</p>
<p style="text-indent:30pt" align="justify">そう聞くと、ずいぶんがっかりした顔をしたので、私は笑顔をつくろい、彼女にもう一度、風邪を引かないための心得を言ってやったのだった。</p>
<p style="text-indent:30pt" align="justify">こんなことがあってからというもの、風邪を引いて職場や学校を休んだり、風邪がもとでやっかいな合併症を併発したりする患者を見ると、となりの娘さんの「いいでしょうねぇ」を想い出してしまうのである。</p>
<p style="text-indent:30pt" align="justify">そこで、自分の勤め先の衛生防疫所にも、テーマとして感冒の予防方法を提出し、なん度も討論した結果、所の研究テーマのひとつに正式に加えられ、一九七三年から研究開始ということになった。</p>
<p style="text-indent:30pt" align="justify">漢方医学の経絡(けいらく)学説によると、あるツボ(穴位)に鍼(はり)·灸(きゆう)をしたり按摩をしたりすると、気血がめぐり経絡が通じて、人体の防御機能を促進させる作用があり、病気に対する抵抗力も向上する。この理論をよりどころに私たちは一種の体操を考えだした。この体操をひととおりやると、感冒、発熱、せきなどの予防治療に効果のあるツボを、按摩することができる。</p>
<p style="text-indent:30pt" align="justify">私たちはこの“感冒予防保健体操”をある病院と小学校で試験的にやってみてもらい、結果をしらべたが、治療効果は上々だった。たとえば、慢性気管支炎、肺気腫の患者一一三名のグループで、この保健体操を三年間やった結果をみると、風邪を引きやすい者(一年に五回以上風邪を引くもの)の数は、七八名から一四名に減少し、一度も風邪を引かないものは、三名から一一名となった。また、風邪を引いても、その症状がかるくなり、気管支炎その他の併発も少なくなった。</p>
<p style="text-indent:30pt" align="justify">一方、小学生の場合、二二二五名の集団を二つに分け、一一五五人にこの体操をさせ、残り一〇七〇人にはさせないで、新学年九月から翌年の二月までの六ヵ月間を観察したところ、体操をやらなかったグループでは風邪を引いたのは二二八人(発病率二六·九一%)、やったグループでは一二〇人(同一〇·三八%)であった。</p>
<p style="text-indent:30pt" align="justify">この保健体操は、現在すでに、全国の多くの地区に普及しており、感冒予防に一役買っている。一九七八年に行なわれた全国衛生科学大会では、成果のあがった研究として奨励を受けた。</p>
<p style="text-indent:30pt" align="justify">さて、この感冒予防体操は全部で四段からなるが、以下にそのやり方を説明しよう。</p>
<h1>第一段 鼻を擦(こす)る</h1>
<p style="text-indent:30pt" align="justify"><b>動作に入る前に</b>―両手の指を組み合わせてにぎり、親ゆびのつけ根(母指球にちかいところ)どうしをあつくなるまでこする。4まで数え、それを8回くりかえす。(以下4×8回で表わす)(写真1)</p>
<p style="text-indent:30pt" align="justify"><b>動作</b>―両手は組み合わせたまま、暖かくなった両親ゆびで、眉間の印堂穴(つぼ)からはじめ、上から下へ鼻のワキを迎香穴(つぼ)までこすりおろす。(8×8回)(<b>図1、写真2</b>)</p>
<p style="text-indent:30pt" align="justify"><b>目的</b>―局部の血液の循環をよくし、気血をめぐらせ経絡を通じさせて、外邪(外部からの邪気)を入りにくくする。</p>
<p style="text-indent:30pt" align="justify"><b>注意</b>―力の入れ方は、強すぎたり軽すぎたりしないように。適度を保つこと。</p>
<image><filename>L0015.T001.JPG</filename><description><p></p><p></p></description></image>
<h1>第二段 合谷を按(も)む</h1>
<p style="text-indent:30pt" align="justify"><b>動作</b>―まず右手の親ゆびで左手の合谷穴(つぼ)(図2)をおさえ、はじめ一方向に、つぎに逆方向に、指先をグルグル回しながらもみこむ(8×8回)。</p>
<p style="text-indent:30pt" align="justify">すんだら、こんどは、左手の親ゆびで右手の合谷穴をおさえ、同じ動作をする。(8×8回)(写真3)</p>
<p style="text-indent:30pt" align="justify"><b>目的</b>―もみこむと寒気を避ける効果がある。</p>
<p style="text-indent:30pt" align="justify"><b>注意</b>―図をよく見て、正確にツボをおさえること。</p>
<p style="text-indent:30pt" align="justify">ほどよくおさえて、だるくておもい感じがあれば、そこがツボである。</p>
<image><filename>L0015.T002.JPG</filename><description><p></p><p></p></description></image>
<image><filename>L0015.T003.JPG</filename><description><p></p>
<p>写真1</p>
<p></p></description></image>
<image><filename>L0015.T004.JPG</filename><description><p></p>
<p>写真2</p>
<p></p></description></image>
<image><filename>L0015.T005.JPG</filename><description><p></p>
<p>写真3</p>
<p></p></description></image>
<image><filename>L0016.T001.JPG</filename><description><p></p>
<p>写真4</p>
<p></p></description></image>
<image><filename>L0016.T002.JPG</filename><description><p></p>
<p>写真5</p>
<p></p></description></image>
<image><filename>L0016.T003.JPG</filename><description><p></p>
<p>写真6</p>
<p></p></description></image>
<image><filename>L0016.T004.JPG</filename><description><p></p>
<p>写真7</p>
<p></p></description></image>
<h1>第三段 面(かお)を浴(な)で、耳を拉(ひ)っぱる</h1>
<p style="text-indent:30pt" align="justify"><b>動作に入る前に</b>―両の手のひらをすりあわせてあつくする。(4×8回)(写真4)</p>
<p style="text-indent:30pt" align="justify"><b>動作</b>―両方の手のひらをぴったり額にはりつけ(<b>写真5</b>)、鼻の両わきにそって下あこのところまでなでおろす。つづいて、顔の両側にそって上へなであげるが、その際、耳のところで親ゆびと人指しゆびで耳たぶをはさんで、軽く外向きにひっぱるようにする。(8×8回)(<b>図3、写真6</b>)</p>
<p style="text-indent:30pt" align="justify"><b>目的</b>―顔をなでて顔面の血液の循環をよくする。また、耳は経脈(けいみやく)が集まっているところなので、耳たぶをひっぱると保健上いい効果がある。</p>
<p style="text-indent:30pt" align="justify"><b>注意</b>―手のひらはなるべくぴったり顔面にあて、なでたときあつくなるぐらいにする。耳たぶをはさんでひっぱるときは外側に向けてひっぱること。</p>
<p style="text-indent:30pt" align="justify">耳たぶがあかくなるくらいまでやってよい。</p>
<image><filename>L0016.T005.JPG</filename><description><p></p>
<p>図3<br/>
顔をなで耳をひっぱる順序</p>
<p></p></description></image>
<h1>第四段 迎香穴を揉(も)む</h1>
<p style="text-indent:30pt" align="justify"><b>動作</b>―両手の人指しゆびで鼻の両側の迎香穴(鼻翼のワキ一センチ半くらいのところにある)をもみこむ。(8×8回)(<b>図1、写真7</b>)</p>
<p style="text-indent:30pt" align="justify"><b>目的</b>―経絡を通じさせ、鼻のとおりをよくする。</p>
<p style="text-indent:30pt" align="justify"><b>注意</b>―ツボを正しくさがしあてること。ツボにあたると重くてだるい感じがする。適度の力でもみこむこと。</p>
<h1>一般的注意事項</h1>
<p style="text-indent:30pt" align="justify">この体操をやるときは、次のことに注意すること。</p>
<p style="text-indent:30pt" align="justify">一、両手をよく洗い、ツメを切っておく。</p>
<p style="text-indent:30pt" align="justify">二、毎日一回、必ず毎日つづけること。</p>
<p style="text-indent:30pt" align="justify">やったりやらなかったりでは、だめ。</p>
<p style="text-indent:30pt" align="justify">(<b>南京市衛生防疫所主任医師</b>)</p>
<p></p>
</Content>
<Attachement>
<file type="image">
<file type="lower">
<filename>L0012.T001.JPG</filename>
<width>434</width>
<hight>556</hight>
<pixe></pixe>
<filelength></filelength>
<page></page>
<category></category>
<color></color>
<description>
「練功十八法」<br/>
「リューマチに効く体操」
</description>
</file>
<file type="high">
<filename>0012.T001.JPG</filename>
<width>1807</width>
<hight>2317</hight>
<pixe></pixe>
<filelength></filelength>
<page></page>
<category></category>
<color></color>
<description>
「練功十八法」<br/>
「リューマチに効く体操」
</description>
</file>
</file>
</Attachement>
<Attachement>
<file type="image">
<file type="lower">
<filename>L0013.T001.JPG</filename>
<width>207</width>
<hight>282</hight>
<pixe></pixe>
<filelength></filelength>
<page></page>
<category></category>
<color></color>
<description>
「風邪を防ぐ体操」
</description>
</file>
<file type="high">
<filename>0013.T001.JPG</filename>
<width>864</width>
<hight>1176</hight>
<pixe></pixe>
<filelength></filelength>
<page></page>
<category></category>
<color></color>
<description>
「風邪を防ぐ体操」
</description>
</file>
</file>
</Attachement>
<Attachement>
<file type="image">
<file type="lower">
<filename>L0013.T002.JPG</filename>
<width>155</width>
<hight>224</hight>
<pixe></pixe>
<filelength></filelength>
<page></page>
<category></category>
<color></color>
<description>
腰を鍛える体操
</description>
</file>
<file type="high">
<filename>0013.T002.JPG</filename>
<width>644</width>
<hight>933</hight>
<pixe></pixe>
<filelength></filelength>
<page></page>
<category></category>
<color></color>
<description>
腰を鍛える体操
</description>
</file>
</file>
</Attachement>
<Attachement>
<file type="image">
<file type="lower">
<filename>L0014.T001.JPG</filename>
<width>306</width>
<hight>133</hight>
<pixe></pixe>
<filelength></filelength>
<page></page>
<category></category>
<color></color>
<description>
風邪を防ぐ体操の指導にあたる、南京市衛生防疫所の趙勲皋主任医師(中央向かって左。この体操の発案者)と王中和医師(同右)。
</description>
</file>
<file type="high">
<filename>0014.T001.JPG</filename>
<width>1273</width>
<hight>556</hight>
<pixe></pixe>
<filelength></filelength>
<page></page>
<category></category>
<color></color>
<description>
風邪を防ぐ体操の指導にあたる、南京市衛生防疫所の趙勲皋主任医師(中央向かって左。この体操の発案者)と王中和医師(同右)。
</description>
</file>
</file>
</Attachement>
<Attachement>
<file type="image">
<file type="lower">
<filename>L0015.T001.JPG</filename>
<width>102</width>
<hight>90</hight>
<pixe></pixe>
<filelength></filelength>
<page></page>
<category></category>
<color></color>
<description>
</description>
</file>
<file type="high">
<filename>0015.T001.JPG</filename>
<width>427</width>
<hight>373</hight>
<pixe></pixe>
<filelength></filelength>
<page></page>
<category></category>
<color></color>
<description>
</description>
</file>
</file>
</Attachement>
<Attachement>
<file type="image">
<file type="lower">
<filename>L0015.T002.JPG</filename>
<width>215</width>
<hight>100</hight>
<pixe></pixe>
<filelength></filelength>
<page></page>
<category></category>
<color></color>
<description>
</description>
</file>
<file type="high">
<filename>0015.T002.JPG</filename>
<width>896</width>
<hight>418</hight>
<pixe></pixe>
<filelength></filelength>
<page></page>
<category></category>
<color></color>
<description>
</description>
</file>
</file>
</Attachement>
<Attachement>
<file type="image">
<file type="lower">
<filename>L0015.T003.JPG</filename>
<width>166</width>
<hight>198</hight>
<pixe></pixe>
<filelength></filelength>
<page></page>
<category></category>
<color></color>
<description>
写真1
</description>
</file>
<file type="high">
<filename>0015.T003.JPG</filename>
<width>692</width>
<hight>827</hight>
<pixe></pixe>
<filelength></filelength>
<page></page>
<category></category>
<color></color>
<description>
写真1
</description>
</file>
</file>
</Attachement>
<Attachement>
<file type="image">
<file type="lower">
<filename>L0015.T004.JPG</filename>
<width>167</width>
<hight>273</hight>
<pixe></pixe>
<filelength></filelength>
<page></page>
<category></category>
<color></color>
<description>
写真2
</description>
</file>
<file type="high">
<filename>0015.T004.JPG</filename>
<width>696</width>
<hight>1139</hight>
<pixe></pixe>
<filelength></filelength>
<page></page>
<category></category>
<color></color>
<description>
写真2
</description>
</file>
</file>
</Attachement>
<Attachement>
<file type="image">
<file type="lower">
<filename>L0015.T005.JPG</filename>
<width>165</width>
<hight>120</hight>
<pixe></pixe>
<filelength></filelength>
<page></page>
<category></category>
<color></color>
<description>
写真3
</description>
</file>
<file type="high">
<filename>0015.T005.JPG</filename>
<width>688</width>
<hight>499</hight>
<pixe></pixe>
<filelength></filelength>
<page></page>
<category></category>
<color></color>
<description>
写真3
</description>
</file>
</file>
</Attachement>
<Attachement>
<file type="image">
<file type="lower">
<filename>L0016.T001.JPG</filename>
<width>163</width>
<hight>185</hight>
<pixe></pixe>
<filelength></filelength>
<page></page>
<category></category>
<color></color>
<description>
写真4
</description>
</file>
<file type="high">
<filename>0016.T001.JPG</filename>
<width>681</width>
<hight>769</hight>
<pixe></pixe>
<filelength></filelength>
<page></page>
<category></category>
<color></color>
<description>
写真4
</description>
</file>
</file>
</Attachement>
<Attachement>
<file type="image">
<file type="lower">
<filename>L0016.T002.JPG</filename>
<width>164</width>
<hight>125</hight>
<pixe></pixe>
<filelength></filelength>
<page></page>
<category></category>
<color></color>
<description>
写真5
</description>
</file>
<file type="high">
<filename>0016.T002.JPG</filename>
<width>682</width>
<hight>522</hight>
<pixe></pixe>
<filelength></filelength>
<page></page>
<category></category>
<color></color>
<description>
写真5
</description>
</file>
</file>
</Attachement>
<Attachement>
<file type="image">
<file type="lower">
<filename>L0016.T003.JPG</filename>
<width>164</width>
<hight>122</hight>
<pixe></pixe>
<filelength></filelength>
<page></page>
<category></category>
<color></color>
<description>
写真6
</description>
</file>
<file type="high">
<filename>0016.T003.JPG</filename>
<width>685</width>
<hight>510</hight>
<pixe></pixe>
<filelength></filelength>
<page></page>
<category></category>
<color></color>
<description>
写真6
</description>
</file>
</file>
</Attachement>
<Attachement>
<file type="image">
<file type="lower">
<filename>L0016.T004.JPG</filename>
<width>162</width>
<hight>121</hight>
<pixe></pixe>
<filelength></filelength>
<page></page>
<category></category>
<color></color>
<description>
写真7
</description>
</file>
<file type="high">
<filename>0016.T004.JPG</filename>
<width>677</width>
<hight>503</hight>
<pixe></pixe>
<filelength></filelength>
<page></page>
<category></category>
<color></color>
<description>
写真7
</description>
</file>
</file>
</Attachement>
<Attachement>
<file type="image">
<file type="lower">
<filename>L0016.T005.JPG</filename>
<width>109</width>
<hight>92</hight>
<pixe></pixe>
<filelength></filelength>
<page></page>
<category></category>
<color></color>
<description>
図3<br/>
顔をなで耳をひっぱる順序
</description>
</file>
<file type="high">
<filename>0016.T005.JPG</filename>
<width>456</width>
<hight>385</hight>
<pixe></pixe>
<filelength></filelength>
<page></page>
<category></category>
<color></color>
<description>
図3<br/>
顔をなで耳をひっぱる順序
</description>
</file>
</file>
</Attachement>
</Article>
</FounderEnpML>