-
Notifications
You must be signed in to change notification settings - Fork 0
/
makebst.log
1204 lines (899 loc) · 28.8 KB
/
makebst.log
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
This is pdfTeX, Version 3.141592653-2.6-1.40.25 (TeX Live 2023) (preloaded format=latex 2024.2.13) 13 FEB 2024 20:52
entering extended mode
restricted \write18 enabled.
%&-line parsing enabled.
**makebst
(/usr/local/texlive/2023/texmf-dist/tex/latex/custom-bib/makebst.tex
LaTeX2e <2022-11-01> patch level 1
L3 programming layer <2023-02-22>
\outfile=\write3
\ttyin=\read2
\infile=\read3
\ttyout=\write4
\hours=\count185
\minutes=\count186
***********************************
* This is Make Bibliography Style *
***********************************
It makes up a docstrip batch job to produce
a customized .bst file for running with BibTeX
Do you want a description of the usage? (NO)
\yn=y
In the interactive dialogue that follows,
you will be presented with a series of menus.
In each case, one answer is the default, marked as (*),
and a mere carriage-return is sufficient to select it.
(If there is no * choice, then the default is the last choice.)
For the other choices, a letter is indicated
in brackets for selecting that option. If you select
a letter not in the list, default is taken.
The final output is a file containing a batch job
which may be (La)TeXed to produce the desired BibTeX
bibliography style file. The batch job may be edited
to make minor changes, rather than running this program
once again.
Enter the name of the MASTER file (default=merlin.mbs)
\mfile=leeds-harvard.mbs
*** Cannot find file `leeds-harvard.mbs'
Enter the name of the MASTER file (default=merlin.mbs)
\mfile=
Name of the final OUTPUT .bst file? (default extension=bst)
\ofile=leeds-hps.bst
Give a comment line to include in the style file.
Something like for which journals it is applicable.
\ans=LaTeX bibliography in the Leeds-Harvard style for Leeds History and Philos
ophy of Science group
\openout3 = `leeds-hps.dbj'.
Do you want verbose comments? (NO)
\yn=y
(/usr/local/texlive/2023/texmf-dist/tex/latex/custom-bib/merlin.mbs
<<< For more information about the meanings of
<<< the various options, see the section on
<<< Menu Information in the .mbs file documentation.
EXTERNAL FILES:
Name of language definition file (default=merlin.mbs)
\cfile=
Name of language file: \cfile=.
Include file(s) for extra journal names? (NO)
\yn=y
File to include (default=physjour,geojour,photjour.mbs)
\jfile=
Name of included files: \jfile=physjour,geojour,photjour,.mbs.
<<INTERNAL LANGUAGE SUPPORT (if no external language file)
(*) English words used explicitly
(b) Babel (words replaced by commands defined in babelbst.tex)
Select:
\ans=
You have selected: English
>>INTERNAL LANGUAGE SUPPORT (if no external language file)
<<STYLE OF CITATIONS:
(*) Numerical as in standard LaTeX
(a) Author-year with some non-standard interface
(b) Alpha style, Jon90 or JWB90 for single or multiple authors
(o) Alpha style, Jon90 even for multiple authors
(f) Alpha style, Jones90 (full name of first author)
(c) Cite key (special for listing contents of bib file)
Select:
\ans=a
You have selected: Author-year
>>STYLE OF CITATIONS:
<<AUTHOR--YEAR SUPPORT SYSTEM (if author-year citations)
(*) Natbib for use with natbib v5.3 or later
(o) Older Natbib without full authors citations
(l) Apalike for use with apalike.sty
(h) Harvard system with harvard.sty
(a) Astronomy system with astron.sty
(c) Chicago system with chicago.sty
(n) Named system with named.sty
(d) Author-date system with authordate1-4.sty
Select:
\ans=h
You have selected: Harvard
<<HARVARD EXTENSIONS INCLUDED (if Harvard support selected)
(*) With Harvard extensions for LaTeX2e version of harvard.sty
(n) Older Harvard style, for LaTeX 2.09
Select:
\ans=
You have selected: With Harvard extensions
>>HARVARD EXTENSIONS INCLUDED (if Harvard support selected)
>>AUTHOR--YEAR SUPPORT SYSTEM (if author-year citations)
<<LANGUAGE FIELD
(*) No language field
(l) Add language field to switch hyphenation patterns temporarily
Select:
\ans=
You have selected: No language field
>>LANGUAGE FIELD
<<ANNOTATIONS:
(*) No annotations will be recognized
(a) Annotations in annote field or in .tex file of citekey name
Select:
\ans=
You have selected: No annotations
>>ANNOTATIONS:
<<PRESENTATIONS:
(*) Do not add presentation type for conference talks
(p) Add presentation, speaker not highlighted
(b) Presentation, speaker bold face
(i) Presentaion, speaker italic
(c) Presentaion, speaker in small caps
Select:
\ans=p
You have selected: Add presentation, speaker not highlighted
>>PRESENTATIONS:
<<ORDERING OF REFERENCES (if author-year citations)
(*) Alphabetical by all authors
(l) By label (Jones before Jones and James before Jones et al)
(m) By label and cite order (like above but all Jones et al ordered as cited)
(k) By label and cite key instead of label and title, as above
(d) Year ordered and then by authors (for publication lists)
(r) Reverse year ordered and then by authors (most recent first)
(c) Citation order (unsorted, only meaningful for numericals)
Select:
\ans=
You have selected: Alphabetical
>>ORDERING OF REFERENCES (if author-year citations)
<<ORDER ON VON PART (if not citation order)
(*) Sort on von part (de la Maire before Defoe)
(x) Sort without von part (de la Maire after Mahone)
Select:
\ans=
You have selected: Sort on von part
>>ORDER ON VON PART (if not citation order)
<<IGNORE FIRST NAMES (if author-year citations)
(*) Respect first names or initials, treat as different authors
(x) Sort on surname only and treat all Smiths as one
Select:
\ans=
You have selected: Respect first names
>>IGNORE FIRST NAMES (if author-year citations)
<<AUTHOR NAMES:
(*) Full, surname last (John Frederick Smith)
(f) Full, surname first (Smith, John Frederick)
(i) Initials + surname (J. F. Smith)
(r) Surname + initials (Smith, J. F.)
(s) Surname + dotless initials (Smith J F)
(w) Surname + comma + spaceless initials (Smith, J.F.)
(x) Surname + pure initials (Smith JF)
(y) Surname + comma + pure initials (Smith, JF)
(z) Surname + spaceless initials (Smith J.F.)
(a) Only first name reversed, initials (AGU style: Smith, J. F., H. K. Jones)
(b) First name reversed, with full names (Smith, John Fred, Harry Kab Jones)
Select:
\ans=r
You have selected: Surname + initials
>>AUTHOR NAMES:
<<EDITOR NAMES IN COLLECTIONS (if author names reversed)
(*) Editor names NOT reversed as edited by J. J. Smith
(r) Editor names reversed just like authors'
Select:
\ans=r
You have selected: Editor names reversed
<<POSITION OF JUNIOR (if author names reversed)
(*) Junior comes last as Smith, John, Jr.
(m) Junior between as Smith, Jr., John
Select:
\ans=
You have selected: Junior comes last
>>POSITION OF JUNIOR (if author names reversed)
>>EDITOR NAMES IN COLLECTIONS (if author names reversed)
<<JUNIOR PART IN THE CITATION (if author-year citations)
(*) No `junior' part in the citations but in the ref listing
(j) `Junior' in citations as well as in ref listing
Select:
\ans=
You have selected: No `junior' part in the citations
>>JUNIOR PART IN THE CITATION (if author-year citations)
<<PUNCTUATION BETWEEN AUTHOR NAMES:
(*) Author names separated by commas
(s) Names separated by semi-colon
(h) Names separated by slash /
Select:
\ans=
You have selected: Author names separated by commas
>>PUNCTUATION BETWEEN AUTHOR NAMES:
<<ADJACENT REFERENCES WITH REPEATED NAMES:
(*) Author/editor names always present
(d) Repeated author/editor names replaced by dash
(2) Repeated author/editor names replaced by 2 dashes
(3) Repeated author/editor names replaced by 3 dashes
Select:
\ans=
You have selected: Author/editor names always present
>>ADJACENT REFERENCES WITH REPEATED NAMES:
<<NUMBER OF AUTHORS IN BIBLIOGRAPHY:
(*) All authors included in listing
(l) Limited authors (et al replaces missing names)
Select:
\ans=l
You have selected: Limited authors
>>NUMBER OF AUTHORS IN BIBLIOGRAPHY:
Maximum number of authors (1-99)
\num=3
You have selected maximum 3 authors
Minimum number (before et al given) (1-3)
\num=1
You have selected minimum 1 authors
<<AUTHORS IN CITATIONS:
(*) One author et al for three or more authors
(m) Some other truncation scheme
Select:
\ans=
You have selected: One author et al
>>AUTHORS IN CITATIONS:
<<TYPEFACE FOR AUTHORS IN LIST OF REFERENCES:
(*) Normal font for author names
(s) Small caps authors (\sc)
(i) Italic authors (\it or \em)
(b) Bold authors (\bf)
(u) User defined author font (\bibnamefont)
Select:
\ans=
You have selected: Normal font for author names
>>TYPEFACE FOR AUTHORS IN LIST OF REFERENCES:
<<FONT OF CITATION LABELS IN TEXT (if author-year citations)
(*) Cited authors plain as result of \cite command
(i) Cited authors italic
(s) Cited authors small caps
(b) Cited authors bold
(u) User defined citation font (\citenamefont)
Select:
\ans=
You have selected: Cited authors plain
<<FONT OF EXTRA LABEL (The extra letter on the year)
(*) Extra label plain
(i) Extra label italic
Select:
\ans=
You have selected: Extra label plain
>>FONT OF EXTRA LABEL (The extra letter on the year)
>>FONT OF CITATION LABELS IN TEXT (if author-year citations)
<<LABEL WHEN AUTHORS MISSING (if author-year citations)
(*) Year blank when KEY replaces missing author (for natbib 7.0)
(y) Year included when KEY replaces missing author
Select:
\ans=
You have selected: Year blank when KEY replaces missing author
>>LABEL WHEN AUTHORS MISSING (if author-year citations)
<<MISSING DATE (if author-year citations)
(*) Missing date set to ???? in label and text
(b) Missing date left blank
Select:
\ans=
You have selected: Missing date set to ????
>>MISSING DATE (if author-year citations)
<<DATE POSITION:
(*) Date at end
(b) Date after authors
(j) Date part of journal spec. (as 1994;45:34-40) else at end
(e) Date at very end after any notes
Select:
\ans=b
You have selected: Date after authors
>>DATE POSITION:
<<DATE FORMAT (if author-year citations)
(*) Year plain without any brackets
(p) Year in parentheses as (1993)
(b) Year in brackets as [1993]
(c) Year preceded by colon as `: 1993'
(d) Year preceded by period as `. 1993'
(m) Date preceded by comma as `, 1993'
(s) Year preceded by space only, as ` 1993'
Select:
\ans=d
You have selected: Year preceded by period
<<INCLUDE MONTHS:
(*) Date is year only without the month
(m) Include month in date
Select:
\ans=
You have selected: Date is year only
>>INCLUDE MONTHS:
>>DATE FORMAT (if author-year citations)
<<DATE PUNCTUATION (if date not at end)
(*) Date with standard block punctuation (comma or period)
(c) Colon after date as 1994:
(s) Semi-colon after date as 1994;
(p) Period after date even when blocks use commas
(x) No punct. after date
Select:
\ans=p
You have selected: Period after date
<<BLANK AFTER DATE:
(*) Space after date and punctuation
(x) No space after date as 1994:45
Select:
\ans=
You have selected: Space after date
>>BLANK AFTER DATE:
>>DATE PUNCTUATION (if date not at end)
<<DATE FONT:
(*) Date in normal font
(b) Date in bold face
Select:
\ans=
You have selected: Date in normal font
>>DATE FONT:
<<TRUNCATE YEAR (if author-year citations)
(*) Year text full as 1990--1993 or `in press'
(t) Year truncated to last 4 digits
Select:
\ans=
You have selected: Year text full
>>TRUNCATE YEAR (if author-year citations)
<<TITLE OF ARTICLE:
(*) Title plain with no special font
(i) Title italic (\em)
(q) Title and punctuation in single quotes (`Title,' ..)
(d) Title and punctuation in double quotes (``Title,'' ..)
(g) Title and punctuation in guillemets (<<Title,>> ..)
(x) Title in single quotes (`Title', ..)
(y) Title in double quotes (``Title'', ..)
(z) Title in guillemets (<<Title>>, ..)
Select:
\ans=
You have selected: Title plain
>>TITLE OF ARTICLE:
<<CAPITALIZATION OF ARTICLE TITLE:
(*) Sentence style (capitalize first word and those in braces)
(t) Title style (just as in bib entry)
Select:
\ans=
You have selected: Sentence style
>>CAPITALIZATION OF ARTICLE TITLE:
<<ARTICLE TITLE PRESENT:
(*) Article title present in journals and proceedings
(x) No article title
Select:
\ans=
You have selected: Article title present
>>ARTICLE TITLE PRESENT:
<<JOURNAL NAMES:
(*) Periods in journal names are retained, as `Phys. Rev.'
(x) Dotless journal names as `Phys Rev'
Select:
\ans=
You have selected: Periods in journal names
>>JOURNAL NAMES:
<<JOURNAL NAME FONT:
(*) Journal name italics
(r) Journal name normal font
Select:
\ans=
You have selected: Journal name italics
>>JOURNAL NAME FONT:
<<THESIS TITLE:
(*) Thesis titles like books
(a) Thesis title like article
(x) No thesis title
Select:
\ans=
You have selected: Thesis titles like books
>>THESIS TITLE:
<<TECHNICAL REPORT TITLE:
(*) Tech. report title like articles
(b) Tech. report title like books
Select:
\ans=b
You have selected: Tech. report title like books
>>TECHNICAL REPORT TITLE:
<<TECHNICAL REPORT NUMBER:
(*) Tech. report and number plain as `Tech. Rep. 123'
(i) Tech. report and number italic as `{\it Tech. Rep. 123'}
Select:
\ans=
You have selected: Tech. report and number plain
>>TECHNICAL REPORT NUMBER:
<<JOURNAL VOLUME:
(*) Volume plain as vol(num)
(i) Volume italic as {\em vol}(num)
(b) Volume bold as {\bf vol}(num)
(d) Volume and number bold as {\bf vol(num)}
Select:
\ans=b
You have selected: Volume bold
>>JOURNAL VOLUME:
<<JOURNAL VOL AND NUMBER:
(*) Journal vol(num) as 34(2)
(s) Journal vol (num) as 34 (2)
(c) Journal vol, num as 34, 2
(n) Journal vol, no. num as 34, no. 2
(h) Journal vol, \# number as 34, \#2
(b) Journal vol number as 34 2
(x) Journal vol, without number as 34
Select:
\ans=
You have selected: Journal vol(num)
>>JOURNAL VOL AND NUMBER:
<<VOLUME PUNCTUATION:
(*) Volume with colon as vol(num):ppp
(s) Volume with colon and space as vol(num): ppp
(h) Volume with semi-colon as vol(num); ppp
(c) Volume with comma as vol(num), ppp
(b) Volume with blank as vol(num) ppp
Select:
\ans=c
You have selected: Volume with comma
>>VOLUME PUNCTUATION:
<<YEAR IN JOURNAL SPECIFICATION:
(*) Journal year like others as given by date position
(v) Journal vol(year) as 34(1995)
(s) Journal vol (year) as 34 (1995)
(p) Year with pages as 34(2), (1995) 1345--1387
(c) Year, comma, pages as 34(2), (1995), 1345--1387
Select:
\ans=
You have selected: Journal year like others
>>YEAR IN JOURNAL SPECIFICATION:
<<PAGE NUMBERS:
(*) Start and stop page numbers given
(f) Only start page number
Select:
\ans=
You have selected: Start and stop page numbers
>>PAGE NUMBERS:
<<LARGE PAGE NUMBERS:
(*) No separators for large page numbers
(c) Comma inserted over 9999 as 11,234
(s) Thin space inserted over 9999 as 11 234
(p) Period inserted over 9999 as 11.234
Select:
\ans=
You have selected: No separators for large page numbers
>>LARGE PAGE NUMBERS:
<<WORD `PAGE' IN ARTICLES:
(*) Article pages numbers only as 234-256
(p) Include `page' in articles as pp. 234--256
Select:
\ans=p
You have selected: Include `page' in articles
>>WORD `PAGE' IN ARTICLES:
<<POSITION OF PAGES:
(*) Pages given mid text as is normal
(e) Pages at end but before any notes
Select:
\ans=e
You have selected: Pages at end
>>POSITION OF PAGES:
<<WORD `VOLUME' IN ARTICLES:
(*) Article volume as number only as 21
(p) Include `volume' in articles as vol. 21
Select:
\ans=
You have selected: Article volume as number only
>>WORD `VOLUME' IN ARTICLES:
<<NUMBER AND SERIES FOR COLLECTIONS:
(*) Allows number without series and suppresses word "number"
(s) Standard BibTeX as: "number 123 in Total Works"; error if number and no ser
ies
Select:
\ans=
You have selected: Allows number without series
>>NUMBER AND SERIES FOR COLLECTIONS:
<<POSITION OF NUMBER AND SERIES:
(*) After chapter and pages as in standard BibTeX
(t) Just before publisher or organization
Select:
\ans=
You have selected: After chapter and pages
>>POSITION OF NUMBER AND SERIES:
<<VOLUME AND SERIES FOR BOOKS/COLLECTIONS:
(*) Vol. 23 of Series as in standard BibTeX
(s) Series, vol. 23
Select:
\ans=
You have selected: Vol. 23 of Series
>>VOLUME AND SERIES FOR BOOKS/COLLECTIONS:
<<POSITION OF VOLUME AND SERIES FOR INCOLLECTIONS:
(*) Series and volume after the editors
(e) Series and volume after booktitle and before editors
Select:
\ans=e
You have selected: Series and volume after booktitle
>>POSITION OF VOLUME AND SERIES FOR INCOLLECTIONS:
<<JOURNAL NAME PUNCTUATION:
(*) Comma after journal name
(x) Space after journal name
Select:
\ans=
You have selected: Comma after journal
>>JOURNAL NAME PUNCTUATION:
<<BOOK TITLE:
(*) Book title italic (\em)
(p) Book title plain (no font command)
Select:
\ans=
You have selected: Book title italic
>>BOOK TITLE:
<<PAGES IN BOOKS:
(*) Pages in book plain as pp. 50-55
(p) Pages in book in parentheses as (pp. 50-55)
(x) Pages in book bare as 50-55
Select:
\ans=
You have selected: Pages in book plain
>>PAGES IN BOOKS:
<<TOTAL PAGES OF A BOOK:
(*) Total book pages not printed
(p) For book: 345 pages or pp.
(a) Total book pages before publisher
Select:
\ans=
You have selected: Total book pages not printed
>>TOTAL PAGES OF A BOOK:
<<PUBLISHER ADDRESS:
(*) Publisher, address as Harcourt, New York
(a) Address: Publisher as New York: Harcourt
Select:
\ans=a
You have selected: Address: Publisher
>>PUBLISHER ADDRESS:
<<PUBLISHER IN PARENTHESES:
(*) Publisher as normal block without parentheses
(p) Publisher in parentheses
(d) Publisher and date in parentheses (Oxford, 1994)
(c) Publisher and date in parentheses, no comma (Oxford 1994)
(f) Publisher and date without parentheses Oxford, 1994
(k) Publisher and date, no parentheses, no comma Oxford 1994
Select:
\ans=
You have selected: Publisher as normal block
>>PUBLISHER IN PARENTHESES:
<<PUBLISHER POSITION:
(*) Publisher after chapter, pages
(p) Publisher before chapter, pages
(e) Publisher after edition
Select:
\ans=e
You have selected: Publisher after edition
>>PUBLISHER POSITION:
<<ISBN NUMBER:
(*) Include ISBN for books, booklets, etc.
(x) No ISBN
Select:
\ans=x
You have selected: No ISBN
>>ISBN NUMBER:
<<ISSN NUMBER:
(*) Include ISSN for periodicals
(x) No ISSN
Select:
\ans=x
You have selected: No ISSN
>>ISSN NUMBER:
<<DOI NUMBER:
(*) Include DOI as "doi: number"
(u) Format DOI as URL //dx.doi.org/doi (must give url options!)
(a) Insert DOI AGU style as part of page number
(x) No DOI
Select:
\ans=x
You have selected: No DOI
>>DOI NUMBER:
<<`EDITOR' AFTER NAMES (EDITED BOOKS WITHOUT AUTHORS):
(*) Word `editor' after name
(a) `Name (editor),' in parentheses, after name, comma after
(b) `Name (Editor),' as above, editor upper case
(c) `Name, (editor)' in parentheses, after name, comma between
(d) `Name, (Editor)' as above, editor upper case
(e) `Name (editor)' in parentheses, after name, no commas
(f) `Name (Editor)' as above, editor upper case
Select:
\ans=e
You have selected: `Name (editor)'
>>`EDITOR' AFTER NAMES (EDITED BOOKS WITHOUT AUTHORS):
<<EDITOR IN COLLECTIONS:
(*) Same as for edited book (names before booktitle)
(b) In booktitle, edited by .. (where .. is names)
(p) In booktitle (edited by ..)
(c) In booktitle, (edited by ..)
(e) In booktitle, editor ..
(f) In booktitle, (editor) ..
(k) In booktitle (editor..)
(g) In booktitle, (editor..)
(j) In booktitle, .., editor
(m) In booktitle (.., editor)
Select:
\ans=j
You have selected: In booktitle, .., editor
>>EDITOR IN COLLECTIONS:
<<PUNCTUATION BETWEEN SECTIONS (BLOCKS):
(*) \newblock after blocks (periods or new lines with openbib option)
(c) Comma between blocks
(s) Semi-colon between blocks
(b) Blanks between blocks
(t) Period after titles of articles, books, etc else commas
(u) Colon after titles of articles, books, etc else commas
(a) Period after titles of articles else commas
(d) Colon after titles of articles else commas
Select:
\ans=t
You have selected: Period after titles of articles, books, etc
>>PUNCTUATION BETWEEN SECTIONS (BLOCKS):
<<PUNCTUATION BEFORE NOTES (if not using \newblock)
(*) Notes have regular punctuation like all other blocks
(p) Notes preceded by period
Select:
\ans=p
You have selected: Notes preceded by period
>>PUNCTUATION BEFORE NOTES (if not using \newblock)
<<PUNCTUATION AFTER AUTHORS:
(*) Author block normal with regular block punctuation
(c) Author block with colon
Select:
\ans=
You have selected: Author block normal
>>PUNCTUATION AFTER AUTHORS:
<<PUNCTUATION AFTER `IN':
(*) Space after `in' for incollection or inproceedings
(c) Colon after `in' (as `In: ...')
(i) Italic `in' and space
(d) Italic `in' and colon
(x) No word `in' for edited works
Select:
\ans=c
You have selected: Colon after `in'
>>PUNCTUATION AFTER `IN':
<<`IN' WITH JOURNAL NAMES (if using 'in' with collections)
(*) No `in' before journal name
(i) Add `in' before journal name in style for incollection
Select:
\ans=
You have selected: No `in' before journal name
>>`IN' WITH JOURNAL NAMES (if using 'in' with collections)
<<FINAL PUNCTUATION:
(*) Period at very end of the listed reference
(x) No period at end
Select:
\ans=
You have selected: Period at very end
>>FINAL PUNCTUATION:
<<ABBREVIATE WORD `PAGES' (if not using external language file)
(*) `Page(s)' (no abbreviation)
(a) `Page' abbreviated as p. or pp.
(x) `Page' omitted
Select:
\ans=a
You have selected: `Page' abbreviated
<<ABBREVIATE WORD `EDITORS':
(*) `Editor(s)' (no abbreviation)
(a) `Editor' abbreviated as ed. or eds.
Select:
\ans=a
You have selected: `Editor' abbreviated
>>ABBREVIATE WORD `EDITORS':
<<OTHER ABBREVIATIONS:
(*) No abbreviations of volume, edition, chapter, etc
(a) Abbreviations of such words
Select:
\ans=a
You have selected: Abbreviations
>>OTHER ABBREVIATIONS:
<<ABBREVIATION FOR `EDITION' (if abbreviating words)
(*) `Edition' abbreviated as `edn'
(a) `Edition' abbreviated as `ed'
Select:
\ans=a
You have selected: `Edition' abbreviated as `ed'
<<MONTHS WITH DOTS:
(*) Months with dots as Jan.
(x) Months without dots as Feb Mar
Select:
\ans=
You have selected: Months with dots
>>MONTHS WITH DOTS:
>>ABBREVIATION FOR `EDITION' (if abbreviating words)
<<EDITION NUMBERS:
(*) Editions as in database saving much processing memory
(w) Write out editions as first, second, third, etc
(n) Numerical editions as 1st, 2nd, 3rd, etc
Select:
\ans=n
You have selected: Numerical editions
>>EDITION NUMBERS:
>>ABBREVIATE WORD `PAGES' (if not using external language file)
Reading external language file \cfile=
<<STORED JOURNAL NAMES:
(*) Full journal names for prestored journals
(a) Abbreviated journal names
(s) Abbreviated with astronomy shorthands like ApJ and AJ
Select:
\ans=
You have selected: Full journal names
>>STORED JOURNAL NAMES:
<<AMPERSAND:
(*) Use word `and' in author lists
(a) Use ampersand in place of `and'
(v) Use \BIBand in place of `and'
Select:
\ans=
You have selected: Use word `and'
>>AMPERSAND:
<<COMMA BEFORE `AND':
(*) Comma before `and' as `Tom, Dick, and Harry'
(n) No comma before `and' as `Tom, Dick and Harry'
(c) Comma even with 2 authors as `Tom, and Harry'
Select:
\ans=n
You have selected: No comma before `and'
>>COMMA BEFORE `AND':
<<NO `AND' IN REFERENCE LIST:
(*) With `and' before last author in reference list
(x) No `and' as `Tom, Dick, Harry'
Select:
\ans=
You have selected: With `and'
>>NO `AND' IN REFERENCE LIST:
<<COMMA BEFORE `ET AL':
(*) Comma before `et al' in reference list
(x) No comma before `et al'
Select:
\ans=x
You have selected: No comma before `et al'
>>COMMA BEFORE `ET AL':
<<FONT OF `ET AL':