我尝试使用 XML 插件将我大学期刊的旧期刊导入 OJS。我构建了 xml 问题文件:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE issue PUBLIC "-//PKP//OJS Articles and Issues XML//EN" "http://pkp.sfu.ca/ojs/dtds/native.dtd">
<issue published="false" current="false">
<title>August 2008, Volume 3, Number A08</title>
<volume>3</volume>
<number>A08</number>
<year>2008</year>
<section>
<title locale="en_US">Articles</title>
<abbrev locale="en_US">ART</abbrev>
<article>
<title>Approximating Counterparts</title>
<abstract>Abstract text...</abstract>
<pages>1-11</pages>
<date_published>2008-08-01</date_published>
<author primary_contact="true">
<firstname>FISTNAME</firstname>
<middlename><![CDATA[ ]]></middlename>
<lastname>LASTNAME</lastname>
<email>email@email</email>
</author>
<galley>
<label>PDF</label>
<file><href mime_type="application/pdf" src="http://...../issue/some.pdf"/></file>
</galley>
</article>
</section>
</issue>
并成功将它们导入 OJS。但是,我对关键字、DOI 和引用有疑问。我不知道将它们放在我的sample.xml
文件中的哪个位置。<keywords>...</keywords>
喜欢或似乎不起作用的 标签<references>...</references>
,我的意思是当我将它们放在我的文件中时它们没有效果。<doi>...</doi>
sample.xml
任何想法如何解决它?
我已经检查了/var/www/html/ojs/plugins/importexport/native
,搜索native.dtd
文件中的示例,但找不到解决方案...