Import an Zotero RDF citation with single field author
I'm trying to learn how to import citations using Zotero RDF by exporting existing citations from my libraries.
But I'm having trouble with single field authors.
For example, I have a citation in Zotero with author 'Productivity Commission' in a single field.
However, when I export it and import it again, the imported version uses two fields and has the surname as 'Productivity Commission' and the first name as blank.
Here's the relevant RDF code:
<foaf:Person>
<foaf:surname>Productivity Commission</foaf:surname>
</foaf:Person>
Can I change this code so the author name imports as a single field? If so, how?
Cheers
Josh
But I'm having trouble with single field authors.
For example, I have a citation in Zotero with author 'Productivity Commission' in a single field.
However, when I export it and import it again, the imported version uses two fields and has the surname as 'Productivity Commission' and the first name as blank.
Here's the relevant RDF code:
<foaf:Person>
<foaf:surname>Productivity Commission</foaf:surname>
</foaf:Person>
Can I change this code so the author name imports as a single field? If so, how?
Cheers
Josh
<foaf:Organization>
<foaf:name>Productivity Commission</foaf:name>
</foaf:Organization>
as the Bibliontology RDF does. (I guess this may be the info you're looking for?)
I'll have to look into why Zotero RDF doesn't export that correctly.
If I import with your suggested code I just get an empty author field.
<foaf:Person>
<foaf:surname>Productivity Commission</foaf:surname>
</foaf:Person>
will now import as single field. Apologies for taking so long.