1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

cslを微修正する(引用文献のcitationに閉じ丸括弧をつける)

Posted at

概要

cslを微修正したくなった。
具体的には、ほぼamerican-medical-association.cslのままで良いが、citationをただの上付き文字ではなくて、上付き文字+")"(とじかっこ)にしたかった。

環境

Mac
pandoc (latex -> word)

内容

cslを以下のように編集した。
(citationの中のlayout)

修正前
    <layout delimiter="," vertical-align="sup">
      <text variable="citation-number"/>
      <group prefix="(" suffix=")">
        <label variable="locator" form="short" strip-periods="true"/>
        <text variable="locator"/>
      </group>
    </layout>
修正後
    <layout delimiter="," vertical-align="sup">
      <text variable="citation-number" suffix=")"/>
      <group prefix="(" suffix=")">
        <label variable="locator" form="short" strip-periods="true"/>
        <text variable="locator"/>
      </group>
    </layout>

感想

汎用性は微妙だが、ひとまず想定通りに修正された。

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?