Zotero 데이터베이스에서 FileMaker Pro로 항목을 가져와야합니다. 가장 확실한 방법은 Zotero에서 xml로 내보내고 xml을 FMPXMLRESULT xml 형식으로 변환 한 다음 FileMaker Pro로 가져 오는 것입니다.Zotero xml 출력을 FMPXMLRESULT xml로 변환하는 XSLT?
저는 XML 형식의 번역을 다루는 완전한 초보자입니다.
누구나 그렇게 할 수있는 xslt가 있습니까? 아니면이 두 xml 형식 (일반 xslt/xml 참조가 아닌)에 대한 제안을 제게 제공합니까?
Zotero xml 출력물은 의회 도서관 MODS 양식에 있습니다 : http://www.loc.gov/standards/mods/.
FileMaker Pro FMPXMLRESULT xml 형식은 여기에 설명되어 있습니다. http://www.filemaker.com/help/html/import_export.16.30.html.
다음은 Zotero MODS 내보내기 예제입니다. (죄송합니다, 들여 쓰기 중 일부는이 게시물의 코드 블록을 형성 할 수있는 파일을 복사에 열중하고 있었다 여기에 실제 파일에 드롭 박스 링크입니다 :. https://www.dropbox.com/s/otrwr7xk0uwmff7/From_Zotero_MODS.xml를)
<?xml version="1.0"?>
<modsCollection xsi:schemaLocation="http://www.loc.gov/mods/v3
http://www.loc.gov/standards/mods/v3/mods-3-2.xsd" xmlns="http://www.loc.gov/mods/v3"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<mods>
<titleInfo>
<title>Roberto Giobbi's Card college. Volume 1</title>
</titleInfo>
<typeOfResource>text</typeOfResource>
<genre authority="local">book</genre>
<genre authority="marcgt">book</genre>
<name type="personal">
<namePart type="family">Giobbi</namePart>
<namePart type="given">Roberto</namePart>
<role>
<roleTerm type="code" authority="marcrelator">aut</roleTerm>
</role>
</name>
<originInfo>
<place>
<placeTerm type="text">Seattle, Wash.</placeTerm>
</place>
<publisher>Hermetic Press</publisher>
<copyrightDate>1996</copyrightDate>
<issuance>monographic</issuance>
</originInfo>
<identifier type="isbn">0945296185</identifier>
<subject>
<topic>Card tricks</topic>
</subject>
<note>External Resources: Cite This Item Search for versions with same title and author
| Advanced options ...
Uniform Title: Grosse kartenschule. Band 1. English
Edition: Rev. 2nd ed. ; English language ed.
Language: English
Note(s): Includes bibliographical references (p. [245]-247) and index.
Other Titles: Card college
Responsibility: illustrated by Barbara Giobbi-Ebnöther ; translated from the German by
Richard Hatch.
Vendor Info: Baker & Taylor YBP Library Services (BKTY YANK) 32.00 Status:
active Note: B&T Title: Card College
Entry: 19960709
Update: 20091103
Provider: OCLC</note>
</mods>
<mods>
<titleInfo>
<title>Book of magic.</title>
</titleInfo>
<typeOfResource>text</typeOfResource>
<genre authority="local">book</genre>
<genre authority="marcgt">book</genre>
<name type="personal">
<namePart type="family">Warlock</namePart>
<namePart type="given">Peter</namePart>
<role>
<roleTerm type="code" authority="marcrelator">aut</roleTerm>
</role>
</name>
<originInfo>
<publisher>London New York, Arco</publisher>
<copyrightDate>1956</copyrightDate>
<issuance>monographic</issuance>
</originInfo>
<subject>
<topic>Magic tricks</topic>
</subject>
<note>External Resources: Cite This Item Search for versions with same title and author
| Advanced options ...
Edition: [1st ed.]
Language: English
Class Descriptors: LC: GV1547; Dewey: 793.8
Entry: 19750729
Update: 20120116
Provider: OCLC</note>
</mods>
<mods>
<titleInfo>
<title>The amateur magician's handbook,</title>
</titleInfo>
<typeOfResource>text</typeOfResource>
<genre authority="local">book</genre>
<genre authority="marcgt">book</genre>
<name type="personal">
<namePart type="family">Hay, Henry</namePart>
<namePart type="given"/>
<role>
<roleTerm type="code" authority="marcrelator">aut</roleTerm>
</role>
</name>
<name type="personal">
<namePart type="family">Mussey</namePart>
<namePart type="given">June Barrows</namePart>
<role>
<roleTerm type="code" authority="marcrelator">aut</roleTerm>
</role>
</name>
<originInfo>
<publisher>New York, Crowell</publisher>
<copyrightDate>1972</copyrightDate>
<issuance>monographic</issuance>
</originInfo>
<identifier type="isbn">0690057113</identifier>
<subject>
<topic>Magic tricks</topic>
</subject>
<note>External Resources: Cite This Item Search for versions with same title and author
| Advanced options ...
Edition: 3d ed., rev. and expanded.
Language: English
Note(s): Bibliography: p. 365-373.
Class Descriptors: LC: GV1547; Dewey: 793.8
Responsibility: by Henry Hay. Photos. by Audrey Alley.
Vendor Info: Baker and Taylor (BTCP)
Entry: 19720814
Update: 20080829
Provider: OCLC</note>
</mods>
</modsCollection>
Zotero XML 스펙에 대한 링크를 제공해 주시겠습니까? 빠른 검색을 수행했지만 아무 것도 발견하지 못했습니다 (HTML 및 RTF 내보내기 만 가능). –
샘플 소스 XML 문서와 정확한 결과를 제공하십시오. 하나의 문서 유형에서 다른 문서 유형으로의 일반적인 변환은 너무 많은 자원을 필요로 할 수 있으므로 매우 적은 수의 사람들이이를 수행하는 데 필요한 시간을 가질 수 있습니다. –