XML XML (Extensible Markup Language) ISO SGML (Standard Generalized Markup Language) W3C (World Wide Web Consortium) XML 1.0

Size: px
Start display at page:

Download "XML XML (Extensible Markup Language) ISO SGML (Standard Generalized Markup Language) W3C (World Wide Web Consortium) XML 1.0"

Transcription

1 XML 2-1

2 XML XML (Extensible Markup Language) ISO SGML (Standard Generalized Markup Language) W3C (World Wide Web Consortium) XML

3 XML <?xml version="1.0" encoding="shift_jis"?> <booklist> <book id="kobe:xml"> <title>xml </title> <author> </author> <author> </author> <publisher> </publisher> <price unit="yen">2000</price> </book> <book id="hyogo:java"> <title>java </title> <author> </author> <publisher> </publisher> <price unit="yen">1500</price> <image ref="java_nymon.jpg"/> </book> </booklist> 2-3

4 XML (tag) (attribute) (DTD, XML Schema, Relax NG) 2-4

5 XML XML (document prolog) XML <?xml version="1.0" encoding="shift_jis"?> (document type declaration, ) (document element) 2-5

6 XML <?xml version="1.0" encoding="shift_jis"?> encoding XML UTF-8 UTF-16 ISO-2022-JP (JIS) Shift_JIS ( JIS) EUC-JP ( EUC) UTF-8 (Unicode UTF-8 encoding) UTF-16 (Unicode UTF-16 encoding) standalone 2-6

7 (document type declaration) <!DOCTYPE booklist SYSTEM "booklist.dtd" [ <!ENTITY nada " "> ] > # # DTD # DTD (entity declaration) (entity reference) (entity) ( : &nada;) 2-7

8 (document element) ( )XML < > </ > (content) ( ) < /> 2-8

9 ( ) (attribute) =" " -, _,. : ( ) 2-9

10 (entity) : DTD ( ) : <!ENTITY foo "<foo>bar</foo>"> : XML URL <!ENTITY part1 SYSTEM "part1.xml"> 2-10

11 ( ) ( : &) Unicode ( : ç) ( : &foo;) XML ( : &part1;) 2-11

12 <!-- --> CDATA <![CDATA[& < ]]> <??> 2-12

13 XML <?xml version="1.0" encoding="shift_jis"?> <booklist> <book id="kobe:xml"> <title>xml </title> <author> </author> <author> </author> <publisher> </publisher> <price unit="yen">2000</price> </book> <book id="hyogo:java"> <title>java </title> <author> </author> <publisher> </publisher> <price unit="yen">1500</price> <image ref="java_nyumon.jpg"/> </book> </booklist> 2-13

14 XML ( 1) DOMEcho.java ( ) ELEM: nodename="booklist" ELEM: nodename="book" ATTR: nodename="id" nodevalue="kobe:xml" TEXT: nodename="#text" nodevalue="kobe:xml" ELEM: nodename="title" TEXT: nodename="#text" nodevalue="xml " ELEM: nodename="author" TEXT: nodename="#text" nodevalue=" " ELEM: nodename="author" TEXT: nodename="#text" nodevalue=" " ELEM: nodename="publisher" TEXT: nodename="#text" nodevalue=" " ELEM: nodename="price" ATTR: nodename="unit" nodevalue="yen" TEXT: nodename="#text" nodevalue="yen" TEXT: nodename="#text" nodevalue="2000" 2-14

15 XML ( 2) ELEM: nodename="book" ATTR: nodename="id" nodevalue="hyogo:java" TEXT: nodename="#text" nodevalue="hyogo:java" ELEM: nodename="title" TEXT: nodename="#text" nodevalue="java " ELEM: nodename="author" TEXT: nodename="#text" nodevalue=" " ELEM: nodename="publisher" TEXT: nodename="#text" nodevalue=" " ELEM: nodename="price" ATTR: nodename="unit" nodevalue="yen" TEXT: nodename="#text" nodevalue="yen" TEXT: nodename="#text" nodevalue="1500" ELEM: nodename="image" ATTR: nodename="ref" nodevalue="java_nyumon.jpg" TEXT: nodename="#text" nodevalue="java_nyumon.jpg" 2-15

16 (well-formed) XML XML XML XML (valid) XML XML (schema) 2-16

17 DTD (document type definition) (XML ) BNF <!ELEMENT booklist (book+)> <!ELEMENT book (title, author*, publisher?, price, image?)> <!ATTLIST book id ID #REQUIRED> <!ELEMENT title (#PCDATA)> <!ELEMENT author (#PCDATA)> <!ELEMENT publisher (#PCDATA)> <!ELEMENT price (#PCDATA)> <!ATTLIST price unit (yen dollar) "yen"> <!ELEMENT image EMPTY> <!ATTLIST image ref CDATA #REQUIRED> 2-17

18 (namespaces) xhtml XHTML <?xml version="1.0" encoding="shift_jis"?> <booklist xmlns:xhtml=" <book id="kobe:xml"> <title>xml </title> <author> </author> <author> </author> <publisher> </publisher> <price unit="yen">2000</price> <description> <xhtml:p> XML <xhtml:b> </xhtml:b> </xhtml:p> </description> </book> </booklist> 2-18

