Removing DOI from Modern Humanities Research Association citation style
Hi,
I'm trying to remove stop the DOI from appearing in citations in the Modern Humanities Research Association 3rd edition (note w/ bibliography) style, but can't figure out exactly which lines of code to delete (I've been following instructions on the 'Editing CSL Styles' post but it doesn't cover individual circumstances). I would really appreciate some guidance if possible!
Thanks so much.
I'm trying to remove stop the DOI from appearing in citations in the Modern Humanities Research Association 3rd edition (note w/ bibliography) style, but can't figure out exactly which lines of code to delete (I've been following instructions on the 'Editing CSL Styles' post but it doesn't cover individual circumstances). I would really appreciate some guidance if possible!
Thanks so much.
<choose>
<if variable="DOI">
<text variable="DOI" prefix=" <doi:" suffix=">"/>
</if>
<else>
<choose>
<if variable="URL">
<text variable="URL" prefix=" <" suffix=">"/>
<group prefix=" [" suffix="]">
<text term="accessed"/>
<date variable="accessed">
<date-part name="day" prefix=" "/>
<date-part name="month" prefix=" "/>
<date-part name="year" prefix=" "/>
</date>
</group>
</if>
</choose>
</else>
</choose>
everything else is more complicated.