00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 #ifndef BibTexTypes_h
00018 #define BibTexTypes_h
00019
00020 #define BT_BOOK 0 // ->INBOOK
00021 #define BT_BOOKLET 1
00022 #define BT_JOURNAL 2 // ->ARTICLE
00023 #define BT_MANUAL 3
00024 #define BT_MASTERTHESIS 4
00025 #define BT_MISC 5
00026 #define BT_PROCEEDING 6 // ->INPROCEEDING
00027 #define BT_TECHREPORT 7
00028 #define BT_UNPUBLISHED 8
00029 #define BT_PHDTHESIS 9
00030 #define BT_INBOOK 10
00031 #define BT_INCOLLECTION 11
00032 #define BT_INPROCEEDING 12
00033 #define BT_ARTICLE 13
00034
00035 extern const char *bibtexnames[];
00036 extern int bibtextypecount;
00037 #endif