|
|
1.1 ! root 1: Each bibliographic reference may be classified as a particular type, ! 2: e.g. book, article, thesis. ! 3: Each type, in turn, is defined by a set of attributes. ! 4: Below is a list of all such attributes. ! 5: For any one type, some of the attributes are required, some ! 6: optional, some undefined, and some ignored ! 7: (e.g. the attribute is there for some purpose ! 8: other than formatting such as indexing or recordkeeping). ! 9: Next to each attribute name is a brief description of its function. ! 10: ! 11: |begin(small) ! 12: |begin(table) ! 13: center; ! 14: lFCW lw(1.75i). ! 15: %type document type ! 16: %author T{ ! 17: name of author (or editor in case of edited book) ! 18: T} ! 19: %title reference title ! 20: %publisher T{ ! 21: publisher, organization, institution, or school ! 22: T} ! 23: %address address of publisher ! 24: %booktitle T{ ! 25: title of book, part of which is being cited ! 26: T} ! 27: %editor T{ ! 28: editor of book, journal, proceedings or author of reviewed article ! 29: T} ! 30: %date publication date ! 31: %report technical report number ! 32: %tm tm number ! 33: %journal T{ ! 34: name of journal, magazine, or proceedings ! 35: T} ! 36: %volume book or journal volume number ! 37: %number journal number ! 38: %part journal part number ! 39: %pages pages on which reference appears ! 40: %also refers by search keys to another entry ! 41: %also_begin begin another entry ! 42: %also_end end another entry ! 43: %other T{ ! 44: any other information to be included with the reference ! 45: T} ! 46: %keywords T{ ! 47: keywords used for searching (an ignored attribute) ! 48: T} ! 49: %X T{ ! 50: location of the reference (an ignored attribute) ! 51: T} ! 52: %Y read status (an ignored attribute) ! 53: %Z comments (an ignored attribute) ! 54: |end(table) ! 55: |end(small) ! 56: ! 57: What follows is a list of currently defined bibliography types, ! 58: along with their ! 59: required and optional attributes. ! 60: The only attributes that can appear more than once in a single reference ! 61: are |cw(%author) and |cw(%editor). ! 62: The |cw(%type) attribute is required by all types. ! 63: The attributes |cw(%also), |cw(%also_begin), |cw(%also_end), and |cw(%other) are optional ! 64: for all types. ! 65: Finally, |cw(%X), |cw(%Y), |cw(%Z), and |cw(%keywords) are optional ignored attributes. ! 66: |begin(small) ! 67: |begin(table) ! 68: center, tab(:); ! 69: l lw(1.75i). ! 70: .hy 0 ! 71: _ ! 72: |cw(article):journal or magazine article ! 73: required:T{ ! 74: |cw(%author) |cw(%title) |cw(%journal) |cw(%date) ! 75: T} ! 76: optional:T{ ! 77: |cw(%volume) |cw(%number) |cw(%part) |cw(%pages) ! 78: T} ! 79: _ ! 80: |cw(book):a published book ! 81: required:T{ ! 82: |cw(%author) |cw(%title) |cw(%publisher) |cw(%date) ! 83: T} ! 84: optional:|cw(%address) |cw(%volume) ! 85: _ ! 86: |cw(editedbook):an edited book ! 87: required:T{ ! 88: |cw(%author) |cw(%title) |cw(%publisher) |cw(%date) ! 89: T} ! 90: optional:|cw(%address) |cw(%volume) ! 91: _ ! 92: |cw(incollection):T{ ! 93: article or chapter in a collection ! 94: T} ! 95: required:T{ ! 96: |cw(%author) |cw(%title) |cw(%booktitle) |cw(%publisher) |cw(%date) ! 97: T} ! 98: optional:T{ ! 99: |cw(%address) |cw(%editor) |cw(%volume) |cw(%pages) ! 100: T} ! 101: _ ! 102: |cw(inproceedings):paper in a proceedings ! 103: required:T{ ! 104: |cw(%author) |cw(%title) |cw(%journal) |cw(%date) ! 105: T} ! 106: optional:T{ ! 107: |cw(%volume) |cw(%number) |cw(%part) |cw(%publisher) |cw(%address) |cw(%editor) |cw(%pages) ! 108: T} ! 109: _ ! 110: |cw(manual):a manual or guide ! 111: required:|cw(%title) |cw(%date) ! 112: optional:T{ ! 113: |cw(%author) |cw(%volume) |cw(%editor) |cw(%publisher) |cw(%address) ! 114: T} ! 115: .ne 3 ! 116: _ ! 117: |cw(mastersthesis):Master's Thesis ! 118: required:T{ ! 119: |cw(%author) |cw(%title) |cw(%publisher) |cw(%date) ! 120: T} ! 121: optional:|cw(%address) ! 122: _ ! 123: |cw(misc):miscellaneous type ! 124: optional:T{ ! 125: |cw(%author) |cw(%title) |cw(%volume) |cw(%publisher) |cw(%address) |cw(%pages) |cw(%date) ! 126: T} ! 127: _ ! 128: |cw(pamphlet):a pamphlet or booklet ! 129: required:|cw(%title) ! 130: optional:T{ ! 131: |cw(%author) |cw(%date) |cw(%publisher) |cw(%address) ! 132: T} ! 133: _ ! 134: |cw(phdthesis):Ph.D. Thesis ! 135: required:T{ ! 136: |cw(%author) |cw(%title) |cw(%publisher) |cw(%date) ! 137: T} ! 138: optional:|cw(%address) ! 139: _ ! 140: |cw(proceedings):a conference proceedings ! 141: required:|cw(%title) |cw(%publisher) |cw(%date) ! 142: optional:T{ ! 143: |cw(%author) |cw(%volume) |cw(%number) |cw(%part) |cw(%address) |cw(%editor) ! 144: T} ! 145: _ ! 146: |cw(review):a review of another piece ! 147: required:|cw(%author) |cw(%journal) |cw(%date) ! 148: optional:T{ ! 149: |cw(%title) |cw(%booktitle) |cw(%editor) |cw(%publisher) |cw(%volume) |cw(%number) |cw(%part) |cw(%pages) ! 150: T} ! 151: _ ! 152: |cw(techreport):technical report ! 153: required:T{ ! 154: |cw(%author) |cw(%title) |cw(%publisher) |cw(%date) ! 155: T} ! 156: optional:|cw(%report) ! 157: _ ! 158: |cw(tm):T{ ! 159: AT&T Bell Labs technical memorandum ! 160: T} ! 161: required:T{ ! 162: |cw(%author) |cw(%title) |cw(%tm) |cw(%date) ! 163: T} ! 164: _ ! 165: |cw(unpublished):unpublished manuscript ! 166: required:|cw(%author) |cw(%title) ! 167: optional:|cw(%date) ! 168: _ ! 169: .hy ! 170: |end(table) ! 171: |end(small)
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.