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.
  • depends on what you want. Currently the style prints the DOI when it exists and else the URL when that exists. If you want neither, you can just delete
    <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.
  • Thanks so much, it works perfectly now!
Sign In or Register to comment.