BibTeXのテンプレ

BibTeXは便利なんだけど@articleや@inproceedingsのような文献の種類ごとに必須のフィールドが違います。いちいち調べるの面倒なのでテンプレを作りました。

必須フィールドと任意フィールドは%のみの行で区切ってあります。上が必須フィールド。
monthやpagesなどには%で記述例を書いてあります。
注意点として、%や使わない行は必ず消去すること。%が残っているとそれ以降の情報がなかったことにされるみたいです。
カンマが行頭にあるのは、いらない行を消すときにその方が便利だからです。
{の後にcitation用のタグを付けるのを忘れずに。

@article{
,author        = ""
,title        = ""
,journal      = ""
,year         = ""
%
,volume       = ""
,number       = ""
,pages        = ""%"7,41,73--97" "43+"
,month        = ""%jan, feb, mar, apr, may, jun, jul, aug, sep, oct, nov, dec
,note         = ""
}

会議録
@proceedings{
,title        = ""
,year         = ""
%
,editor       = ""
,volume       = ""
%,number       = ""
,series       = ""
,address      = ""
,month        = ""%jan, feb, mar, apr, may, jun, jul, aug, sep, oct, nov, dec
,organization = ""
,publisher    = ""
,note         = ""
}

@inproceedings{
,author       = ""
,title        = ""
,booktitle    = ""
,year         = ""
%
,editor       = ""
,volume       = ""
%,number       = ""
,series       = ""
,pages        = ""%"7,41,73--97" "43+"
,address      = ""
,month        = ""%jan, feb, mar, apr, may, jun, jul, aug, sep, oct, nov, dec
,organization = ""
,publisher    = ""
,note         = ""
}

出版社が明確な本
@book{
,author       = ""
%,editor       = ""
,title        = ""
,publisher    = ""
,year         = ""
%
,volume       = ""
%,number       = ""
,series       = ""
,address      = ""
,edition      = ""%"Second"
,month        = ""%jan, feb, mar, apr, may, jun, jul, aug, sep, oct, nov, dec
,note         = ""
}

@inbook{
,author       = ""
%,editor       = ""
,title        = ""
,chapter      = ""%and/or
%,pages        = ""%"7,41,73--97" "43+"
,publisher    = ""
,year         = ""
%
,volume       = ""
%,number       = ""
,series       = ""
,type         = ""
,address      = ""
,edition      = ""%"Second"
,month        = ""%jan, feb, mar, apr, may, jun, jul, aug, sep, oct, nov, dec
,note         = ""
}

本の一部で、それ自身が表題をもつもの
@incollection{
,author       = ""
,title        = ""
,booktitle    = ""
,publisher    = ""
,year         = ""
%
,editor       = ""
,volume       = ""
%,number       = ""
,series       = ""
,type         = ""
,chapter      = ""
,pages        = ""%"7,41,73--97" "43+"
,address      = ""
,edition      = ""%"Second"
,month        = ""%jan, feb, mar, apr, may, jun, jul, aug, sep, oct, nov, dec
,note         = ""
}

出版社あるいはスポンサーが分からない本
@booklet{
,title        = ""
%
,author       = ""
,howpublished = ""
,address      = ""
,month        = ""%jan, feb, mar, apr, may, jun, jul, aug, sep, oct, nov, dec
,year         = ""
,note         = ""
}

@techreport{
,author       = ""
,title        = ""
,institution  = ""
,year         = ""
%
,type         = ""
,address      = ""
,month        = ""%jan, feb, mar, apr, may, jun, jul, aug, sep, oct, nov, dec
,note         = ""
}

@mastersthesis{
,author       = ""
,title        = ""
,school       = ""
,year         = ""
%
,type         = ""
,address      = ""
,month        = ""%jan, feb, mar, apr, may, jun, jul, aug, sep, oct, nov, dec
,note         = ""
}

@phdthesis{
,author       = ""
,title        = ""
,school       = ""
,year         = ""
%
,type         = ""
,address      = ""
,month        = ""%jan, feb, mar, apr, may, jun, jul, aug, sep, oct, nov, dec
,note         = ""
}


@manual{
,title        = ""
%
,author       = ""
,organization = ""
,address      = ""
,edition      = ""
,month, 
,year         = ""
,note         = ""
}

@unpublished{
,author       = ""
,title        = ""
,note         = ""
%
,month        = ""%jan, feb, mar, apr, may, jun, jul, aug, sep, oct, nov, dec
,year         = ""
}

@misc{
%
,author       = ""
,title        = ""
,howpublished = ""
,month        = ""%jan, feb, mar, apr, may, jun, jul, aug, sep, oct, nov, dec
,year         = ""
,note         = ""
}