我正在使用Zotero并希望稍微更改参考书目:
<script type="text/javascript">
<?php if($_SESSION['is_logged_in'] == TRUE): ?>
$( "#tab-additional_information > table > tbody > tr:nth-child(1)" ).addClass( "jl_hidden" );
<?php endif; ?>
</script>
在此我怀疑使用了参考书目中使用术语的名称(见下文):
<group delimiter="">
<text value=""/>
<text variable="URL"/>
<group prefix=". " suffix="">
<text term="accessed" suffix=" "/>
<date variable="accessed">
<date-part name="day" suffix=" "/>
<date-part name="month" form="" suffix=" "/>
<date-part name="year" form=""/>
</date>
</group>
</group>
我想改为大写:
accessed 1 March 2017
如果我将文字字词更改为&#34;已访问&#34;我收到错误
有什么建议吗?
答案 0 :(得分:1)
您可以将<text term="accessed" suffix=" "/>
更改为<text term="accessed" text-case="capitalize-first" suffix=" "/>
。请参阅http://docs.citationstyles.org/en/stable/specification.html#text-case。
或者,您可以使用<text value="Accessed" suffix=" "/>
,但通常会优先使用术语,因为术语允许样式更容易本地化为不同的语言。