19 ( ) XHTML <?xml version="1.0" encoding="shift_jis"?> <booklist> <book id="kobe:xml"> <title>xml </title> <author> </author> <author> </author> <publisher> </publisher> <price unit="yen">2000</price> <description> <p xmlns=" XML <b> </b> </p> </description> </book> </booklist> 2-19

20 CD XML Firefox XML DOMEcho.java XML XML DTD DOMEcho.java 2-20

() < > </ > / HTML SGML HTML 1.1 DTD DTD ( DTD (prolog) )SGML 1. DTD ( ) 2. DTD <!-- DTD-- > <!ELEMENT MAIL - - ((TO,FROM)?,DATE?,BODY) > <!ELEMENT TO

() < > </ > / HTML SGML HTML 1.1 DTD DTD ( DTD (prolog) )SGML 1. DTD ( ) 2. DTD <!-- DTD-- > <!ELEMENT MAIL - - ((TO,FROM)?,DATE?,BODY) > <!ELEMENT TO 2009 2D SGML,XML,HTML 2009 11 11 1 SGML SGML Standard Generalized Markup Language (ISO 8879) (JIS X 4151) < >< >SGML< > < >asakawa@ieee.orgSGML < >SGML SGML Standard Generalized Markup

More information

山梨県ホームページ作成ガイドライン

山梨県ホームページ作成ガイドライン 17 7 ...1...4...4...4...4...5...5 W3C...5...6...6...6...7...8...8...10...10...10... 11...12...12...13...13...13...14...14...14...15...15...16...16...16...16...16...17...18 15 (2003 ) 69.7 81.1 43.6 19.6

More information

¥Í¥Ã¥È¥ï¡¼¥¯¥×¥í¥°¥é¥ß¥ó¥°ÆÃÏÀ

¥Í¥Ã¥È¥ï¡¼¥¯¥×¥í¥°¥é¥ß¥ó¥°ÆÃÏÀ 8 : Web Same Origin Policy : XML :, XML http://www.w3.org/xml/ http://www.w3.org/tr/dom-level-3-core 1 / 31 xml.html: XML xpath-test.html: XPATH valid-test.html: XML (IE ) xslt-test.html: JS XSLT xslt-test.xml:

More information

XSLT 4-1

XSLT 4-1 XSLT 4-1 XSLT XML XML HTML XSLT 1.0 (W3C ) http://www.w3.org/tr/xslt http://www.zvon.org/xxl/xsltreference/output/ ( ) XML 4-2 XSLT XML

More information

() DTD

() DTD 20 5 () 1...1 2...2 3...5 3-1...5 3-2...11 4...13 5...15 5-1...15 5-2...15 6...16 7...18 7-1...18 7-2...19 7-3...20 8...21 8-1...21 8-2...22 8-3...23 1 DTD... 1-1 2 XML... 2-1 3... 3-1 4 XML... 4-1 ()

More information

SGML HTML XML Markup Language Web HTML HTML SGML Standard Generalized Markup Language Markup Language DTD Document Type Definition XML SGML Markup Language HTML XML HTML XML JavaScript JAVA CGI HTML Web

More information

22 9 1... 1 2... 2 3... 3 4... 6 4-1... 6 4-2... 13 4-3... 15 4-4... 17 4-5... 19 5... 23 6... 25 7... 28 7-1... 28 7-2... 29 7-3... 31 8... 32 8-1... 32 8-2... 33 8-3... 34 8-4... 34 1 DTD... 1-1 2 XML...

More information

kby-1-j - 互換モード

kby-1-j  -  互換モード 知識ベース特論第 1 回 Semantic Web(1) 吉岡真治 本講義のすすめかた n トピックス Semantic Web and Ontology 情報検索 テキストからの情報抽出とその応用 大規模データのためのデータベース n 授業資料 ( 前日 ( 火 金 ) の午後には公開 ) http://www-kb.ist.hokudai.ac.jp/~yoshioka/kb/ n 質問 レポートはメールで

More information

XMLの利用(XMLとXSL)

XMLの利用(XMLとXSL) XML の利用 XML(Extensible Markup Language) とは XML の基礎知識 XML とは WC(World Wide Web Consortium) で標準化された情報記述言語で有る 情報記述言語には HTML(Hyper Text Markup Language) が有り インターネット上の文書を標準化し世界規模の文書の閲覧を可能に仕たが 固定的なタグしか使用出来ない為

More information

Ver.5.02 2 1 1 2. 1 3 1 3.1 3.2 3.3 3.4 3.5 3.6 3.7 4 2 4.1 4.2 4.3 4.4 4.5 4.6 4.7 5 3 5.1 5.1.1 5.1.2 5.1.3 5.2 5.2.1 5.2.2 1 5.2.3 6 4 6.1 6.1.1 6.1.2 6.1.3 6.2 6.3 6.3.1 6.3.2 6.4 6.4.1 6.4.2 7 13

More information

ohp.mgp

