-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbibweb.html
1012 lines (878 loc) · 36.1 KB
/
bibweb.html
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
<HTML>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<!-- Created on November, 25 2003 by texi2html 1.64 -->
<!--
Written by: Lionel Cons <Lionel.Cons@cern.ch> (original author)
Karl Berry <karl@freefriends.org>
Olaf Bachmann <obachman@mathematik.uni-kl.de>
and many others.
Maintained by: Olaf Bachmann <obachman@mathematik.uni-kl.de>
Send bugs and suggestions to <texi2html@mathematik.uni-kl.de>
-->
<HEAD>
<TITLE>Bibweb Manual: </TITLE>
<META NAME="description" CONTENT="Bibweb Manual: ">
<META NAME="keywords" CONTENT="Bibweb Manual: ">
<META NAME="resource-type" CONTENT="document">
<META NAME="distribution" CONTENT="global">
<META NAME="Generator" CONTENT="texi2html 1.64">
</HEAD>
<BODY LANG="" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#0000FF" VLINK="#800080" ALINK="#FF0000">
<A NAME="SEC_Top"></A>
<TABLE CELLPADDING=1 CELLSPACING=1 BORDER=0>
<TR><TD VALIGN="MIDDLE" ALIGN="LEFT">[<A HREF="bibweb.html#SEC_Top">Top</A>]</TD>
<TD VALIGN="MIDDLE" ALIGN="LEFT">[<A HREF="bibweb.html#SEC_Contents">Contents</A>]</TD>
<TD VALIGN="MIDDLE" ALIGN="LEFT">[Index]</TD>
<TD VALIGN="MIDDLE" ALIGN="LEFT">[<A HREF="bibweb.html#SEC_About"> ? </A>]</TD>
</TR></TABLE>
<H1>Bibweb Manual</H1></P><P>
Bibweb is a perl script written by John Palmieri (in consultation with
Bill Dwyer).
</P><P>
This is version 0.60, November 2003, of the Bibweb manual. Bug reports
and suggestions for new features should go to
<SAMP>`palmieri@math.washington.edu'</SAMP>.
</P><P>
This is the first version of this manual; it is done (except for the
indices).
</P><P>
<BLOCKQUOTE><TABLE BORDER=0 CELLSPACING=0>
<TR><TD ALIGN="left" VALIGN="TOP"><A HREF="bibweb.html#SEC1">1. Introduction</A></TD><TD> </TD><TD ALIGN="left" VALIGN="TOP">Overview, quick instructions</TD></TR>
<TR><TD ALIGN="left" VALIGN="TOP"><A HREF="bibweb.html#SEC2">2. How to</A></TD><TD> </TD><TD ALIGN="left" VALIGN="TOP">More detailed instructions</TD></TR>
<TR><TD ALIGN="left" VALIGN="TOP"><A HREF="bibweb.html#SEC9">3. Installation</A></TD><TD> </TD><TD ALIGN="left" VALIGN="TOP">How to install</TD></TR>
</TABLE>
<br>
How to
<br>
<br>
<TABLE BORDER=0 CELLSPACING=0>
<TR><TD ALIGN="left" VALIGN="TOP"><A HREF="bibweb.html#SEC3">2.1 LaTeX file</A></TD><TD> </TD><TD ALIGN="left" VALIGN="TOP">What your LaTeX file should look like</TD></TR>
<TR><TD ALIGN="left" VALIGN="TOP"><A HREF="bibweb.html#SEC6">2.2 Invoking bibweb</A></TD><TD> </TD><TD ALIGN="left" VALIGN="TOP">What bibweb does</TD></TR>
</TABLE>
<br>
LaTeX file
<br>
<br>
<TABLE BORDER=0 CELLSPACING=0>
<TR><TD ALIGN="left" VALIGN="TOP"><A HREF="bibweb.html#SEC4">2.1.1 Bibliography command</A></TD><TD> </TD><TD ALIGN="left" VALIGN="TOP">What the \bibliography command should look like</TD></TR>
<TR><TD ALIGN="left" VALIGN="TOP"><A HREF="bibweb.html#SEC5">2.1.2 Citations</A></TD><TD> </TD><TD ALIGN="left" VALIGN="TOP">Formats for citations</TD></TR>
</TABLE>
<br>
Invoking bibweb
<br>
<br>
<TABLE BORDER=0 CELLSPACING=0>
<TR><TD ALIGN="left" VALIGN="TOP"><A HREF="bibweb.html#SEC7">2.2.1 Basic operation</A></TD><TD> </TD><TD ALIGN="left" VALIGN="TOP">Quick instructions</TD></TR>
<TR><TD ALIGN="left" VALIGN="TOP"><A HREF="bibweb.html#SEC8">2.2.2 Options</A></TD><TD> </TD><TD ALIGN="left" VALIGN="TOP">Options for running bibweb</TD></TR>
</TABLE>
<br>
</BLOCKQUOTE>
<P>
<HR SIZE=1>
<A NAME="SEC1"></A>
<TABLE CELLPADDING=1 CELLSPACING=1 BORDER=0>
<TR><TD VALIGN="MIDDLE" ALIGN="LEFT">[<A HREF="bibweb.html#SEC_Top"> < </A>]</TD>
<TD VALIGN="MIDDLE" ALIGN="LEFT">[<A HREF="bibweb.html#SEC2"> > </A>]</TD>
<TD VALIGN="MIDDLE" ALIGN="LEFT"> <TD VALIGN="MIDDLE" ALIGN="LEFT">[ << ]</TD>
<TD VALIGN="MIDDLE" ALIGN="LEFT">[<A HREF="bibweb.html#SEC_Top"> Up </A>]</TD>
<TD VALIGN="MIDDLE" ALIGN="LEFT">[ >> ]</TD>
<TD VALIGN="MIDDLE" ALIGN="LEFT"> <TD VALIGN="MIDDLE" ALIGN="LEFT"> <TD VALIGN="MIDDLE" ALIGN="LEFT"> <TD VALIGN="MIDDLE" ALIGN="LEFT"> <TD VALIGN="MIDDLE" ALIGN="LEFT">[<A HREF="bibweb.html#SEC_Top">Top</A>]</TD>
<TD VALIGN="MIDDLE" ALIGN="LEFT">[<A HREF="bibweb.html#SEC_Contents">Contents</A>]</TD>
<TD VALIGN="MIDDLE" ALIGN="LEFT">[Index]</TD>
<TD VALIGN="MIDDLE" ALIGN="LEFT">[<A HREF="bibweb.html#SEC_About"> ? </A>]</TD>
</TR></TABLE>
<A NAME="Introduction"></A>
<H1> 1. Introduction </H1>
<!--docid::SEC1::-->
<P>
Bibweb is a utility for automatically retrieving bibliographical
information from the American Mathematical Society's MathSciNet search
engine (available at <A HREF="http://www.ams.org/mathscinet">http://www.ams.org/mathscinet</A>). (In
particular, in order to use bibweb, you must have access to MathSciNet,
which means that you or your institution has at some point shelled out
some quantity of money to the AMS. Anyway...)
</P><P>
If you're too lazy to go to the library or use a web browser to find out
bibliographical information for that ground-breaking paper you're
writing, then bibweb is the program for you. It is intended for use
with BibTeX (which means with LaTeX), and you have to write
citations in a particular format, but that's about all there is to it.
</P><P>
Briefly: once you've installed bibweb, if you are editing a file called
<TT>`bozo.tex'</TT>, then you need to insert the following line:
</P><P>
<TABLE><tr><td> </td><td class=example><pre> \bibliography{bozo}
</pre></td></tr></table></P><P>
If you are also using the BibTeX file <TT>`junk.bib'</TT>, then you
should use the following line:
</P><P>
<TABLE><tr><td> </td><td class=example><pre> \bibliography{junk,bozo}
</pre></td></tr></table></P><P>
When you want to cite a paper whose bibliographical information you are
lacking, say "Periodic phenomena in the Adams-Novikov spectral
sequence" by H. R. Miller, D. C. Ravenel, and W. S. Wilson, then you
give LaTeX the command
</P><P>
<TABLE><tr><td> </td><td class=example><pre> \cite{miller-ravenel-wilson-periodic}
</pre></td></tr></table></P><P>
or
</P><P>
<TABLE><tr><td> </td><td class=example><pre> \cite{miller-ravenel-wilson-novikov}
</pre></td></tr></table></P><P>
or
</P><P>
<TABLE><tr><td> </td><td class=example><pre> \cite{miller-ravenel-wilson}
</pre></td></tr></table></P><P>
or
</P><P>
<TABLE><tr><td> </td><td class=example><pre> \cite{miller-ravenel;adams-spectral}
</pre></td></tr></table></P><P>
When you run this through LaTeX, it won't find the citation (by
assumption); BibTeX won't find a citation either. When you run
bibweb, though, by typing
</P><P>
<TABLE><tr><td> </td><td class=example><pre> bibweb bozo
</pre></td></tr></table></P><P>
at the shell prompt, then it takes your citation and queries
MathSciNet. If it finds a match, it writes the bibliographic
information, in BibTeX format, to the file <TT>`bozo.bib'</TT>.
</P><P>
Bibweb also lets you search for just a single citation, it lets you
specify the names of the input (TeX) and output (BibTeX) files
separately, and has other options. See section <A HREF="bibweb.html#SEC8">2.2.2 Options</A>, for details.
</P><P>
<A NAME="How to"></A>
<HR SIZE="6">
<A NAME="SEC2"></A>
<TABLE CELLPADDING=1 CELLSPACING=1 BORDER=0>
<TR><TD VALIGN="MIDDLE" ALIGN="LEFT">[<A HREF="bibweb.html#SEC1"> < </A>]</TD>
<TD VALIGN="MIDDLE" ALIGN="LEFT">[<A HREF="bibweb.html#SEC3"> > </A>]</TD>
<TD VALIGN="MIDDLE" ALIGN="LEFT"> <TD VALIGN="MIDDLE" ALIGN="LEFT">[ << ]</TD>
<TD VALIGN="MIDDLE" ALIGN="LEFT">[<A HREF="bibweb.html#SEC_Top"> Up </A>]</TD>
<TD VALIGN="MIDDLE" ALIGN="LEFT">[<A HREF="bibweb.html#SEC9"> >> </A>]</TD>
<TD VALIGN="MIDDLE" ALIGN="LEFT"> <TD VALIGN="MIDDLE" ALIGN="LEFT"> <TD VALIGN="MIDDLE" ALIGN="LEFT"> <TD VALIGN="MIDDLE" ALIGN="LEFT"> <TD VALIGN="MIDDLE" ALIGN="LEFT">[<A HREF="bibweb.html#SEC_Top">Top</A>]</TD>
<TD VALIGN="MIDDLE" ALIGN="LEFT">[<A HREF="bibweb.html#SEC_Contents">Contents</A>]</TD>
<TD VALIGN="MIDDLE" ALIGN="LEFT">[Index]</TD>
<TD VALIGN="MIDDLE" ALIGN="LEFT">[<A HREF="bibweb.html#SEC_About"> ? </A>]</TD>
</TR></TABLE>
<H1> 2. How to </H1>
<!--docid::SEC2::-->
<P>
In this section, we give detailed instructions for how to use bibweb.
</P><P>
<BLOCKQUOTE><TABLE BORDER=0 CELLSPACING=0>
<TR><TD ALIGN="left" VALIGN="TOP"><A HREF="bibweb.html#SEC3">2.1 LaTeX file</A></TD><TD> </TD><TD ALIGN="left" VALIGN="TOP">What your LaTeX file should look like</TD></TR>
<TR><TD ALIGN="left" VALIGN="TOP"><A HREF="bibweb.html#SEC6">2.2 Invoking bibweb</A></TD><TD> </TD><TD ALIGN="left" VALIGN="TOP">What bibweb does</TD></TR>
</TABLE></BLOCKQUOTE>
<P>
<A NAME="LaTeX file"></A>
<HR SIZE="6">
<A NAME="SEC3"></A>
<TABLE CELLPADDING=1 CELLSPACING=1 BORDER=0>
<TR><TD VALIGN="MIDDLE" ALIGN="LEFT">[<A HREF="bibweb.html#SEC2"> < </A>]</TD>
<TD VALIGN="MIDDLE" ALIGN="LEFT">[<A HREF="bibweb.html#SEC4"> > </A>]</TD>
<TD VALIGN="MIDDLE" ALIGN="LEFT"> <TD VALIGN="MIDDLE" ALIGN="LEFT">[<A HREF="bibweb.html#SEC1"> << </A>]</TD>
<TD VALIGN="MIDDLE" ALIGN="LEFT">[<A HREF="bibweb.html#SEC2"> Up </A>]</TD>
<TD VALIGN="MIDDLE" ALIGN="LEFT">[<A HREF="bibweb.html#SEC6"> >> </A>]</TD>
<TD VALIGN="MIDDLE" ALIGN="LEFT"> <TD VALIGN="MIDDLE" ALIGN="LEFT"> <TD VALIGN="MIDDLE" ALIGN="LEFT"> <TD VALIGN="MIDDLE" ALIGN="LEFT"> <TD VALIGN="MIDDLE" ALIGN="LEFT">[<A HREF="bibweb.html#SEC_Top">Top</A>]</TD>
<TD VALIGN="MIDDLE" ALIGN="LEFT">[<A HREF="bibweb.html#SEC_Contents">Contents</A>]</TD>
<TD VALIGN="MIDDLE" ALIGN="LEFT">[Index]</TD>
<TD VALIGN="MIDDLE" ALIGN="LEFT">[<A HREF="bibweb.html#SEC_About"> ? </A>]</TD>
</TR></TABLE>
<H2> 2.1 LaTeX file </H2>
<!--docid::SEC3::-->
<P>
In this section, we describe how to write your LaTeX file so that it
will produce output suitable for bibweb.
</P><P>
<BLOCKQUOTE><TABLE BORDER=0 CELLSPACING=0>
<TR><TD ALIGN="left" VALIGN="TOP"><A HREF="bibweb.html#SEC4">2.1.1 Bibliography command</A></TD><TD> </TD><TD ALIGN="left" VALIGN="TOP">What the \bibliography command should look like</TD></TR>
<TR><TD ALIGN="left" VALIGN="TOP"><A HREF="bibweb.html#SEC5">2.1.2 Citations</A></TD><TD> </TD><TD ALIGN="left" VALIGN="TOP">Formats for citations</TD></TR>
</TABLE></BLOCKQUOTE>
<P>
<A NAME="Bibliography command"></A>
<HR SIZE="6">
<A NAME="SEC4"></A>
<TABLE CELLPADDING=1 CELLSPACING=1 BORDER=0>
<TR><TD VALIGN="MIDDLE" ALIGN="LEFT">[<A HREF="bibweb.html#SEC3"> < </A>]</TD>
<TD VALIGN="MIDDLE" ALIGN="LEFT">[<A HREF="bibweb.html#SEC5"> > </A>]</TD>
<TD VALIGN="MIDDLE" ALIGN="LEFT"> <TD VALIGN="MIDDLE" ALIGN="LEFT">[<A HREF="bibweb.html#SEC2"> << </A>]</TD>
<TD VALIGN="MIDDLE" ALIGN="LEFT">[<A HREF="bibweb.html#SEC3"> Up </A>]</TD>
<TD VALIGN="MIDDLE" ALIGN="LEFT">[<A HREF="bibweb.html#SEC6"> >> </A>]</TD>
<TD VALIGN="MIDDLE" ALIGN="LEFT"> <TD VALIGN="MIDDLE" ALIGN="LEFT"> <TD VALIGN="MIDDLE" ALIGN="LEFT"> <TD VALIGN="MIDDLE" ALIGN="LEFT"> <TD VALIGN="MIDDLE" ALIGN="LEFT">[<A HREF="bibweb.html#SEC_Top">Top</A>]</TD>
<TD VALIGN="MIDDLE" ALIGN="LEFT">[<A HREF="bibweb.html#SEC_Contents">Contents</A>]</TD>
<TD VALIGN="MIDDLE" ALIGN="LEFT">[Index]</TD>
<TD VALIGN="MIDDLE" ALIGN="LEFT">[<A HREF="bibweb.html#SEC_About"> ? </A>]</TD>
</TR></TABLE>
<H3> 2.1.1 Bibliography command </H3>
<!--docid::SEC4::-->
<P>
You need to decide where you want to put the bibliographic information
that bibweb will give you; this should be a file ending in <SAMP>`.bib'</SAMP>.
Suppose you decide to use a file called <TT>`jimbob.bib'</TT> (which may or
may not exist at this point). Then you need the following line in your
LaTeX file:
</P><P>
<TABLE><tr><td> </td><td class=example><pre> \bibliography{jimbob}
</pre></td></tr></table></P><P>
As indicated above, if you already have some other BibTeX files lying
around, and you also want to use these (say they're called
<TT>`manny.bib'</TT>, <TT>`moe.bib'</TT>, and <TT>`jack.bib'</TT>),
then you should instead use the following line:
</P><P>
<TABLE><tr><td> </td><td class=example><pre> \bibliography{manny,moe,jack,jimbob}
</pre></td></tr></table></P><P>
<A NAME="Citations"></A>
<HR SIZE="6">
<A NAME="SEC5"></A>
<TABLE CELLPADDING=1 CELLSPACING=1 BORDER=0>
<TR><TD VALIGN="MIDDLE" ALIGN="LEFT">[<A HREF="bibweb.html#SEC4"> < </A>]</TD>
<TD VALIGN="MIDDLE" ALIGN="LEFT">[<A HREF="bibweb.html#SEC6"> > </A>]</TD>
<TD VALIGN="MIDDLE" ALIGN="LEFT"> <TD VALIGN="MIDDLE" ALIGN="LEFT">[<A HREF="bibweb.html#SEC2"> << </A>]</TD>
<TD VALIGN="MIDDLE" ALIGN="LEFT">[<A HREF="bibweb.html#SEC3"> Up </A>]</TD>
<TD VALIGN="MIDDLE" ALIGN="LEFT">[<A HREF="bibweb.html#SEC6"> >> </A>]</TD>
<TD VALIGN="MIDDLE" ALIGN="LEFT"> <TD VALIGN="MIDDLE" ALIGN="LEFT"> <TD VALIGN="MIDDLE" ALIGN="LEFT"> <TD VALIGN="MIDDLE" ALIGN="LEFT"> <TD VALIGN="MIDDLE" ALIGN="LEFT">[<A HREF="bibweb.html#SEC_Top">Top</A>]</TD>
<TD VALIGN="MIDDLE" ALIGN="LEFT">[<A HREF="bibweb.html#SEC_Contents">Contents</A>]</TD>
<TD VALIGN="MIDDLE" ALIGN="LEFT">[Index]</TD>
<TD VALIGN="MIDDLE" ALIGN="LEFT">[<A HREF="bibweb.html#SEC_About"> ? </A>]</TD>
</TR></TABLE>
<H3> 2.1.2 Citations </H3>
<!--docid::SEC5::-->
<P>
There are two different formats for citations that bibweb knows how to
handle, and it handles them in different ways.
</P><P>
<UL>
<LI>
Simpler format:
<P>
<TABLE><tr><td> </td><td class=example><pre> \cite{aaa-bbb-ccc-ddd-year}
</pre></td></tr></table></P><P>
<SAMP>`aaa'</SAMP> gets sent as the author, <SAMP>`bbb'</SAMP>, <SAMP>`ccc'</SAMP>, and
<SAMP>`ddd'</SAMP> get sent as miscellany (they can match anything, including
the author, title, journal, reviewer, or the text of the review).
<SAMP>`year'</SAMP> should be of the form <SAMP>`<1995'</SAMP> or <SAMP>`>1995'</SAMP> or
<SAMP>`=1995'</SAMP> or <SAMP>`1995'</SAMP>, in which case bibweb only searches for
papers from the appropriate years. <SAMP>`1995'</SAMP> is treated the same as
<SAMP>`=1995'</SAMP>. It seems that specifying a year or range of years slows
things down tremendously, so you might want to avoid this. Also, I
think if <SAMP>`year'</SAMP> is in some other format, it will just get ignored.
</P><P>
For example, <SAMP>`\cite{devinatz-hopkins-nilpotence}'</SAMP> matches two
papers: one is "Nilpotence and stable homotopy theory, I" by Devinatz,
Hopkins, and Smith; the other is "Morava's change of rings theorem" by
Devinatz, for which "Hopkins" and "nilpotence" are mentioned in the
review.
</P><P>
If you want to avoid the second sort of match, you can use the more
involved format.
</P><P>
<LI>
More involved format:
<P>
<TABLE><tr><td> </td><td class=example><pre> \cite{a1-a2-...-ak;t1-t2-...-tm;j1-j2-...jn;year}
</pre></td></tr></table></P><P>
<SAMP>`year'</SAMP> should be just like field <SAMP>`year'</SAMP> in the simpler format,
but it slows things down, so I would avoid it. <SAMP>`a1'</SAMP>, ...,
<SAMP>`ak'</SAMP> are treated as authors, <SAMP>`t1'</SAMP>, ..., <SAMP>`tm'</SAMP> are treated
as words in the title, <SAMP>`j1'</SAMP>, ..., <SAMP>`jn'</SAMP> are treated as words in
the journal name. You don't have to include all of the fields.
</P><P>
For example, <SAMP>`\cite{devinatz-hopkins;nilpotence}'</SAMP> matches only
the paper "Nilpotence and stable homotopy theory, I" by Devinatz,
Hopkins, and Smith. <SAMP>`\cite{miller-wilkerson;vanishing-steenrod}'</SAMP>
matches only "Vanishing lines for modules over the Steenrod algebra"
by Miller and Wilkerson, as does
<SAMP>`\cite{miller-wilkerson;vanishing-steenrod;;<1985}'</SAMP>, as does
<SAMP>`\cite{miller-wilkerson;vanishing-steenrod;pure;<1985}'</SAMP> (the
paper appeared in the <CITE>Journal of Pure and Applied Algebra</CITE>).
</P><P>
<LI>
Using wildcards:
<P>
You can use <SAMP>`*'</SAMP> as a wildcard; for instance,
<SAMP>`\cite{adams;hopf-invar*-one}'</SAMP> would return the two papers by
Adams called "On the non-existence of elements of Hopf invariant one".
</P><P>
When using MathSciNet by hand, if you want to search for papers by Mike
Hopkins, you could set the author field equal to <SAMP>`hopkins, m*'</SAMP>. On
the other hand, BibTeX treats commas as separators: if you give
BibTeX the command <SAMP>`\cite{hopkins,m*;global}'</SAMP>, BibTeX will
treat <SAMP>`hopkins'</SAMP> as one source and <SAMP>`m*;global'</SAMP> as another. So
to get bibweb to do the right thing, you should use a period instead of
a comma: use the command
</P><P>
<TABLE><tr><td> </td><td class=example><pre> \cite{hopkins.m*;global}
</pre></td></tr></table></P><P>
Bibweb will translate the <SAMP>`.'</SAMP> to a <SAMP>`,'</SAMP> before sending the
query to MathSciNet, so this citation would produce
</P><P>
<TABLE><tr><td> </td><td class=example><pre>%% Math Reviews number: 89g:55022
@incollection {hopkins.m*;global,
AUTHOR = {Hopkins, Michael J.},
TITLE = {Global methods in homotopy theory},
BOOKTITLE = {Homotopy theory (Durham, 1985)},
PAGES = {73--96},
PUBLISHER = {Cambridge Univ. Press},
ADDRESS = {Cambridge},
YEAR = {1987},
MRCLASS = {55Q45 (55P42 55P60 55Q10)},
MRNUMBER = {89g:55022},
MRREVIEWER = {Douglas C. Ravenel},
}
</pre></td></tr></table></P><P>
</UL>
<P>
<A NAME="Invoking bibweb"></A>
<HR SIZE="6">
<A NAME="SEC6"></A>
<TABLE CELLPADDING=1 CELLSPACING=1 BORDER=0>
<TR><TD VALIGN="MIDDLE" ALIGN="LEFT">[<A HREF="bibweb.html#SEC5"> < </A>]</TD>
<TD VALIGN="MIDDLE" ALIGN="LEFT">[<A HREF="bibweb.html#SEC7"> > </A>]</TD>
<TD VALIGN="MIDDLE" ALIGN="LEFT"> <TD VALIGN="MIDDLE" ALIGN="LEFT">[<A HREF="bibweb.html#SEC3"> << </A>]</TD>
<TD VALIGN="MIDDLE" ALIGN="LEFT">[<A HREF="bibweb.html#SEC2"> Up </A>]</TD>
<TD VALIGN="MIDDLE" ALIGN="LEFT">[<A HREF="bibweb.html#SEC9"> >> </A>]</TD>
<TD VALIGN="MIDDLE" ALIGN="LEFT"> <TD VALIGN="MIDDLE" ALIGN="LEFT"> <TD VALIGN="MIDDLE" ALIGN="LEFT"> <TD VALIGN="MIDDLE" ALIGN="LEFT"> <TD VALIGN="MIDDLE" ALIGN="LEFT">[<A HREF="bibweb.html#SEC_Top">Top</A>]</TD>
<TD VALIGN="MIDDLE" ALIGN="LEFT">[<A HREF="bibweb.html#SEC_Contents">Contents</A>]</TD>
<TD VALIGN="MIDDLE" ALIGN="LEFT">[Index]</TD>
<TD VALIGN="MIDDLE" ALIGN="LEFT">[<A HREF="bibweb.html#SEC_About"> ? </A>]</TD>
</TR></TABLE>
<H2> 2.2 Invoking bibweb </H2>
<!--docid::SEC6::-->
<P>
<BLOCKQUOTE><TABLE BORDER=0 CELLSPACING=0>
<TR><TD ALIGN="left" VALIGN="TOP"><A HREF="bibweb.html#SEC7">2.2.1 Basic operation</A></TD><TD> </TD><TD ALIGN="left" VALIGN="TOP">Quick instructions</TD></TR>
<TR><TD ALIGN="left" VALIGN="TOP"><A HREF="bibweb.html#SEC8">2.2.2 Options</A></TD><TD> </TD><TD ALIGN="left" VALIGN="TOP">Options for running bibweb</TD></TR>
</TABLE></BLOCKQUOTE>
<P>
<A NAME="Basic operation"></A>
<HR SIZE="6">
<A NAME="SEC7"></A>
<TABLE CELLPADDING=1 CELLSPACING=1 BORDER=0>
<TR><TD VALIGN="MIDDLE" ALIGN="LEFT">[<A HREF="bibweb.html#SEC6"> < </A>]</TD>
<TD VALIGN="MIDDLE" ALIGN="LEFT">[<A HREF="bibweb.html#SEC8"> > </A>]</TD>
<TD VALIGN="MIDDLE" ALIGN="LEFT"> <TD VALIGN="MIDDLE" ALIGN="LEFT">[<A HREF="bibweb.html#SEC3"> << </A>]</TD>
<TD VALIGN="MIDDLE" ALIGN="LEFT">[<A HREF="bibweb.html#SEC6"> Up </A>]</TD>
<TD VALIGN="MIDDLE" ALIGN="LEFT">[<A HREF="bibweb.html#SEC9"> >> </A>]</TD>
<TD VALIGN="MIDDLE" ALIGN="LEFT"> <TD VALIGN="MIDDLE" ALIGN="LEFT"> <TD VALIGN="MIDDLE" ALIGN="LEFT"> <TD VALIGN="MIDDLE" ALIGN="LEFT"> <TD VALIGN="MIDDLE" ALIGN="LEFT">[<A HREF="bibweb.html#SEC_Top">Top</A>]</TD>
<TD VALIGN="MIDDLE" ALIGN="LEFT">[<A HREF="bibweb.html#SEC_Contents">Contents</A>]</TD>
<TD VALIGN="MIDDLE" ALIGN="LEFT">[Index]</TD>
<TD VALIGN="MIDDLE" ALIGN="LEFT">[<A HREF="bibweb.html#SEC_About"> ? </A>]</TD>
</TR></TABLE>
<H3> 2.2.1 Basic operation </H3>
<!--docid::SEC7::-->
<P>
In this section, we give the basic instructions for running bibweb, as
well as a brief description of what bibweb does.
</P><P>
<TABLE><tr><td> </td><td class=example><pre> bibweb <VAR>file</VAR>
</pre></td></tr></table></P><P>
will run bibweb on <VAR>file</VAR>. For example, to run bibweb on the file
<TT>`elvis'</TT>, you type
</P><P>
<TABLE><tr><td> </td><td class=example><pre> bibweb elvis
</pre></td></tr></table></P><P>
Then bibweb will run BibTeX on <TT>`elvis'</TT> and read through the list
of missing citations. For each such citation, it searches MathSciNet,
and writes its results to the file <TT>`elvis.bib'</TT>. Once it has done
this, it runs BibTeX again, to make use of any new citations.
</P><P>
If bibweb can't find the file <TT>`elvis.aux'</TT> (which it wants to pass
to BibTeX), it prints an error message and stops. If it can't write
to <TT>`elvis.bib'</TT>, it should also print an error message and stop.
</P><P>
By "searches MathSciNet", I mean that it fires up a web browser that
goes to the MathSciNet site, gives it the appropriate query, gets the
response, and then quits. In recent versions of bibweb ---
versions 0.50 and later -- it uses a web browser incorporated into
perl. (Older versions used a program like <SAMP>`lynx'</SAMP> or
<SAMP>`wget'</SAMP> for web browsing.)
</P><P>
By "its results", I mean the following:
</P><P>
<UL>
<LI>
If bibweb finds exactly one entry matching your citation, it puts it in
<TT>`elvis.bib'</TT> with the key you chose. For instance, if you have
<P>
<TABLE><tr><td> </td><td class=example><pre> \cite{kan-miller-splitting-spaces}
</pre></td></tr></table></P><P>
then bibweb puts something like the following in <TT>`elvis.bib'</TT>:
</P><P>
<TABLE><tr><td> </td><td class=example><pre>%% citation 'kan-miller-splitting-spaces'
%% Math Reviews number: 57 #7582
@article {kan-miller-splitting-spaces,
AUTHOR = {Kan, Daniel M. and Miller, Edward Y.},
TITLE = {Splitting spaces with finite group actions},
JOURNAL = {Topology},
VOLUME = {16},
YEAR = {1977},
NUMBER = {4},
PAGES = {403--407},
MRCLASS = {55C35},
MRNUMBER = {57 \#7582},
MRREVIEWER = {J. P. May},
}
</pre></td></tr></table></P><P>
<LI>
If it finds several matches (at most 5), it writes them all to
<TT>`elvis.bib'</TT>, but leaves the original citation undefined. (The new
ones have citations given by their Math Reviews numbers.) So at this
point, you have to edit <TT>`elvis.bib'</TT> to change the keys of the
papers you're interested in, or you have to change your \cite command to
match what was written into <TT>`elvis.bib'</TT>.
<P>
For example, if you have
</P><P>
<TABLE><tr><td> </td><td class=example><pre> \cite{serre;faisceaux}
</pre></td></tr></table></P><P>
then there are two matches (or maybe there are three, now), which get
entered into <TT>`elvis.bib'</TT> as
</P><P>
<TABLE><tr><td> </td><td class=example><pre>%% citation 'serre;faisceaux'
%% Math Reviews number: 35 #3088
@article {MR35:3088,
AUTHOR = {Serre, Jean-Pierre},
TITLE = {Prolongement de faisceaux analytiques coh\'erents},
JOURNAL = {Ann. Inst. Fourier (Grenoble)},
VOLUME = {16},
YEAR = {1966},
NUMBER = {fasc. 1},
PAGES = {363--374},
MRCLASS = {32.50 (32.27)},
MRNUMBER = {35 \#3088},
MRREVIEWER = {B. Shiffman},
}
%% Math Reviews number: 16,953c
@article {MR16:953c,
AUTHOR = {Serre, Jean-Pierre},
TITLE = {Faisceaux alg\'ebriques coh\'erents},
JOURNAL = {Ann. of Math. (2)},
VOLUME = {61},
YEAR = {1955},
PAGES = {197--278},
MRCLASS = {14.0X},
MRNUMBER = {16,953c},
MRREVIEWER = {C. Chevalley},
}
</pre></td></tr></table></P><P>
<LI>
If there are more than 5 matches, it tells you that, and doesn't add any
new entries to <TT>`elvis.bib'</TT>. For example, if you have
<P>
<TABLE><tr><td> </td><td class=example><pre> \cite{serre}
</pre></td></tr></table></P><P>
then bibweb adds the following to <TT>`elvis.bib'</TT>:
</P><P>
<TABLE><tr><td> </td><td class=example><pre>%% citation 'serre'
%% More than 5 matches found.
</pre></td></tr></table></P><P>
You can change the number <SAMP>`5'</SAMP> to something else by using the
<SAMP>`-m'</SAMP> option. See section <A HREF="bibweb.html#SEC8">2.2.2 Options</A>.
</P><P>
<LI>
If it doesn't find any matches, it tells you that, and doesn't add any
new entries to <TT>`elvis.bib'</TT>. For example, if you have
<P>
<TABLE><tr><td> </td><td class=example><pre> \cite{serre-kan}
</pre></td></tr></table></P><P>
then bibweb adds the following to <TT>`elvis.bib'</TT>:
</P><P>
<TABLE><tr><td> </td><td class=example><pre>%% citation 'serre-kan'
%% No matches found.
</pre></td></tr></table></P><P>
<LI>
Occasionally, bibweb will say it only finds one match, but it will add
several things to <TT>`elvis.bib'</TT>. This happens when there are several
papers whose reviews are all together on MathSciNet (see
<SAMP>`\cite{dwyer-kan;obstruction-theory-diagrams}'</SAMP>, for example). In
these cases, bibweb ought to do a good job of assigning your chosen
bibliographical key to the correct entry, but you might want to
double-check.
<P>
</UL>
<P>
Finally, note that if you give the citation
</P><P>
<TABLE><tr><td> </td><td class=example><pre> \cite{serre}
</pre></td></tr></table></P><P>
and run bibweb, then run bibweb again, it will not query MathSciNet
again; instead it will tell you something like "You've searched for
`serre' before".
</P><P>
<A NAME="Options"></A>
<HR SIZE="6">
<A NAME="SEC8"></A>
<TABLE CELLPADDING=1 CELLSPACING=1 BORDER=0>
<TR><TD VALIGN="MIDDLE" ALIGN="LEFT">[<A HREF="bibweb.html#SEC7"> < </A>]</TD>
<TD VALIGN="MIDDLE" ALIGN="LEFT">[<A HREF="bibweb.html#SEC9"> > </A>]</TD>
<TD VALIGN="MIDDLE" ALIGN="LEFT"> <TD VALIGN="MIDDLE" ALIGN="LEFT">[<A HREF="bibweb.html#SEC3"> << </A>]</TD>
<TD VALIGN="MIDDLE" ALIGN="LEFT">[<A HREF="bibweb.html#SEC6"> Up </A>]</TD>
<TD VALIGN="MIDDLE" ALIGN="LEFT">[<A HREF="bibweb.html#SEC9"> >> </A>]</TD>
<TD VALIGN="MIDDLE" ALIGN="LEFT"> <TD VALIGN="MIDDLE" ALIGN="LEFT"> <TD VALIGN="MIDDLE" ALIGN="LEFT"> <TD VALIGN="MIDDLE" ALIGN="LEFT"> <TD VALIGN="MIDDLE" ALIGN="LEFT">[<A HREF="bibweb.html#SEC_Top">Top</A>]</TD>
<TD VALIGN="MIDDLE" ALIGN="LEFT">[<A HREF="bibweb.html#SEC_Contents">Contents</A>]</TD>
<TD VALIGN="MIDDLE" ALIGN="LEFT">[Index]</TD>
<TD VALIGN="MIDDLE" ALIGN="LEFT">[<A HREF="bibweb.html#SEC_About"> ? </A>]</TD>
</TR></TABLE>
<H3> 2.2.2 Options </H3>
<!--docid::SEC8::-->
<P>
bibweb can be run with several different options.
</P><P>
<DL COMPACT>
<DT><SAMP>`-i <VAR>file</VAR>'</SAMP>
<DD><DT><SAMP>`--input=<VAR>file</VAR>'</SAMP>
<DD>Run BibTeX on <VAR>file</VAR>.
<P>
<DT><SAMP>`-o <VAR>file</VAR>'</SAMP>
<DD><DT><SAMP>`--output=<VAR>file</VAR>'</SAMP>
<DD>Write output to <VAR>file</VAR> (after appending <SAMP>`.bib'</SAMP> to <VAR>file</VAR>,
if necessary).
<P>
<DT><SAMP>`--std'</SAMP>
<DD>Write output to STDOUT (the screen, ordinarily).
<P>
<DT><SAMP>`-c <VAR>citation</VAR>'</SAMP>
<DD><DT><SAMP>`--cite=<VAR>citation</VAR>'</SAMP>
<DD>Look up only <VAR>citation</VAR>. In this case, the output is written to the
screen, unless you also use the <SAMP>`-o'</SAMP> option.
<P>
<DT><SAMP>`-m <VAR>num</VAR>'</SAMP>
<DD><DT><SAMP>`--max=<VAR>num</VAR>'</SAMP>
<DD>Return at most <VAR>num</VAR> matches to each citation. Actually, if
<VAR>num</VAR> is more than 50, I think bibweb returns at most 50 matches
to each citation.
<P>
<DT><SAMP>`-e <VAR>site</VAR>'</SAMP>
<DD><DT><SAMP>`--emath=<VAR>site</VAR>'</SAMP>
<DD>Search MathSciNet at the web site <VAR>site</VAR>. The default value is read
from the environment variable <VAR>MATHSCINET_SITE</VAR>; if this variable
hasn't been set, the default is <SAMP>`www.ams.org'</SAMP>. Some other good
choices are <SAMP>`ams.rice.edu'</SAMP>, <SAMP>`ams.mathematik.uni-bielefeld.de'</SAMP>,
<SAMP>`ams.mpim-bonn.mpg.de'</SAMP>, <SAMP>`ams.u-strasbg.fr'</SAMP>, and
<SAMP>`ams.impa.br'</SAMP>---see
the MathSciNet homepage for more information. If you choose a value for
<VAR>site</VAR> that's not from this list, bibweb prints a warning, but goes
ahead and tries to use it anyway. You can use a bit of shorthand for
<VAR>site</VAR>: <SAMP>`ams'</SAMP> stands for <SAMP>`www.ams.org'</SAMP>; <SAMP>`rice'</SAMP>
stands for <SAMP>`ams.rice.edu'</SAMP>; <SAMP>`bielefeld'</SAMP> stands for
<SAMP>`ams.mathematik.uni-bielefeld.de'</SAMP>; <SAMP>`bonn'</SAMP> stands for
<SAMP>`ams.mpim-bonn.mpg.de'</SAMP>; <SAMP>`strasbg'</SAMP> stands for
<SAMP>`ams.u-strasbg.fr'</SAMP>; and <SAMP>`impa'</SAMP> stands for
<SAMP>`ams.impa.br'</SAMP>.
<P>
<DT><SAMP>`-sep <VAR>char</VAR>'</SAMP>
<DD>Use <VAR>char</VAR> to delimit fields in long citation format, instead of
semicolon (;)
<P>
<DT><SAMP>`-lax'</SAMP>
<DD>Use <SAMP>`%'</SAMP> to comment lines in BibTeX. The default behavior is to
use <SAMP>`@comment'</SAMP> as the comment character -- this is officially
supported by BibTeX, while <SAMP>`%'</SAMP> is not (although it seems to work).
<P>
<DT><SAMP>`-h'</SAMP>
<DD><DT><SAMP>`--help'</SAMP>
<DD>Print a short help message, and then quit.
<P>
</DL>
<P>
For example, any of the following commands
</P><P>
<TABLE><tr><td> </td><td class=example><pre> bibweb -i test -o a -m 10
bibweb test -o a -m 10
bibweb -o a -m 10 test
bibweb --output=a --max=10 test
</pre></td></tr></table></P><P>
has bibweb read the file <TT>`text.aux'</TT> and write output to
<TT>`a.bib'</TT>, returning at most 10 matches for each citation.
</P><P>
The command
</P><P>
<TABLE><tr><td> </td><td class=example><pre> bibweb --std -m 10 test
</pre></td></tr></table></P><P>
reads <TT>`test.aux'</TT> and writes the output to the screen (or whatever
you have STDOUT set to). The command
</P><P>
<TABLE><tr><td> </td><td class=example><pre> bibweb --emath=ams.rice.edu bozo
</pre></td></tr></table></P><P>
reads <TT>`bozo.aux'</TT>, writes to <TT>`bozo.bib'</TT>, and uses
<A HREF="ams.rice.edu">ams.rice.edu</A> for the MathSciNet search, as do the commands
</P><P>
<TABLE><tr><td> </td><td class=example><pre> bibweb --emath=rice bozo
bibweb -e rice bozo
bibweb bozo -e rice
</pre></td></tr></table></P><P>
The command
</P><P>
<TABLE><tr><td> </td><td class=example><pre> bibweb --emath=quack bozo
</pre></td></tr></table></P><P>
uses <SAMP>`quack'</SAMP> for the MathSciNet search. In this case, bibweb will
give a warning (since <SAMP>`quack'</SAMP> is not one of the recognized MathSciNet
sites), and will produce no usable results (it will be fast, though).
</P><P>
If you run the command
</P><P>
<TABLE><tr><td> </td><td class=example><pre> bibweb -m 23 -c 'serre'
</pre></td></tr></table></P><P>
then bibweb will look for all articles with <SAMP>`serre'</SAMP> as the
author. In this case, it will tell you that there were more than 50
matches found. In version 0.60 of bibweb, there is an upper
limit of about 50 on the number of matches found -- if there are
more matches than this, you have to refine your search criteria to
narrow things down.
</P><P>
<A NAME="Installation"></A>
<HR SIZE="6">
<A NAME="SEC9"></A>
<TABLE CELLPADDING=1 CELLSPACING=1 BORDER=0>
<TR><TD VALIGN="MIDDLE" ALIGN="LEFT">[<A HREF="bibweb.html#SEC8"> < </A>]</TD>
<TD VALIGN="MIDDLE" ALIGN="LEFT">[ > ]</TD>
<TD VALIGN="MIDDLE" ALIGN="LEFT"> <TD VALIGN="MIDDLE" ALIGN="LEFT">[<A HREF="bibweb.html#SEC2"> << </A>]</TD>
<TD VALIGN="MIDDLE" ALIGN="LEFT">[<A HREF="bibweb.html#SEC_Top"> Up </A>]</TD>
<TD VALIGN="MIDDLE" ALIGN="LEFT">[ >> ]</TD>
<TD VALIGN="MIDDLE" ALIGN="LEFT"> <TD VALIGN="MIDDLE" ALIGN="LEFT"> <TD VALIGN="MIDDLE" ALIGN="LEFT"> <TD VALIGN="MIDDLE" ALIGN="LEFT"> <TD VALIGN="MIDDLE" ALIGN="LEFT">[<A HREF="bibweb.html#SEC_Top">Top</A>]</TD>
<TD VALIGN="MIDDLE" ALIGN="LEFT">[<A HREF="bibweb.html#SEC_Contents">Contents</A>]</TD>
<TD VALIGN="MIDDLE" ALIGN="LEFT">[Index]</TD>
<TD VALIGN="MIDDLE" ALIGN="LEFT">[<A HREF="bibweb.html#SEC_About"> ? </A>]</TD>
</TR></TABLE>
<H1> 3. Installation </H1>
<!--docid::SEC9::-->
<P>
This is complicated: put the file <TT>`bibweb'</TT> in your path and make
sure it's executable.
</P><P>
That's it.
</P><P>
Actually, bibweb seems to require at least version 5.003 of perl, so if
you have an older version, you may have to upgrade.
</P><P>
And of course, to use bibweb at all, you need to have a subscription to
MathSciNet.
</P><P>
<HR SIZE="6">
<A NAME="SEC_Contents"></A>
<TABLE CELLPADDING=1 CELLSPACING=1 BORDER=0>
<TR><TD VALIGN="MIDDLE" ALIGN="LEFT">[<A HREF="bibweb.html#SEC_Top">Top</A>]</TD>
<TD VALIGN="MIDDLE" ALIGN="LEFT">[<A HREF="bibweb.html#SEC_Contents">Contents</A>]</TD>
<TD VALIGN="MIDDLE" ALIGN="LEFT">[Index]</TD>
<TD VALIGN="MIDDLE" ALIGN="LEFT">[<A HREF="bibweb.html#SEC_About"> ? </A>]</TD>
</TR></TABLE>
<H1>Table of Contents</H1>
<UL>
<A NAME="TOC1" HREF="bibweb.html#SEC1">1. Introduction</A>
<BR>
<A NAME="TOC2" HREF="bibweb.html#SEC2">2. How to</A>
<BR>
<UL>
<A NAME="TOC3" HREF="bibweb.html#SEC3">2.1 LaTeX file</A>
<BR>
<UL>
<A NAME="TOC4" HREF="bibweb.html#SEC4">2.1.1 Bibliography command</A>
<BR>
<A NAME="TOC5" HREF="bibweb.html#SEC5">2.1.2 Citations</A>
<BR>
</UL>
<A NAME="TOC6" HREF="bibweb.html#SEC6">2.2 Invoking bibweb</A>
<BR>
<UL>
<A NAME="TOC7" HREF="bibweb.html#SEC7">2.2.1 Basic operation</A>
<BR>
<A NAME="TOC8" HREF="bibweb.html#SEC8">2.2.2 Options</A>
<BR>
</UL>
</UL>
<A NAME="TOC9" HREF="bibweb.html#SEC9">3. Installation</A>
<BR>
</UL>
<HR SIZE=1>
<A NAME="SEC_OVERVIEW"></A>
<TABLE CELLPADDING=1 CELLSPACING=1 BORDER=0>
<TR><TD VALIGN="MIDDLE" ALIGN="LEFT">[<A HREF="bibweb.html#SEC_Top">Top</A>]</TD>
<TD VALIGN="MIDDLE" ALIGN="LEFT">[<A HREF="bibweb.html#SEC_Contents">Contents</A>]</TD>
<TD VALIGN="MIDDLE" ALIGN="LEFT">[Index]</TD>
<TD VALIGN="MIDDLE" ALIGN="LEFT">[<A HREF="bibweb.html#SEC_About"> ? </A>]</TD>
</TR></TABLE>
<H1>Short Table of Contents</H1>
<BLOCKQUOTE>
<A NAME="TOC1" HREF="bibweb.html#SEC1">1. Introduction</A>
<BR>
<A NAME="TOC2" HREF="bibweb.html#SEC2">2. How to</A>
<BR>
<A NAME="TOC9" HREF="bibweb.html#SEC9">3. Installation</A>
<BR>
</BLOCKQUOTE>
<HR SIZE=1>
<A NAME="SEC_About"></A>
<TABLE CELLPADDING=1 CELLSPACING=1 BORDER=0>
<TR><TD VALIGN="MIDDLE" ALIGN="LEFT">[<A HREF="bibweb.html#SEC_Top">Top</A>]</TD>
<TD VALIGN="MIDDLE" ALIGN="LEFT">[<A HREF="bibweb.html#SEC_Contents">Contents</A>]</TD>
<TD VALIGN="MIDDLE" ALIGN="LEFT">[Index]</TD>
<TD VALIGN="MIDDLE" ALIGN="LEFT">[<A HREF="bibweb.html#SEC_About"> ? </A>]</TD>
</TR></TABLE>
<H1>About this document</H1>
This document was generated by <I>John Palmieri</I> on <I>November, 25 2003</I>
using <A HREF="http://www.mathematik.uni-kl.de/~obachman/Texi2html
"><I>texi2html</I></A>
<P></P>
The buttons in the navigation panels have the following meaning:
<P></P>
<table border = "1">
<TR>
<TH> Button </TH>
<TH> Name </TH>
<TH> Go to </TH>
<TH> From 1.2.3 go to</TH>
</TR>
<TR>
<TD ALIGN="CENTER">
[ < ] </TD>
<TD ALIGN="CENTER">
Back
</TD>
<TD>
previous section in reading order
</TD>
<TD>
1.2.2
</TD>
</TR>
<TR>
<TD ALIGN="CENTER">
[ > ] </TD>
<TD ALIGN="CENTER">
Forward
</TD>
<TD>
next section in reading order
</TD>
<TD>
1.2.4
</TD>
</TR>
<TR>
<TD ALIGN="CENTER">
[ << ] </TD>
<TD ALIGN="CENTER">
FastBack
</TD>
<TD>
previous or up-and-previous section
</TD>
<TD>
1.1
</TD>
</TR>
<TR>
<TD ALIGN="CENTER">
[ Up ] </TD>
<TD ALIGN="CENTER">
Up
</TD>
<TD>
up section
</TD>
<TD>
1.2
</TD>
</TR>
<TR>
<TD ALIGN="CENTER">
[ >> ] </TD>
<TD ALIGN="CENTER">
FastForward
</TD>
<TD>
next or up-and-next section
</TD>
<TD>
1.3
</TD>
</TR>
<TR>
<TD ALIGN="CENTER">
[Top] </TD>
<TD ALIGN="CENTER">
Top
</TD>
<TD>
cover (top) of document
</TD>
<TD>
</TD>
</TR>
<TR>
<TD ALIGN="CENTER">
[Contents] </TD>
<TD ALIGN="CENTER">
Contents
</TD>
<TD>
table of contents
</TD>
<TD>
</TD>
</TR>
<TR>
<TD ALIGN="CENTER">
[Index] </TD>
<TD ALIGN="CENTER">
Index
</TD>
<TD>
concept index
</TD>
<TD>
</TD>
</TR>
<TR>
<TD ALIGN="CENTER">
[ ? ] </TD>
<TD ALIGN="CENTER">
About
</TD>
<TD>
this page
</TD>
<TD>
</TD>
</TR>
</TABLE>
<P></P>
where the <STRONG> Example </STRONG> assumes that the current position
is at <STRONG> Subsubsection One-Two-Three </STRONG> of a document of
the following structure:
<UL>
<LI> 1. Section One </LI>
<UL>
<LI>1.1 Subsection One-One</LI>
<UL>
<LI> ... </LI>
</UL>
<LI>1.2 Subsection One-Two</LI>
<UL>
<LI>1.2.1 Subsubsection One-Two-One
</LI><LI>1.2.2 Subsubsection One-Two-Two
</LI><LI>1.2.3 Subsubsection One-Two-Three <STRONG>
<== Current Position </STRONG>
</LI><LI>1.2.4 Subsubsection One-Two-Four
</LI></UL>
<LI>1.3 Subsection One-Three</LI>
<UL>
<LI> ... </LI>
</UL>
<LI>1.4 Subsection One-Four</LI>
</UL>