Importing two different elements with the same name
I have exported a MODS file from the standalone version to import into Filemaker. I've created a style sheet to use during the import.
I want to import both the title of the citation and the title of the journal, but they are both called <titleInfo> <title> in the MODS file. Only the citation title will import. How do I get both to import?
Thanks
I want to import both the title of the citation and the title of the journal, but they are both called <titleInfo> <title> in the MODS file. Only the citation title will import. How do I get both to import?
Thanks
The Journal Title is under
//relatedItem[@type="host"]/titleInfo/title
and the article title under
//mods/titleInfo/title
We can't really help you with the xslt to transform that to a format readable by filemaker (or however else you're importing this), but Zotero's MODS export is entirely correct here.
I'll try to give a better explanation of what I'm doing: I exported 386 ProQuest documents as an .xml file. I want to import these into Filemaker, so I've created a style sheet.
Now my question is, how do I get all of the authors to import into Filemaker? I've used this but only the first author has been imported:
<COL>
<DATA>
<xsl:value-of select="mod:name/mod:namePart[@type='family']" />
</DATA>
</COL>
<COL>
<DATA>
<xsl:value-of select="mod:name/mod:namePart[@type='given']" />
</DATA>
</COL>