ohp.mgp 2019/06/11 A/B -- HTML/WWW(World Wide Web -- (TA:, [ 1 ] !!? Web Page http://edu-gw2.math.cst.nihon-u.ac.jp/~kurino VNC Server Address : 10.9.209.159 Password : vnc-2019 (2019/06/04 : : * * / / : (cf.

More information

XBRL (extensible Business Reporting Language) 25 EDINET 20 4 EDINET 25 EDINET Contents Contents... 2... 3... 3... 4... 6... 7... 9... 10... 10...11... 13... 15... 18... 18... 22... 22... 22... 23... 23...

More information

XMLテクノロジを使いやすくする

XMLテクノロジを使いやすくする XML 2005 9 XML... 3... 3 XML... 5 DOM XML... 5 DOM 3.0 Load and Save... 5 DOM 3.0 Validation... 8 SAX XML... 11 SAX... 11 XSL... 12... 13... 13... 14... 14 XML... 15 XML... 15 JAXB CLASS GENERATOR... 16

More information

XMLとは、eXtensible Markup Languageの略で、拡張可能なマーク付け言語である

XMLとは、eXtensible Markup Languageの略で、拡張可能なマーク付け言語である XML ... 2... 2... 2... 3... 4... 4... 5... 6... 6... 6... 7... 8... 8... 9... 9... 12... 12... 14... 15... 15... 15... 15... 15... 16... 16... 17... 17... 18... 19... 20... 21... 22... 28... 29... 30 1

More information

XML Tool to Check the Consistency both Software Documents Using XML and Source Programs 1 Summary. Generally, a software consists of source programs a

XML Tool to Check the Consistency both Software Documents Using XML and Source Programs 1 Summary. Generally, a software consists of source programs a XML Tool to Check the Consistency both Software Documents Using XML and Source Programs 1 Summary. Generally, a software consists of source programs and software documents. Programmers, however, tend to

More information

untitled

untitled RFID 15 9 RFID Radio Frequency IDentificationIC ID RFID IC IC RFID 240 Byte PDA Personal Digital Assistants PDA PocketPC 2002 CFTYPE II CF 125 khz 9600 bps 1 ID ID ID GIS 3 CAD ID PDA a PDA PDA b c PDA

More information

1 1 1........................... 1 2.............................. 1 2 2 1........................... 2 2...................... 3 3...................

1 1 1........................... 1 2.............................. 1 2 2 1........................... 2 2...................... 3 3................... 0448051 1 1 1........................... 1 2.............................. 1 2 2 1........................... 2 2...................... 3 3.................... 4 4........................ 6 5...........................

More information

corpus.indd

corpus.indd 特定領域研究 日本語コーパス 平成 22 年度研究成果報告書 (JC-D-10-04) 現代日本語書き言葉均衡コーパス における電子化フォーマット ver.2.2 山口昌也高田智和北村雅則間淵洋子大島一小林正行西部みちる 平成 23 年 2 月 2011 文部科学省科学研究費特定領域研究 代表性を有する大規模日本語書き言葉コーパスの構築: 21 世紀の日本語研究の基盤整備 データ班 (Balanced

More information

HTML文書の作成

HTML文書の作成 99 C HTML 1 1 2 HTML 1 3 2 4 HTML 2 4.1... 2 4.2... 3 4.3... 5 5 HTML 8 5.1... 8 5.2... 10 5.3... 12 6 HTML 13 7 13 1 HTML HTML [1] 2 HTML HTML Hyper-Text Markup Language World Wide Web (WWW)[2] HTML Hyper-Text

More information

XML基礎

XML基礎 基礎から学ぶ XML 特集 - 基本の基本! XML と文法 - インフォテリア株式会社 XML とは XML 1.0 W3Cの勧告 XML 1.1 XML 文書 HTMLとXML XML(Extensible Markup Language) 1.0 拡張可能なマークアップ言語 1998 年にW3Cから勧告された XML 1.0 ベンダーやプラットフォームから独立したインターネット標準 http://www.w3.org/tr/xml/

More information

Title 体 験 話 法 の 機 能 について : 二 重 の 視 点 性 の 観 点 から Author(s) 三 瓶, 裕 文 Citation (37): 17-32 Issue 2012-05 Date Type Journal Article Text Version publisher URL http://hdl.handle.net/10086/25722 Right Hitotsubashi

More information

建築CAD図面作成要領(案)

建築CAD図面作成要領(案) 14 11 1 1. 1 1 1. 2 1 1. 3 2 2. 1 3 2. 2 3 2. 3 3 2. 4 6 3. 1 7 3. 1. 1 7 3. 1. 2 7 3. 2 7 3. 2. 1 7 3. 2. 2 9 CAD 10 13 14 1-11-2 (1) 10 11 12 (2) 1-2 13 2 CAD PDF 10 CAD SXF P21 1 1 CAD SXF CAD 11 3

More information

6 2 1

6 2 1 6 1 6 (1) (2) HTML (3) 1 Web HTML 1 Web 1 Web Web 6 2 1 6 3 1.1 HTML(XHTML) Web HTML(Hyper Text Markup Language) ( ) html htm HTML XHTML(XHTML 1.0 Transitional)

More information

untitled

untitled 25 10 12 11 24 (1) 14 (2) 26 10 44 (3) (4) (5) 27 10 68 (6) (7) (8) 25 10 ( ) (1) (2) (3) ) city.yokohama.lg.jp city.yokohama.jp WEB WEB WEB WEB WEB WEB 1 25 10 WEB WEB (1) (2) (3) (4) 25 10 (1) WEB (2)

More information

1 1 1............................ 1 2.............. 1 3................... 1 4...................... 1 5 Web................. 2 6.....................

1 1 1............................ 1 2.............. 1 3................... 1 4...................... 1 5 Web................. 2 6..................... web 0448039 1 1 1............................ 1 2.............. 1 3................... 1 4...................... 1 5 Web................. 2 6...................... 3 7 HTML CSS.................... 3 8....................

More information

untitled

untitled 1 1 19126 2 1.CALS/EC Continuous Acquisition and Life-Cycle Support /Electronic Commerce 3 4 2. CD-R 5 6 URL: http://www.nilim-ed.jp/index_denshi.htm 7 8 9 INDEX_C.XML ( INDE_C03.DTD (DTDHP MEET() DRAWINGS()

More information

Title スポーツの国際化とスポーツビジネス Author(s) Citation 研究年報, 1988: 46-56 Issue 1988-08-01 Date Type Departmental Bulletin Paper Text Version publisher URL http://doi.org/10.15057/7415 Right Hitotsubashi University

More information

Titleエジプトにおける 私 的 土 地 所 有 権 の 確 立 Author(s) 加 藤, 博 Citation Issue 1983-12-14 Date Type Thesis or Dissertation Text Version publisher URL http://hdl.handle.net/10086/18306 Right Hitotsubashi University

More information

Title だ が 使 われるとき Author(s) 三 枝, 令 子 Citation 一 橋 大 学 留 学 生 センター 紀 要, 4: 3-17 Issue 2001-07-31 Date Type Departmental Bulletin Paper Text Version publisher URL http://hdl.handle.net/10086/8580 Right Hitotsubashi

More information

経営論集2011_07_小松先生.indd

経営論集2011_07_小松先生.indd 20 1 2010 103 125 HTML+CSS HTML CSS CMS Web CMS CMS CMS CMS DreamWeaver Web Web CMS Web Web CSS Web Eclipse HTML CSS Web Web HTML CSS Web HTML CSS Web HTML CSS Web 1 Web Web HTML Web 103 HTML+CSS Web HTML

More information

ルール&マナー集_社内版)_修正版.PDF

ルール&マナー集_社内版)_修正版.PDF WWW(World Wide Web) Web 12 WWW ID 2 1 2 3 4 WWW World Wide Web 5 5 A B 11 http://www.enc.or.jp/enc/code/rule/main.html 12 3 ... 2 1... 5 1.1... 5 1.2... 5 1.3... 6 1.4... 7 2... 9 2.1... 9 2.2 ID... 10

