Top/article/Remove-URL-from-References-of-IEEE-paper
English | Japanese
English | Japanese

Menu

  • Top
  • Akihiko Yamaguchi 山口 明彦
  • Project プロジェクト
  • Text テキスト
  • Recent articles 最近の記事
  • Articles 記事一覧 (a to z)
  • Search 検索

Tags タグ †

  • [c++][bash][python][latex][php]
  • [linux][windows][mac][android]
  • [math][algorithm][idea][trick]
  • [liboctave][opencv][git][ros]
  • [setting][bug][general]
↑

Recent articles 最近の記事 †

2019-07-02
  • article/Display-Unix-Time
  • article/Synchronize-Linux-Time-to-Remote
2018-09-27
  • article/python-multimode-singleton
2018-09-02
  • article/rosinstall-git-default-remote
2017-07-28
  • article/SubMenu
2017-03-05
  • article/Import-a-different-version-of-OpenCV-in-Python
2015-08-17
  • article/DRC-finals-2015
2015-01-05
  • article/Upgrade-Android-to-Lollipop
2015-01-01
  • article/Kernel-panic-of-Linux-when-using-Xtion
  • article/Do-not-skip-freeing-data-when-using-tri-mesh-in-ODE
Access: 1/1799 - Admin
These search terms have been highlighted:[latex]

Remove URL from References of IEEE paper

IEEE の原稿の References に URL が入らないようにする

[latex]
2009-07-13

IEEE の論文を LaTeX で書くときに,bibtex のスタイルファイルとして IEEEtran.bst を使う.このスタイルファイルを使うと,bibtex のソースに url = {www.xxx.com/xxx.pdf} のような項目を書いている場合(ウェブに掲載されているURL),論文の References に [Online]. Available: www.xxx.com/xxx.pdf などと書かれてしまう.文章量が増えるし,著作権的にアレなURLを参照しているとモラルに欠けるし,消したい.その方法を紹介(IEEEtran.bst のソース読めばすぐわかるが).

IEEEtran.bst の 1886 行目付近,%% URL となっているところを編集する:

before:

%% URL
FUNCTION {format.url}
{ url empty$
    { "" }
    { this.to.prev.status
      this.status.std
      cap.yes 'status.cap :=
      bbl.urlprefix " " *
      "\url{" * url * "}" *
      punct.no 'this.status.punct :=
      punct.period 'prev.status.punct :=
      space.normal 'this.status.space :=
      space.normal 'prev.status.space :=
      quote.no 'this.status.quote :=
    }
  if$
}

after:

%% URL
FUNCTION {format.url}
{ url empty$
    { "" }
    { "" }
%     { this.to.prev.status
%       this.status.std
%       cap.yes 'status.cap :=
%       bbl.urlprefix " " *
%       "\url{" * url * "}" *
%       punct.no 'this.status.punct :=
%       punct.period 'prev.status.punct :=
%       space.normal 'this.status.space :=
%       space.normal 'prev.status.space :=
%       quote.no 'this.status.quote :=
%     }
  if$
}

以上.個別に表示したり消したりは,bibtex の方をいじらないとだめだと思われる.

この方法を用いたことによって発生したいかなるトラブルに関しても,私は責任を取りません.




Last-modified:2014-12-31 (Wed) 03:05:39 (3806d)
Site admin: Akihiko Yamaguchi.
Written by: Akihiko Yamaguchi.
System: PukiWiki 1.5.0. PHP 5.2.17. HTML conversion time: 0.007 sec.