More information

Title 産 業 化 の 理 論 としてのマーケティング Author(s) 山 下, 裕 子 Citation 一 橋 論 叢, 113(4): 379-398 Issue 1995-04-01 Date Type Departmental Bulletin Paper Text Version publisher URL http://doi.org/10.15057/12225 Right

More information

Title 開 化 新 聞 石 川 新 聞 の 出 版 史 的 考 察 : 明 治 初 期 地 方 紙 出 版 の 一 モデル Author(s) 磯 部, 敦 Citation 書 物 出 版 と 社 会 変 容, 1: 143-171 Issue 2006-04-20 Date Type Journal Article Text Version publisher URL http://hdl.handle.net/10086/16581

More information

Title 最 終 講 義 理 論 研 究 における 検 証 と 直 感 Author(s) 石 川, 旺 Journal コミュニケーション 研 究, (39) Issue Date 2009-03-25 Type 紀 要 /Departmental Bulletin Paper Text Version 出 版 者 /Publisher URL http://repository.cc.sophia.ac.jp/d

More information

Titleサービス 活 動 の 海 外 進 出 Author(s) 小 島, 清 Citation 駿 河 台 経 済 論 集, 3(2): 1-34 Issue 1994-03 Date Type Departmental Bulletin Paper Text Version publisher URL http://hdl.handle.net/10086/16723 Right Hitotsubashi

More information

標準XML Schema作成ガイドライン

標準XML Schema作成ガイドライン XML Schema 1.0 2006 5 22 1....1 1.1...1 1.2...2 1.3...2 1.4...3 1.5...3 2....5 2.1...5 2.2 XML...7 2.3...8 3....10 3.1...10 3.2...13 4....17 4.1...17 4.2...19 4.3...22 4.4...25 4.5...26 4.6...26 4.7...27

More information

XQueryってどんなもの?

XQueryってどんなもの? 2 XML Week XML XML XML-DB WG NTT ( ) ymmt@po.ntts.co.jp chiba@isid.co.jp obamikio@jp.ibm.com XQuery SQL SQL SQL XQuery SQL XML XQuery XML XML XPath XML XPath XML XPath XPath XML XML XQuery XML XML XPath

More information

Title 矛盾の神話研究について Author(s) 桑島, 由美子 Citation 一橋研究, 16(3): 221-230 Issue 1991-10-31 Date Type Departmental Bulletin Paper Text Version publisher URL http://doi.org/10.15057/5933 Right Hitotsubashi University

More information

Testing XML Performance

Testing XML Performance - DataPower Technology, Inc. XML Web 2003 5 DATAPOWER XML WEB - Copyright 2003DataPower Technology, Inc. All Rights Reserved. DataPower Technology, Inc. DataPower DataPower ( ) DataPower 2003 5 2/17 DATAPOWER

More information

Microsoft Word - XML.doc

Microsoft Word - XML.doc XML(extensible markup language) ( インターネット時代の ) 拡張可能なタグによる汎用的データ記述言語データを, アプリケーションに依存しない形式で, 内容や意味を表すタグをつけて, テキスト形式で保存する ソフトウェアが意味を理解し情報処理することを目指す semantic Web( コンテンツの意味がコンピュータに理解可能な web, 情報 web から知識 web

More information

Title 責任能力 Author(s) 本庄, 武 ; 山下, 幸夫 Citation 季刊刑事弁護 (71): 176-181 Issue 2012-07 Date Type Journal Article Text Version publisher URL http://hdl.handle.net/10086/26089 Right Hitotsubashi University Repository

More information

Title 財 政 と 統 制 経 済 Author(s) 木 村, 元 一 Citation 一 橋 論 叢, 17(1/2): 49-72 Issue 1947-02-01 Date Type Departmental Bulletin Paper Text Version publisher URL http://doi.org/10.15057/4716 Right Hitotsubashi

More information

Title 椰 子 の 實 : 詩 と 科 学 Author(s) 山 本, 和 平 Citation 一 橋 論 叢, 61(2): 143-154 Issue 1969-02-01 Date Type Departmental Bulletin Paper Text Version publisher URL http://hdl.handle.net/10086/2534 Right Hitotsubashi

More information

Title 中 河 与 一 作 品 年 譜 : 大 正 四 年 ~ 昭 和 三 年 Author(s) 石 川, 偉 子 Citation 言 語 社 会, 2: 354-373 Issue 2008-03-31 Date Type Departmental Bulletin Paper Text Version publisher URL http://doi.org/10.15057/16512

More information

PowerPoint プレゼンテーション

PowerPoint プレゼンテーション TEL:045-866-8114 E-Mail: s-masui@msa.hitachi-sk.co.jp TEL:03-3491-7688 E-Mail: improj@pmcnet.co.jp PMC ( ) http://www.pmcnet.co.jp PS PS PS etc. etc. etc. W3C DOM XML XML B2 Enterprise Publisher

More information

Title 封建都市の変容と都市共同体 Author(s) 豊田, 武 Citation 一橋論叢, 33(1): 1-17 Issue 1955-01-01 Date Type Departmental Bulletin Paper Text Version publisher URL http://doi.org/10.15057/4195 Right Hitotsubashi University

More information

唱 歌 集 の 中 の 外 国 曲 : 小 学 校 唱 歌 集 を 中 心 として Title (2) Author(s) 櫻 井, 雅 人 Citation 言 語 文 化, 42: 3-13 Issue 2005-12-25 Date Type Departmental Bulletin Paper Text Version publisher URL http://doi.org/10.15057/15504

More information

Titleマオリの 島 の 片 隅 で Author(s) 管, 啓 次 郎 Citation 言 語 社 会, 1: 73-88 Issue 2007-03-31 Date Type Departmental Bulletin Paper Text Version publisher URL http://hdl.handle.net/10086/15478 Right Hitotsubashi

More information

Title 浙 東 堕 民 雑 考 Author(s) 木 山, 英 雄 Citation 言 語 文 化, 16: 3-23 Issue 1979-12-20 Date Type Departmental Bulletin Paper Text Version publisher URL http://doi.org/10.15057/9036 Right Hitotsubashi University

More information

Title 棭斎書簡四通 Author(s) 柏崎, 順子 Citation 書物 出版と社会変容, 1: 63-74 Issue 2006-04-20 Date Type Journal Article Text Version publisher URL http://hdl.handle.net/10086/16589 Right Hitotsubashi University Repository

More information

Title 占領期における戦争責任論 Author(s) 吉田, 裕 Citation 一橋論叢, 105(2): 121-138 Issue 1991-02-01 Date Type Departmental Bulletin Paper Text Version publisher URL http://doi.org/10.15057/12550 Right Hitotsubashi University

More information

Title 国 民 年 金 国 民 健 康 保 険 未 加 入 者 の 計 量 分 析 Author(s) 湯 田, 道 生 Citation 経 済 研 究, 57(4): 344-357 Issue 2006-10-25 Date Type Journal Article Text Version publisher URL http://hdl.handle.net/10086/20334 Right

More information

Title 英 語 の 不 定 詞 に 見 られる 主 格 的 機 能 の 発 達 Author(s) 山 川, 喜 久 男 Citation 一 橋 大 學 研 究 年 報. 人 文 科 学 自 然 科 学 研 究, 2: 87-128 Issue 1960-03-31 Date Type Departmental Bulletin Paper Text Version publisher URL

More information

Title 歴 史 の 終 焉 と 環 境 問 題 Author(s) 市 川, 虎 彦 Citation 一 橋 研 究, 15(3): 65-79 Issue 1990-10-31 Date Type Departmental Bulletin Paper Text Version publisher URL http://hdl.handle.net/10086/5968 Right Hitotsubashi

More information

日 本 における 刑 事 手 続 上 の 身 体 拘 束 と 出 入 国 管 理 法 制 の Title 関 係 (3 完 ) Author(s) 肖, 萍 Citation 一 橋 法 学, 6(3): 1359-1391 Issue 2007-11 Date Type Departmental Bulletin Paper Text Version publisher URL http://hdl.handle.net/10086/15126

More information

一 九 三 〇 年 代 二 つのスポーツインターナショナル 関 係 史 Title (I) Author(s) 上 野, 卓 郎 Citation 一 橋 大 学 研 究 年 報. 社 会 学 研 究, 37: 89-207 Issue 1999-03-15 Date Type Departmental Bulletin Paper Text Version publisher URL http://hdl.handle.net/10086/9533

More information

johokiso-char.pdf.pdf

johokiso-char.pdf.pdf 1 2 (2) l ASCIIJISUnicode ISO-2022-JP, Shift_JIS, EUC-JP Web l Copyright 2006-2018 Kota Abe 2018/06/12 3 4 l ()!? 5 6 l : This is a pen. 84 104 105 83 This is a pen. (, encode) () (, decode) l 41 42 43

More information

Title アレキサンドリア 四 重 奏 の 構 成 Author(s) 井 上, 義 夫 Citation 一 橋 論 叢, 88(6): 811-828 Issue 1982-12-01 Date Type Departmental Bulletin Paper Text Version publisher URL http://hdl.handle.net/10086/12988 Right

More information

Title 資 料 編 2 [ 第 2 編 : 百 年 の 出 来 事 ] 第 5 章 : 戦 時 体 制 Author(s) 京 都 大 学 百 年 史 編 集 委 員 会 Citation 京 都 大 学 百 年 史 : 資 料 編 ; 2 (2000): 375-488 Issue Date 2000-10-30 URL http://hdl.handle.net/2433/152912 Right

More information

Title 公債原則の動態理論 Author(s) 松野, 賢吾 Citation 一橋論叢, 9(4): 385-414 Issue 1942-04-20 Date Type Departmental Bulletin Paper Text Version publisher URL http://doi.org/10.15057/4937 Right Hitotsubashi University

More information

Title 留学生アイデンティティの文化論的分析 Author(s) 中本, 進一 Citation 一橋論叢, 129(4): 416-435 Issue 2003-04-01 Date Type Departmental Bulletin Paper Text Version publisher URL http://doi.org/10.15057/10204 Right Hitotsubashi

More information

Title 英 国 経 済 の 発 展 Author(s) 金 子, 鷹 之 助 Citation 一 橋 論 叢, 2(4): 427-448 Issue 1938-10-01 Date Type Departmental Bulletin Paper Text Version publisher URL http://hdl.handle.net/10086/5285 Right Hitotsubashi

More information

日 本 語 とドイツ 語 の 体 験 話 法 について : 間 接 話 法 と 自 由 Title 直 接 話 法 の 間 で Author(s) 三 瓶, 裕 文 Citation 一 橋 論 叢, 115(3): 616-636 Issue 1996-03-01 Date Type Departmental Bulletin Paper Text Version publisher URL http://hdl.handle.net/10086/12094

More information

スライド 1

スライド 1 プログラミング言語処理系論 (3) Design and Implementation of Programming Language Processors 佐藤周行 ( 情報基盤センター / 電気系専攻融合情報学コース ) 仕様とは? 規格とは? 仕様 (Specification): ( 言語が ) みたすべき要求事項の集合 規格 (Standard): ( 複数の仕様の ) 相互運用のために市場である権威のもとに調整された仕様

More information

Title 石 油 と 輸 送 問 題 Author(s) 橋 本, 仁 蔵 Citation 一 橋 論 叢, 48(2): 146-165 Issue 1962-08-01 Date Type Departmental Bulletin Paper Text Version publisher URL http://hdl.handle.net/10086/3329 Right Hitotsubashi

More information

Title 日 本 資 本 主 義 確 立 期 の 三 菱 財 閥 Author(s) 立 松, 潔 Citation 一 橋 研 究, 25: 83-101 Issue 1973-07-01 Date Type Departmental Bulletin Paper Text Version publisher URL http://hdl.handle.net/10086/6612 Right

More information

CONTENTS 0 /JSP 13 0.1 Web 14 1 HTML Web 21 1.1 Web HTML 22 1.2 HTML 27 1.3 Web 33 1.4 HTML 43 1.5 46 1.6 47 1.7 48 2 Web 51 2.1 Web 52 2.2 Web 54 2.3 Web 59 2.4 65 2.5 68 2.6 75 2.7 76 2.8 77 3 81 3.1

More information

Titleモーリス ブランショ 私 の 死 の 瞬 間 という 証 言 Author(s) 西 山, 雄 二 Citation 一 橋 研 究, 24(3): 57-70 Issue 1999-09-30 Date Type Departmental Bulletin Paper Text Version publisher URL http://hdl.handle.net/10086/5696

More information

Title 厨 子 負 ふ 考 ( 上 ) Author(s) 秋 谷, 治 Citation 一 橋 論 叢, 128(3): 257-270 Issue 2002-09-01 Date Type Departmental Bulletin Paper Text Version publisher URL http://hdl.handle.net/10086/10259 Right Hitotsubashi

More information

Title 日 本 の 敗 戦 と 原 爆 投 下 問 題 Author(s) 藤 原, 彰 Citation 一 橋 論 叢, 79(4): 485-497 Issue 1978-04-01 Date Type Departmental Bulletin Paper Text Version publisher URL http://hdl.handle.net/10086/13323 Right

More information

Title 中国民族運動の高揚と日本海軍 Author(s) 芳井, 研一 Citation 一橋論叢, 76(1): 79-94 Issue 1976-07-01 Date Type Departmental Bulletin Paper Text Version publisher URL http://doi.org/10.15057/11713 Right Hitotsubashi University

More information

Titleジョナサン スウィフトと 医 師 たち Author(s) 橋 沼, 克 美 Citation 一 橋 論 叢, 118(3): 438-454 Issue 1997-09-01 Date Type Departmental Bulletin Paper Text Version publisher URL http://doi.org/10.15057/10715 Right Hitotsubashi

More information

Title イジチュール あるいは 夜 の 物 語 から 夜 の 詩 学 へ Author(s) 佐 々 木, 滋 子 Citation 一 橋 大 学 研 究 年 報. 人 文 科 学 研 究, 31: 109-197 Issue 1994-01-20 Date Type Departmental Bulletin Paper Text Version publisher URL http://hdl.handle.net/10086/9882

More information

Title 現 代 技 術 革 新 と 人 事 労 務 の 問 題 Author(s) 津 田, 真 澂 Citation 一 橋 大 学 研 究 年 報. 社 会 学 研 究, 24: 3-80 Issue 1986-04-10 Date Type Departmental Bulletin Paper Text Version publisher URL http://doi.org/10.15057/9577

More information

Titleアーネスト ヘミングウェイ : 人 と 作 品 Author(s) 斎 藤, 忠 利 Citation 一 橋 論 叢, 49(4): 540-558 Issue 1963-04-01 Date Type Departmental Bulletin Paper Text Version publisher URL http://doi.org/10.15057/3240 Right Hitotsubashi

More information

Hirosaki University Repository Title 東 北 北 部 の 縄 文 式 に 後 続 する 土 器 Author(s) 村 越, 潔 Citation 弘 前 大 学 教 育 学 部 紀 要. 14, 1965, p.27-34 Issue Date 1965-03-30 URL http://hdl.handle.net/10129/722 Rights Text

More information

Title 市 場 創 成 期 における 参 入 行 動 に 関 する 分 析 視 角 Author(s) 高 橋, 秀 直 Citation 一 橋 研 究, 33(3,4 合 併 号 ): 1-12 Issue 2009-01 Date Type Departmental Bulletin Paper Text Version publisher URL http://doi.org/10.15057/17986

More information

Title 同 期 電 動 機 の 同 期 化 現 象 に 関 する 研 究 Author(s) 武 田, 郁 夫, タケダ, イクオ Citation Issue Date 1975-03 URL http://hdl.handle.net/10213/1497 Rights Type Thesis or Dissertation Text Version author Additional 北

More information

Title 未 必 の 故 意 ( 殺 意 ) Author(s) 本 庄, 武 Citation 季 刊 刑 事 弁 護 (67): 130-135 Issue 2011-07 Date Type Journal Article Text Version publisher URL http://hdl.handle.net/10086/23152 Right Hitotsubashi University

More information

Title アメリカ南部英語の vernacularism Author(s) 平野, 信行 Citation 言語文化, 別冊 : 47-58 Issue 1985-03-23 Date Type Departmental Bulletin Paper Text Version publisher URL http://doi.org/10.15057/8981 Right Hitotsubashi

More information

Titleオーケストラの 聴 衆 とオペラの 聴 衆 Author(s) 倉 林, 義 正 Citation 一 橋 論 叢, 85(2): 157-175 Issue 1981-02-01 Date Type Departmental Bulletin Paper Text Version publisher URL http://doi.org/10.15057/11443 Right Hitotsubashi

More information

Title 水 割 資 本 Author(s) 高 瀬, 莊 太 郎 Citation 商 學 研 究, 6(3): 67-101 Issue 1927-08-20 Date Type Departmental Bulletin Paper Text Version publisher URL http://doi.org/10.15057/6959 Right Hitotsubashi University

More information

Microsoft PowerPoint - 学術XML-R.ppt

Microsoft PowerPoint - 学術XML-R.ppt 学 術 雑 誌 XML 出 版 の 現 状 と 課 題 2012. 10. 27 時 実 象 一 愛 知 大 学 tokizane@pc.highway.ne.jp SGML, HTML, XML SGML (Standard Generalized Markup Language) 元 は IBM s Generalized Markup 政 府 文 書 の 作 成 などで 普 及 学 術 雑 誌

More information

Title 日 本 軍 の 山 西 残 留 に 見 る 戦 後 初 期 中 日 関 係 の 形 成 Author(s) 張, 宏 波 Citation 一 橋 論 叢, 134(2): 187-208 Issue 2005-08-01 Date Type Departmental Bulletin Paper Text Version publisher URL http://hdl.handle.net/10086/15542

More information

事例に見るSCORMの・・・

事例に見るSCORMの・・・ SCORM 1.2 2005 8 2004, 2005 i 2004 6 1.0 2004 6 1.02 3.1.1 2005 1 1.1 2.1.4, 2.4.9, 2.5.2, 2.5.3, 3.1.3, 3.4.6, 3.5.2, 3.5.3. 2005 8 1.2 2.1.1 BOM 2.2.2, 2.4.10, 3.1.1 BOM 3.2.2, 3.4.7. ii 1. 1 2. 2 2.1

More information

Title 中 世 ロシアの 占 卜 書 ラフリ について Author(s) 中 村, 喜 和 Citation 一 橋 論 叢, 110(4): 682-691 Issue 1993-10-01 Date Type Departmental Bulletin Paper Text Version publisher URL http://hdl.handle.net/10086/10898 Right

More information

非経済的動機を導入した経済理論の可能性 カント的ア Title プローチ Author(s) 奥島, 真一郎 ; 吉原, 直毅 Citation 経済研究, 63(4): 346-364 Issue 2012-10-25 Date Type Journal Article Text Version publisher URL http://hdl.handle.net/10086/25872 Right

More information

Title 動 物 虐 待 罪 の 日 仏 比 較 法 文 化 論 Author(s) 青 木, 人 志 Citation 一 橋 大 学 研 究 年 報. 法 学 研 究, 31: 141-237 Issue 1998-10-01 Date Type Departmental Bulletin Paper Text Version publisher URL http://hdl.handle.net/10086/10029

More information

Title 第 12 回 世 界 客 家 大 会 の 情 報 解 析 序 説 Author(s) 中 川, 學 Citation 一 橋 論 叢, 113(6): 671-687 Issue 1995-06-01 Date Type Departmental Bulletin Paper Text Version publisher URL http://hdl.handle.net/10086/12206

More information

45

45 国 際 資 料 室 における 来 室 状 況 の 分 析 : 院 生 チューターの Title 役 割 を 中 心 に Author(s) 井 村, 倫 子 Citation 一 橋 大 学 留 学 生 センター 紀 要, 7: 45-59 Issue 2004-07-20 Date Type Departmental Bulletin Paper Text Version publisher URL

More information

Titleヤマト 運 輸 の 情 報 経 営 Author(s) 小 松, 美 枝 Citation 一 橋 論 叢, 112(2): 334-353 Issue 1994-08-01 Date Type Departmental Bulletin Paper Text Version publisher URL http://hdl.handle.net/10086/12304 Right Hitotsubashi

More information

XML Consortium XML XML Consortium Canon, Inc. Yoshikazu Yokomizo XML Consortium HTML CSS1 CSS2 XSL 1.0 XSLT V1.0 XPath 1.0 XML Base XML Sche

XML Consortium XML XML Consortium Canon, Inc. Yoshikazu Yokomizo XML Consortium HTML CSS1 CSS2 XSL 1.0 XSLT V1.0 XPath 1.0 XML Base XML Sche XML 2006.5.24 HTML CSS1 CSS2 XSL 1.0 XSLT V1.0 XPath 1.0 XML Base XML Schema Part 0 W3C XML Schema Part 1 HTML 4.0 XHTML 1.0 Namespaces XPointer 1.0 XLink 1.0 XML 1.0 XML Schema Part 2 XML I/F DOM Level1

More information

Titleバラッドの 中 のジョン ヘンリー Author(s) 桜 井, 雅 人 Citation 一 橋 論 叢, 88(1): 111-125 Issue 1982-07-01 Date Type Departmental Bulletin Paper Text Version publisher URL http://doi.org/10.15057/13035 Right Hitotsubashi

More information

Title 雁 行 型 経 済 発 展 の 国 際 的 伝 播 ( 下 ) Author(s) 小 島, 清 Citation 駿 河 台 経 済 論 集, 11(2): 1-36 Issue 2002-03 Date Type Departmental Bulletin Paper Text Version publisher URL http://hdl.handle.net/10086/16673

More information

1 1 1............................ 1 2...................... 1 3..................... 2 4................... 2 2 4 1 CSS.......................... 4 2.

1 1 1............................ 1 2...................... 1 3..................... 2 4................... 2 2 4 1 CSS.......................... 4 2. 1 1 1............................ 1 2...................... 1 3..................... 2 4................... 2 2 4 1 CSS.......................... 4 2.......................... 4 3......................

More information

商 家 奉 公 人 と 雑 業 者 -- 近 世 都 市 労 働 市 場 における 二 重 構 Title 造 の 形 成 -- Author(s) 斎 藤, 修 Citation 経 済 研 究, 36(3): 251-267 Issue 1985-07-15 Date Type Journal Article Text Version publisher URL http://hdl.handle.net/10086/22564

More information

Title 政治教育者としてのニコラウス クザーヌス Author(s) 加茂, 儀一 Citation 一橋論叢, 6(2): 134-152 Issue 1940-08-01 Date Type Departmental Bulletin Paper Text Version publisher URL http://doi.org/10.15057/5092 Right Hitotsubashi

More information

Title 日 中 貿 易 断 絶 とナショナリズムの 相 克 Author(s) 権, 容 奭 Citation 一 橋 法 学, 6(3): 1251-1278 Issue 2007-11 Date Type Departmental Bulletin Paper Text Version publisher URL http://hdl.handle.net/10086/15123 Right

More information

観 光 地 ケアンズの 生 成 と 日 本 企 業 : イメージ 戦 略 をめぐ Title る 政 治 過 程 と 地 域 社 会 変 動 Author(s) 小 野 塚, 和 人 Citation オーストラリア 研 究 (24): 40-55 Issue 2011-03 Date Type Journal Article Text Version publisher URL http://hdl.handle.net/10086/22158

More information