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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
|
%%% -*-BibTeX-*-
%%% /u/sy/beebe/tex/bib/texjourn.bib, Fri Oct 19 12:52:17 1990
%%% Edit by Nelson H. F. Beebe <beebe at sandy.math.utah.edu>
%%% ====================================================================
%%% BibTeX-file{
%%% author = "Nelson H. F. Beebe",
%%% version = "1.54",
%%% date = "07 February 2018",
%%% time = "06:46:33 MST",
%%% filename = "texjourn.bib",
%%% address = "University of Utah
%%% Department of Mathematics, 110 LCB
%%% 155 S 1400 E RM 233
%%% Salt Lake City, UT 84112-0090
%%% USA",
%%% telephone = "+1 801 581 5254",
%%% FAX = "+1 801 581 4148",
%%% checksum = "36173 1485 6355 61457",
%%% email = "beebe at math.utah.edu, beebe at acm.org,
%%% beebe at computer.org (Internet)",
%%% codetable = "ISO/ASCII",
%%% keywords = "bibliography",
%%% license = "public domain",
%%% supported = "yes",
%%% docstring = "This file contains a bibliography of
%%% journals that are known to accept papers
%%% for publication in TeX format, and actually
%%% use that format for publishing. It does
%%% NOT include journals that reproduce
%%% author-supplied hardcopy, or that rekey the
%%% text for typesetting by another system.
%%%
%%% At version 1.53, the year coverage looked
%%% like this:
%%%
%%% 1985 ( 1) 1991 ( 1) 1997 ( 1)
%%% 1986 ( 0) 1992 ( 2) 1998 ( 0)
%%% 1987 ( 1) 1993 ( 0) 1999 ( 0)
%%% 1988 ( 1) 1994 ( 2) 2000 ( 0)
%%% 1990 ( 0) 1996 ( 0) 2002 ( 1)
%%%
%%% Periodical: 65
%%%
%%% Total entries: 65
%%%
%%% The checksum field above contains a CRC-16
%%% checksum as the first value, followed by the
%%% equivalent of the standard UNIX wc (word
%%% count) utility output of lines, words, and
%%% characters. This is produced by Robert
%%% Solovay's checksum utility.",
%%% }
%%% ====================================================================
@Preamble{"\input bibnames.sty "
# "\input path.sty "}
%%% NB: Elsevier at present does not provide authors with the actual
%%% journal production styles, but instead with a compatible preprint
%%% style.
@String{ack-bnb = "Barbara N. Beeton
e-mail: \path|bnb@math.ams.org|"}
@String{ack-bz = "Borut Znidar,
DALCOM d.o.o.,
Stegne 27,
61000 Ljubljana, Slovenia"}
@String{ack-dl = "Dave Love,
e-mail: \path|FX%nnga.daresbury.ac.uk@NSFnet-Relay.AC.UK|"}
@String{ack-eg = "Edgar Goodaire,
e-mail: \path|edgar%munucs.mun.ca@uwavm.acs.washington.edu|"}
@String{ack-glg = "Gary L. Gray,
Engineering Mechanics \& Astronautics,
University of Wisconsin-Madison,
Madison, WI, USA,
Tel: +1 608 262-7418,
FAX: +1 608 262-3735,
e-mail: \path|gray@cmgroup.engr.wisc.edu|"}
@String{ack-md = "Michael Doob,
Department of Mathematics and Astronomy,
University of Manitoba,
341 Machray Hall,
Winnipeg R3T 2N2, Manitoba, Canada,
Tel: (204) 474-9796,
e-mail: \path|mdoob@ccu.umanitoba.ca|"}
@String{ack-ms = "Mark Steinberger,
The University at Albany, State University of New York,
Albany, NY, USA,
e-mail: \path|mark@csc.albany.edu|"}
@String{ack-mz = "Mona Zeftel,
Addison-Wesley Publishing Company,
Reading, MA, USA,
e-mail: \path|crw@wjh12.harvard.edu|"}
@String{ack-nhfb = "Nelson H. F. Beebe,
University of Utah,
Department of Mathematics, 110 LCB,
155 S 1400 E RM 233,
Salt Lake City, UT 84112-0090, USA,
Tel: +1 801 581 5254,
FAX: +1 801 581 4148,
e-mail: \path|beebe@math.utah.edu|,
\path|beebe@acm.org|,
\path|beebe@computer.org| (Internet),
URL: \path|http://www.math.utah.edu/~beebe/|"}
@String{ack-np = "Nico A. F. M. Poppelier,
TeXnique,
Schiermonnikoog 7,
3524 AH Utrecht,
The Netherlands,
e-mail: BITnet: \path|Poppelier@Hutruu53| or
Internet: \path|N.Poppelier@elsevier.NL|"}
@String{ack-pj = "Peter Jansson,
Department of Geology and Geophysics,
University of Minnesota,
Pillsbury Hall \#108,
310 Pillsbury Drive S.E.,
Minneapolis, MN 55455,
Tel: (612) 624-6860,
e-mail: \path|fvm6215@ux.acs.umn.edu|"}
@String{ack-ts = "Tom Schneider,
National Cancer Institute,
Laboratory of Mathematical Biology,
Frederick, Maryland 21702-1201,
e-mail: \path|toms@ncifcrf.gov|"}
@String{ack-wk = "Werner Krandick,
e-mail: \path=Werner.Krandick@risc.uni-linz.ac.at="}
%%% =====================================================================
%%% Journal abbreviations:
@String{j-TEXLINE = "{\TeX}line"}
%%% =====================================================================
%%% Publisher abbreviations:
@String{pub-AMS = "American Mathematical Society"}
@String{pub-AMS:adr = "Providence, RI, USA"}
@String{pub-AP = "Academic Press"}
@String{pub-AP:adr = "New York, NY, USA"}
@String{pub-APS = "American Physical Society"}
@String{pub-APS:adr = "Ridge, NY 11961, USA"}
@String{pub-BIRKHAUSER = "Birkh{\"{a}}user"}
@String{pub-BIRKHAUSER:adr = "Cambridge, MA, USA; Berlin, Germany; Basel,
Switzerland"}
@String{pub-ESP = "Elsevier Science Publishers"}
@String{pub-ESP:adr = "Amsterdam, The Netherlands"}
@String{pub-IOS = "IOS Press"}
@String{pub-IOS:adr = "Amsterdam, The Netherlands"}
@String{pub-NH = "North-Holland Publishing Company"}
@String{pub-NH:adr = "Amsterdam, The Netherlands"}
@String{pub-SV = "Spring{\-}er-Ver{\-}lag"}
@String{pub-SV:adr = "Berlin, Germany~/ Heidelberg,
Germany~/ London, UK~/ etc."}
@String{pub-WILEY = "Wiley"}
@String{pub-WILEY:adr = "New York, NY, USA"}
%%% =====================================================================
%%% Periodical entries:
@Periodical{MAPLETECH,
editor = "Tony Scott",
key = "MAPLETECH",
title = "The Maple Technical Newsletter",
organization = "Mathematical Institute, University of Oxford",
publisher = pub-BIRKHAUSER,
address = pub-BIRKHAUSER:adr,
ISSN = "1061-5733",
bibdate = "Fri Apr 1 18:55:48 1994",
bibsource = "http://www.math.utah.edu/pub/tex/bib/texjourn.bib",
note = "Published twice annually.",
acknowledgement = ack-nhfb,
}
@Periodical{tj-appl-math-comp,
key = "APPL-MATH-COMP",
title = "Applied Mathematics and Computation",
publisher = pub-NH,
address = pub-NH:adr,
CODEN = "AMHCBQ",
ISSN = "0096-3003 (print), 1873-5649 (electronic)",
bibdate = "Sat Sep 24 12:36:50 1994",
bibsource = "http://www.math.utah.edu/pub/tex/bib/texjourn.bib",
note = "From volume 59, number 1, November 1993, the journal
cover proclaims in a fancy logo ``Now accepting
\LaTeX{} manuscripts''. Contact Victor van Beuren,
Editor, Physical Sciences Journals Group, Elsevier
Science Inc., 655 Avenue of the Americas, New York, NY
10010, e-mail: \path=vvb@panix.com=, for further
details.",
}
@Periodical{tj-acp,
key = "ACP",
title = "{Atmospheric Chemistry and Physics}",
publisher = "European Geophysical Society",
year = "2002",
ISSN = "1680-7316",
bibdate = "Thu Jan 17 11:20:58 2002",
bibsource = "http://www.math.utah.edu/pub/tex/bib/texjourn.bib",
note = "Typeset with pdf\LaTeX. Authors are strongly
encouraged to submit manuscripts in \LaTeX{} using the
egs.cls style file. As a reward, page charges will be
lower than for submission in other formats. In the
first step, a pdf file will be produced suitable for
on-line viewing. After an Internet-based discussion of
the scientific contents the paper will (if accepted) be
formatted in the traditional two-column layout using
the same \LaTeX{} source.",
URL = "http://www.atmos-chem-phys.org/technical-tex.htm",
acknowledgement = ack-nhfb,
}
@Periodical{tj-bull-ams,
key = "BAMS",
title = "{Bulletin of the American Mathematical Society}",
publisher = pub-AMS,
address = pub-AMS:adr,
CODEN = "BAMOAD",
ISSN = "0273-0979 (print), 1088-9485 (electronic)",
LCCN = "QA1 .B84",
bibdate = "Sat Sep 24 13:00:25 1994",
bibsource = "http://www.math.utah.edu/pub/tex/bib/texjourn.bib",
note = "Use of \AmSTeX{} began in 1983; completely in
\AmSTeX{} and \AmS-\LaTeX{} since late 1986; style
files available at \path|e-math.ams.org|.",
acknowledgement = ack-bnb # " and " # ack-eg,
}
@Periodical{tj-can-j-math,
key = "CJM",
title = "{Canadian Journal of Mathematics}",
CODEN = "CJMAAB",
ISSN = "0008-414X (print), 1496-4279 (electronic)",
LCCN = "QA1 .C36",
bibdate = "Sat Sep 24 13:00:23 1994",
bibsource = "http://www.math.utah.edu/pub/tex/bib/texjourn.bib",
note = "Completely done in {\TeX} since about 1988, including
covers and index. The Bulletin consists of four issues
of 144 pages each per year, while the Journal consists
of six issues of 224 pages each. The final output is
produced from PostScript files, so the particular
variation of {\TeX} ({\LaTeX}, {\AMSTeX}, plain) isn't
important, as long as the source document can be
adapted to conform to the style of each journal. A
CMS{\TeX} style file for plain {\TeX} is used
internally, and a {\LaTeX} style file is nearly
complete.",
acknowledgement = ack-eg # " and " # ack-md,
}
@Periodical{tj-can-math-bull,
key = "CMB",
title = "{Canadian Mathematical Bulletin}",
CODEN = "CMBUA3",
ISSN = "0008-4395 (print), 1496-4287 (electronic)",
bibdate = "Thu Aug 05 11:09:53 2004",
bibsource = "http://www.math.utah.edu/pub/tex/bib/texjourn.bib",
note = "The Canadian Mathematical Society employs \TeX{} for
their typesetting, and encourages authors to submit
that way. See also the note under
\cite{tj-can-j-math}.",
acknowledgement = ack-eg # " and " # ack-md,
}
@Periodical{tj-cgf,
key = "CGF",
title = "{Computer Graphics Forum}",
publisher = pub-NH,
address = pub-NH:adr,
CODEN = "CGFODY",
ISSN = "0167-7055 (print), 1467-8659 (electronic)",
LCCN = "T385 .C5746",
bibdate = "Sat Sep 24 13:02:30 1994",
bibsource = "http://www.math.utah.edu/pub/tex/bib/texjourn.bib",
note = "Publication switched from troff to {\TeX} in summer
1992.",
acknowledgement = ack-bnb,
}
@Periodical{tj-cmp,
key = "CMP",
title = "{Current Mathematical Publications}",
publisher = pub-AMS,
address = pub-AMS:adr,
CODEN = "CUMPBW",
ISSN = "0361-4794",
LCCN = "Z6653 .C85",
bibdate = "Sat Sep 24 13:41:02 1994",
bibsource = "http://www.math.utah.edu/pub/tex/bib/texjourn.bib",
note = "Prepared completely with \TeX{} since 1985; issue
indexes prepared with \TeX{} from 1983.",
acknowledgement = ack-bnb,
}
@Periodical{tj-comment-math,
key = "COMMENTMATH",
title = "{Commentationes Mathematicae Universitatis
Carolinae}",
publisher = "Charles University",
address = "Praha, Czechoslovakia",
CODEN = "CMUCAA",
ISSN = "0010-2628",
LCCN = "QA1 .C715",
bibdate = "Sat Sep 24 13:04:01 1994",
bibsource = "http://www.math.utah.edu/pub/tex/bib/texjourn.bib",
note = "Published with \AmSTeX{} since 1990. Articles using
\verb|amsppt.sty| are accepted.",
acknowledgement = ack-bnb,
}
@Periodical{tj-cpc,
key = "CPC",
title = "{Computer Physics Communications}",
publisher = pub-ESP,
address = pub-ESP:adr,
CODEN = "CPHCBZ",
ISSN = "0010-4655 (print), 1879-2944 (electronic)",
LCCN = "QC52 .C65",
bibsource = "http://www.math.utah.edu/pub/tex/bib/texjourn.bib",
note = "\LaTeX{} format accepted for special proceedings
issues.",
acknowledgement = ack-np,
}
@Periodical{tj-dokl-math,
key = "DOKLMATH",
title = "{Russian Academy of Sciences. Doklady. Mathematics}",
publisher = pub-AMS,
address = pub-AMS:adr,
ISSN = "1064-5624 (print), 1531-8362 (electronic)",
bibdate = "Sat Feb 9 07:32:51 2002",
bibsource = "http://www.math.utah.edu/pub/tex/bib/texjourn.bib",
note = "Translation into English of the entire pure
mathematics section of the ``Doklady
Rossi\u\i{}sko\u\i{} Akademi\u\i{} Nauk''. (Formerly
``Soviet Mathematics---Doklady''.) Prepared with
\AmSTeX{} beginning in 1983.",
acknowledgement = ack-bnb,
}
@Periodical{tj-epodd,
editor = "David F. Brailsford and Richard K. Furuta",
key = "EPODD",
title = "Electronic Pub\-lish\-ing\emdash{}Orig\-i\-na\-tion,
Dissemination, and Design",
publisher = pub-WILEY,
address = pub-WILEY:adr,
year = "1988" # "\unskip--",
CODEN = "EPODEU",
ISSN = "0894-3982",
bibdate = "Sat Sep 24 13:41:11 1994",
bibsource = "http://www.math.utah.edu/pub/tex/bib/texjourn.bib",
note = "The publisher provides style files for {\TeX},
{\LaTeX}, and {\tt troff} article formats.",
acknowledgement = ack-bnb,
}
@Periodical{tj-informatica,
key = "INFORMATICA",
title = "Informatica",
publisher = "The Slovene Society Informatika",
address = "Ljubljana, Slovenia",
CODEN = "INFOFF",
ISSN = "0350-5596",
bibdate = "Sat Feb 9 07:33:41 2002",
bibsource = "http://www.math.utah.edu/pub/tex/bib/texjourn.bib",
note = "Typeset with {\LaTeX}. Authors can submit articles
using the {\tt informat} style option, which is printed
in its entirety in the back of each issue.",
acknowledgement = ack-bz,
subtitle = "An International Journal of Computing and
Informatics",
}
@Periodical{tj-info-sci,
key = "INFO-SCI",
title = "Information Sciences",
publisher = pub-NH,
address = pub-NH:adr,
CODEN = "ISIJBC",
ISSN = "0020-0255 (print), 1872-6291 (electronic)",
LCCN = "Z699.A1 I59",
bibdate = "Sat Sep 24 12:40:33 1994",
bibsource = "http://www.math.utah.edu/pub/tex/bib/texjourn.bib",
note = "Contact Victor van Beuren, Editor, Physical Sciences
Journals Group, Elsevier Science Inc., 655 Avenue of
the Americas, New York, NY 10010, e-mail:
\path=vvb@panix.com=, for further details.",
}
@Periodical{tj-int-j-approx-reasoning,
key = "INT-J-APPROX-REASONING",
title = "International Journal of Approximate Reasoning",
publisher = pub-NH,
address = pub-NH:adr,
CODEN = "IJARE4",
ISSN = "0888-613X",
LCCN = "QA76.76.E95 I577",
bibdate = "Sat Sep 24 12:40:33 1994",
bibsource = "http://www.math.utah.edu/pub/tex/bib/texjourn.bib",
note = "Official publication of the North American Fuzzy
Information Processing Society. Vol. 1, no. 1 (January
1987) --. Contact Victor van Beuren, Editor, Physical
Sciences Journals Group, Elsevier Science Inc., 655
Avenue of the Americas, New York, NY 10010, e-mail:
\path=vvb@panix.com=, for further details.",
}
@Periodical{tj-intcom,
editor = "Vyacheslav M. Nesterov",
key = "INTCOM",
title = "{Interval Computations}",
address = "Box 52, St.Petersburg 195256, Russia, E-mail:
\path=nest@nit.spb.su= (Internet)",
year = "1991",
ISSN = "0135-4868",
bibsource = "http://www.math.utah.edu/pub/tex/bib/texjourn.bib",
note = "A refereed international journal, {\em Interval
Computations\/} is the only periodical in the world
devoted specifically to various aspects of reliable
numerical computations based on the interval approach.
It is managed by an international editorial board from
Bulgaria, Germany, Japan, Russia, and the United
States, and printed in Russia. The journal includes
various items in the fields of theoretical research,
computer tools, applications, interdisciplinary
research and other relevant areas.
The IC has been prepared with {\TeX} since 1992.
Recently a new style has been designed based on
standard {\LaTeX} {\tt article} style with changes in
fonts, headings layout, running heads etc. It uses
10.8pt Baskerville for body text (the unusual font size
is selected for better wedding with CM math) and
horizontally-squeezed Palatino for headings. For
mathematical formulae, standard Computer Modern is
preserved. Proofs are made using em{\TeX} DVIHPLJ on a
Hewlett--Packard LaserJet IIIp, and final pages are
printed at 600dpi. Using V{\TeX} is now under
consideration.
Papers are accepted in any {\TeX} variety; {\LaTeX}
{\tt article.sty} preferred.",
xxCODEN = "none",
}
@Periodical{tj-izv-math,
key = "IZVMATH",
title = "{Russian Academy of Sciences. Izvestiya.
Mathematics}",
publisher = pub-AMS,
address = pub-AMS:adr,
bibsource = "http://www.math.utah.edu/pub/tex/bib/texjourn.bib",
note = "Translation into English of ``Izvestiya
Rossi\u\i{}sko\u\i{} Akademi\u\i{} Nauk Seriya
Matematicheskaya''. (Formerly ``Mathematics of the
USSR---Izvestiya''.) Prepared with \AmSTeX{} since
1986.",
acknowledgement = ack-bnb,
}
@Periodical{tj-j-app-mech,
key = "JAMECH",
title = "{Journal of Applied Mechanics}",
CODEN = "JAMCAV",
ISSN = "0021-8936",
LCCN = "TA1 .J6",
bibdate = "Sat Sep 24 13:10:31 1994",
bibsource = "http://www.math.utah.edu/pub/tex/bib/texjourn.bib",
note = "{\TeX} macros available from Charles Beardsley,
Managing Director of Publications, ASME, Tel: +1 212
705-7722.",
acknowledgement = ack-glg,
}
@Periodical{tj-j-comput-biol,
key = "J-COMPUT-BIOL",
title = "Journal of Computational Biology",
publisher = "Mary Ann Liebert Inc.",
address = "2 Madison Avenue, Larchmont, NY 10538-1962, USA",
year = "1994",
CODEN = "JCOBEM",
ISSN = "1066-5277",
bibdate = "Sat Feb 09 07:22:07 2002",
bibsource = "http://www.math.utah.edu/pub/tex/bib/texjourn.bib",
note = "\TeX{} is the preferred form for manuscript
submission.",
URL = "http://www.catchword.com/rpsv/cw/mal/10665277/contp1.htm",
acknowledgement = ack-nhfb,
}
@Periodical{tj-j-logic-prog,
key = "J-LOGIC-PROG",
title = "The Journal of Logic Programming",
publisher = pub-NH,
address = pub-NH:adr,
CODEN = "JLPRE2",
ISSN = "0743-1066",
bibdate = "Sat Sep 24 12:55:11 1994",
bibsource = "http://www.math.utah.edu/pub/tex/bib/texjourn.bib",
note = "Vol. 1, no. 1 (June 1984) --. Contact Victor van
Beuren, Editor, Physical Sciences Journals Group,
Elsevier Science Inc., 655 Avenue of the Americas, New
York, NY 10010, e-mail: \path=vvb@panix.com=, for
further details.",
}
@Periodical{tj-j-phys,
key = "JP",
title = "{Journal of Physics}",
bibsource = "http://www.math.utah.edu/pub/tex/bib/texjourn.bib",
note = "Plain \TeX{} macros available.",
acknowledgement = ack-dl,
}
@Periodical{tj-jclt,
editor = "Rex Jaeschke",
key = "JCLT",
title = "{Journal of C Language Translation}",
ISSN = "1042-5721",
bibdate = "Sat Sep 24 13:12:59 1994",
bibsource = "http://www.math.utah.edu/pub/tex/bib/texjourn.bib",
note = "Vol. 1, no. 1 (June 1989)--. Ceased with vol. 3, no.
4, published in 1992.",
acknowledgement = ack-nhfb,
}
@Periodical{tj-jcs,
key = "JCompSecurity",
title = "Journal of Computer Security",
publisher = pub-IOS,
address = pub-IOS:adr,
year = "1992",
bibsource = "http://www.math.utah.edu/pub/tex/bib/texjourn.bib",
note = "Style files are available from the journal editors.",
acknowledgement = ack-bnb,
}
@Periodical{tj-jg,
key = "JG",
title = "{Journal of Glaciology}",
publisher = "British Glaciological Society",
address = "Cambridge, UK",
CODEN = "JOGLAO",
ISSN = "0022-1430",
LCCN = "GB2401 .J68",
bibdate = "Sat Sep 24 13:15:01 1994",
bibsource = "http://www.math.utah.edu/pub/tex/bib/texjourn.bib",
note = "First issue typeset by {\TeX} in 1991.",
acknowledgement = ack-pj,
}
@Periodical{tj-j-lin-alg-appl,
key = "J-LIN-ALG-APPL",
title = "Linear Algebra and Its Applications",
publisher = pub-NH,
address = pub-NH:adr,
CODEN = "LAAPAW",
ISSN = "0024-3795 (print), 1873-1856 (electronic)",
bibdate = "Sat Sep 24 12:47:06 1994",
bibsource = "http://www.math.utah.edu/pub/tex/bib/texjourn.bib",
note = "Vol. 1 (January 1968) --. Contact Victor van Beuren,
Editor, Physical Sciences Journals Group, Elsevier
Science Inc., 655 Avenue of the Americas, New York, NY
10010, e-mail: \path=vvb@panix.com=, for further
details.",
}
@Periodical{tj-jhep,
key = "JHEP",
title = "Journal of High Energy Physics",
howpublished = "Online journal.",
publisher = "Societa italiana di fisica",
address = "Bologna, Italy",
year = "1997",
CODEN = "JHEPFG, JHEPAB (paper archive)",
ISSN = "1029-8479",
LCCN = "QC793 .J68",
bibdate = "Sat Feb 09 07:07:34 2002",
bibsource = "http://www.math.utah.edu/pub/tex/bib/texjourn.bib",
note = "The paper version of the journal was discontinued at
the end of 2000, but publication continues in
electronic form. The master archive is hosted at the
``Florence National Library, which is the Italian body
officially in charge of keeping the legal archive of
all editorial products published in Italy, both
electronic and paper, thereby ensuring their legal
validity.'' See
\path=http://jhep.mse.jhu.edu/JOURNAL/IoPP_SISSA.html=
for details. Articles are marked up exclusively in
\TeX{}, with PostScript for figures, and are available
in DVI, PDF, and PostScript formats.",
URL = "http://jhep.mse.jhu.edu/",
acknowledgement = ack-nhfb,
}
@Periodical{tj-jmb,
key = "JMB",
title = "{Journal of Molecular Biology}",
publisher = pub-AP,
address = pub-AP:adr,
CODEN = "JMOBAK",
ISSN = "0022-2836",
LCCN = "QH301 .J73",
bibdate = "Sat Sep 24 13:41:40 1994",
bibsource = "http://www.math.utah.edu/pub/tex/bib/texjourn.bib",
note = "{\LaTeX} and {\BibTeX} style files \path|jmb.sty| and
\path|jmb.bst| have been provided by Tom Schneider
(e-mail \path|toms@ncifcrf.gov|).",
acknowledgement = ack-ts,
}
@Periodical{tj-jnl-alg-geom,
key = "JALGGEOM",
title = "{Journal of Algebraic Geometry}",
publisher = "University Press, Inc.",
address = "Naperville, IL, USA",
ISSN = "1056-3911",
bibdate = "Sat Sep 24 13:18:32 1994",
bibsource = "http://www.math.utah.edu/pub/tex/bib/texjourn.bib",
acknowledgement = ack-bnb,
}
@Periodical{tj-jnl-ams,
key = "JAMS",
title = "{Journal of the American Mathematical Society}",
publisher = pub-AMS,
address = pub-AMS:adr,
ISSN = "0894-0347",
LCCN = "QA1 .J9763",
bibdate = "Sat Sep 24 13:18:30 1994",
bibsource = "http://www.math.utah.edu/pub/tex/bib/texjourn.bib",
note = "Prepared with \AmSTeX{} and \AmS-\LaTeX{}; style files
available at \path|e-math.ams.org|.",
acknowledgement = ack-bnb,
xxCODEN = "none",
}
@Periodical{tj-jnl-diff-geom,
key = "JDIFFGEOM",
title = "{Journal of Differential Geometry}",
publisher = "Lehigh University",
address = "Bethlehem, PA, USA",
CODEN = "JDGEAS",
ISSN = "0022-040X",
LCCN = "QA641 .J67",
bibdate = "Sat Sep 24 13:18:26 1994",
bibsource = "http://www.math.utah.edu/pub/tex/bib/texjourn.bib",
note = "Prepared with \TeX{} since 1988.",
acknowledgement = ack-bnb,
}
@Periodical{tj-jsc,
editor = "Bruno Buchberger",
key = "JSYMBOLCOMP",
title = "{Journal of Symbolic Computation}",
publisher = pub-AP,
address = pub-AP:adr,
year = "1985",
ISSN = "0747-7171 (print), 1095-855X (electronic)",
LCCN = "QA76.95 .J68",
bibdate = "Sat Sep 24 13:18:36 1994",
bibsource = "http://www.math.utah.edu/pub/tex/bib/texjourn.bib",
note = "A {\LaTeX} style file for the journal is available
from the publisher, and from
\path=ftp.risc.uni-linz.ac.at= in the directory
\path=/pub/jsc= in the files \path=jsc.sty= and
\path=jscguide.tex=. The resolution is 600 dpi. The
software used is PCTEX.",
acknowledgement = ack-wk,
xxCODEN = "none",
}
@Periodical{tj-jtb,
key = "JTB",
title = "{Journal of Theoretical Biology}",
CODEN = "JTBIAP",
ISSN = "0022-5193",
LCCN = "QH301 .J75",
bibdate = "Sat Sep 24 13:19:42 1994",
bibsource = "http://www.math.utah.edu/pub/tex/bib/texjourn.bib",
note = "{\LaTeX} and {\BibTeX} style files \path|jmb.sty| and
\path|jmb.bst| have been provided by Tom Schneider
(e-mail \path|toms@ncifcrf.gov|).",
acknowledgement = ack-ts,
}
@Periodical{tj-math-comp,
key = "MATHCOMP",
title = "{Mathematics of Computation}",
publisher = pub-AMS,
address = pub-AMS:adr,
CODEN = "MCMPAF",
ISSN = "0025-5718 (paper), 1088-6842 (electronic)",
LCCN = "QA47 .M29",
bibdate = "Sat Sep 24 13:21:32 1994",
bibsource = "http://www.math.utah.edu/pub/tex/bib/texjourn.bib",
note = "Use of \AmSTeX{} began in 1983; completely in
\AmSTeX{} and \AmS-\LaTeX{} since 1988; style files
available at \path|e-math.ams.org|.",
acknowledgement = ack-bnb,
}
@Periodical{tj-math-rev,
key = "MATHREV",
title = "{Mathematical Reviews}",
publisher = pub-AMS,
address = pub-AMS:adr,
CODEN = "MAREAR",
ISSN = "0025-5629",
LCCN = "QA1 .M76",
bibdate = "Sat Sep 24 13:21:25 1994",
bibsource = "http://www.math.utah.edu/pub/tex/bib/texjourn.bib",
note = "Beginning in November 1979, \TeX{} has been used for
issue indexes; since January 1985, the entire journal
has been prepared in \TeX{}. The data for this journal
is archived with several database services and is also
available on CD-ROM as MathSci.",
acknowledgement = ack-bnb,
}
@Periodical{tj-mathematica-j,
editor = "Stephen Wolfram",
key = "MJ",
title = "{Mathematica Journal}",
address = "Advanced Book Program, Addison-Wesley Publishing
Company, 350 Bridge Parkway, Redwood City, CA 94065",
ISSN = "1047-5974 (print), 1097-1610 (electronic)",
LCCN = "QA76.95 .M387",
bibdate = "Sat Sep 24 13:22:07 1994",
bibsource = "http://www.math.utah.edu/pub/tex/bib/texjourn.bib",
note = "Published both electronically and in print using
{\TeX}.",
acknowledgement = ack-mz,
xxCODEN = "none",
}
@Periodical{tj-memo-ams,
key = "MEMO",
title = "{Memoirs of the American Mathematical Society}",
publisher = pub-AMS,
address = pub-AMS:adr,
CODEN = "MAMCAU",
ISSN = "0065-9266",
LCCN = "QA3 .A57",
bibdate = "Sat Sep 24 13:22:08 1994",
bibsource = "http://www.math.utah.edu/pub/tex/bib/texjourn.bib",
note = "Copy is author prepared; \AmSTeX{} and \AmS-\LaTeX{}
style files available at \path|e-math.ams.org|.",
acknowledgement = ack-bnb,
}
@Periodical{tj-nar,
key = "NAR",
title = "{Nucleic Acids Research}",
CODEN = "NARHAD",
ISSN = "0305-1048",
LCCN = "QP620 .N8",
bibdate = "Sat Sep 24 13:23:22 1994",
bibsource = "http://www.math.utah.edu/pub/tex/bib/texjourn.bib",
note = "{\LaTeX} and {\BibTeX} style files \path|nar.sty| and
\path|nar.bst| have been provided by Tom Schneider
(e-mail: \path|toms@ncifcrf.gov|).",
acknowledgement = ack-ts,
}
@Periodical{tj-noti-ams,
key = "NOTIAMS",
title = "{Notices of the American Mathematical Society}",
publisher = pub-AMS,
address = pub-AMS:adr,
CODEN = "AMNOAN",
ISSN = "0002-9920 (print), 1088-9477 (electronic)",
bibdate = "Wed Apr 7 08:41:02 1999",
bibsource = "http://www.math.utah.edu/pub/tex/bib/texjourn.bib",
note = "Use of \TeX{} began in 1982 with selected sections;
completely in \TeX{} from 1988 to 1994. Since 1995, the
journal has been typeset by Quark Express, although
author manuscripts in TeX are accepted, and
automatically converted to Quark format at the
publisher.",
acknowledgement = ack-bnb,
}
@Periodical{tj-np-a,
key = "NPa",
title = "{Nuclear Physics A}",
publisher = pub-ESP,
address = pub-ESP:adr,
CODEN = "NUPABL",
ISSN = "0375-9474",
LCCN = "QC173 .N8838",
bibdate = "Sat Sep 24 13:25:21 1994",
bibsource = "http://www.math.utah.edu/pub/tex/bib/texjourn.bib",
note = "\LaTeX{} format accepted.",
acknowledgement = ack-dl # " and " # ack-np,
}
@Periodical{tj-np-b,
key = "NPB",
title = "{Nuclear Physics B}",
publisher = pub-ESP,
address = pub-ESP:adr,
CODEN = "NUPBBO",
ISSN = "0550-3213 (print), 1873-1562 (electronic)",
LCCN = "QC173 .N8839",
bibdate = "Sat Sep 24 13:25:21 1994",
bibsource = "http://www.math.utah.edu/pub/tex/bib/texjourn.bib",
note = "\LaTeX{} format accepted.",
acknowledgement = ack-dl # " and " # ack-np,
}
@Periodical{tj-nyjm,
editor = "Mark Steinberger",
key = "NYJMATH",
title = "The New York Journal of Mathematics",
howpublished = "Electronic submission and publication only.",
organization = "University at Albany, State University of New York",
publisher = "University at Albany, State University of New York",
address = "Albany, NY, USA",
year = "1994",
ISSN = "1076-9803",
bibdate = "Tue Feb 22 10:10:29 1994",
bibsource = "http://www.math.utah.edu/pub/tex/bib/texjourn.bib",
note = "The New York Journal of Mathematics is a refereed
mathematics journal being launched by the University at
Albany, State University of New York.\par
The journal is broadly based in subject matter,
covering algebra, modern analysis, and
geometry/topology.\par
The papers will be presented via the \TeX{}
mathematical typesetting language, developed by Donald
Knuth. \TeX{} has become the standard for computer
typesetting of mathematical publications.\par
Access will be provided through a variety of electronic
means, including \path|listserv|, anonymous \path|ftp|
and \path|gopher|. In particular, access will be much
more convenient than that provided by a conventional
print journal. Because papers will be published as they
are accepted by the editorial board, publication delays
will be minimal.\par
The articles will be archived, date stamped, and
maintained by the University at Albany, State
University of New York. The University takes
responsibility for insuring the integrity of the
journal's archive in perpetuity.\par
The journal will have an ISSN number and will be
accessed by the major bibliographic publications in the
field.\par
The development of this journal is being underwritten
by the Office of Information Systems of the University
at Albany, State University of New York.\par
The New York Journal will be accessible by a
combination of \path|listserv| and \path|gopher|\slash
\path|ftp|.\par
By \path|listserv|, we will distribute abstracts of the
papers, together with instructions for retrieving them
via \path|ftp| and \path|gopher|.\par
The abstracts will be available on four separate
\path|listserv| lists: one will distribute abstracts
for every paper. The other three are specialty lists,
giving abstracts for papers in algebra, analysis and
geometry\slash topology, respectively. The reader may,
of course, subscribe to any combination of these
lists.",
acknowledgement = ack-ms,
note2 = "To subscribe, send a note to
\path|listserv@albnyvm1.bitnet|:
If you want to receive the abstracts for all the
papers, the body of your note should read\par
subscribe NYJMTH-A <your full name>\par
For the specialized lists, the body of your note should
read\par
Algebra: subscribe NYJM-ALG <your full
name>\par
Analysis: subscribe NYJM-AN <your full
name>\par
Geometry/Topology: subscribe NYJM-TOP <your full
name>\par
To avoid duplication, we will only be archiving the
postings on NYJMTH-A, the list carrying all the
abstracts. The archive for NYJMTH-A will also contain
the style specifications for submissions and the
templates for frontmatter.\par
The \path|gopher|\slash \path|ftp| archive will contain
both the abstract and a \path|.dvi| file for each
paper. Both abstract and \path|.dvi| will remain
unchanged from the official date of publication, as may
be verified by checking the date stamps.\par
The gopher archive may be accessed by typing
\path|gopher+ \path|nyjm.albany.edu=. It is also
available under the ``Academic Offerings, Departments
and Programs'' selection of the main gopher menu of the
State University of New York at Albany.\par
The same archive will be accessible by anonymous
\path|ftp| on the machine \path|ftp_nyjm.albany.edu| in
the directory \path|/pub/nyjm|. (This feature has not
yet been enabled.)\par
The reader must have access to a printer driver for
\TeX{} in order to print out the \path|.dvi| files.
Such a driver is present in most mathematics
departments. Math departments, libraries, and other
institutional subscribers are welcome to consult with
the Editor in Chief.",
xxCODEN = "none",
}
@Periodical{tj-phys-letters-a,
key = "PLA",
title = "{Physics Letters A}",
publisher = pub-ESP,
address = pub-ESP:adr,
CODEN = "PYLAAG",
ISSN = "0375-9601 (print), 1873-2429 (electronic)",
LCCN = "QC1 .P45",
bibdate = "Sat Sep 24 13:27:26 1994",
bibsource = "http://www.math.utah.edu/pub/tex/bib/texjourn.bib",
note = "\LaTeX{} format accepted.",
acknowledgement = ack-np,
}
@Periodical{tj-phys-letters-b,
key = "PLB",
title = "{Physics Letters A and B}",
publisher = pub-ESP,
address = pub-ESP:adr,
CODEN = "PYLBAJ",
ISSN = "0370-2693",
LCCN = "QC1 .P6562",
bibdate = "Sat Sep 24 13:27:26 1994",
bibsource = "http://www.math.utah.edu/pub/tex/bib/texjourn.bib",
note = "\LaTeX{} format accepted.",
acknowledgement = ack-np,
}
@Periodical{tj-phys-repd,
key = "PRep",
title = "{Physics Reports}",
publisher = pub-ESP,
address = pub-ESP:adr,
CODEN = "PRPLCM",
ISSN = "0370-1573",
LCCN = "QC1 .P6563",
bibdate = "Sat Sep 24 13:27:56 1994",
bibsource = "http://www.math.utah.edu/pub/tex/bib/texjourn.bib",
note = "\LaTeX{} format accepted on an experimental basis.",
acknowledgement = ack-np,
}
@Periodical{tj-phys-rev-a,
key = "PRA",
title = "{Physical Review A}",
publisher = pub-APS,
address = pub-APS:adr,
CODEN = "PLRAAN",
ISSN = "1050-2947 (print), 1094-1622, 1538-4446, 1538-4519",
LCCN = "QC1 .P42",
bibdate = "Sat Sep 24 13:33:58 1994",
bibsource = "http://www.math.utah.edu/pub/tex/bib/texjourn.bib",
note = "\LaTeX{} format accepted.",
acknowledgement = ack-dl,
}
@Periodical{tj-phys-rev-b,
key = "PRB",
title = "{Physical Review B}",
publisher = pub-APS,
address = pub-APS:adr,
CODEN = "PRBMDO",
ISSN = "0163-1829",
LCCN = "QC176.A1 P513",
bibdate = "Sat Sep 24 13:33:58 1994",
bibsource = "http://www.math.utah.edu/pub/tex/bib/texjourn.bib",
note = "\LaTeX{} format accepted.",
acknowledgement = ack-dl,
}
@Periodical{tj-phys-rev-c,
key = "PRC",
title = "{Physical Review C}",
publisher = pub-APS,
address = pub-APS:adr,
CODEN = "PRVCAN, PRDOF8",
ISSN = "0556-2813, 1089-4918",
LCCN = "QC770 .P45",
bibdate = "Sat Sep 24 13:33:58 1994",
bibsource = "http://www.math.utah.edu/pub/tex/bib/texjourn.bib",
note = "\LaTeX{} format accepted.",
acknowledgement = ack-dl,
}
@Periodical{tj-phys-rev-d,
key = "PRD",
title = "{Physical Review D}",
publisher = pub-APS,
address = pub-APS:adr,
CODEN = "PRVDAQ",
ISSN = "0556-2821 (print), 1089-4918 (electronic), 1538-4500",
LCCN = "QC721 .P457",
bibdate = "Sat Sep 24 13:33:58 1994",
bibsource = "http://www.math.utah.edu/pub/tex/bib/texjourn.bib",
note = "\LaTeX{} format accepted.",
acknowledgement = ack-dl,
}
@Periodical{tj-phys-rev-e1,
key = "PRE",
title = "{Physical Review E, Statistical physics, plasmas,
fluids, and related interdisciplinary topics}",
publisher = pub-APS,
address = pub-APS:adr,
CODEN = "PLEEE8",
ISSN = "1539-3755 (print), 1550-2376 (electronic)",
ISSN-L = "1539-3755",
LCCN = "QC174.7 .P48 (E)",
bibdate = "Sat Sep 24 13:33:58 1994",
bibsource = "http://www.math.utah.edu/pub/tex/bib/texjourn.bib",
note = "\LaTeX{} format accepted.",
acknowledgement = ack-dl,
}
@Periodical{tj-phys-rev-e2,
key = "PRE",
title = "{Physical Review E, Statistical, nonlinear, and soft
matter physics}",
publisher = pub-APS,
address = pub-APS:adr,
CODEN = "PRESCM",
ISSN = "1539-3755 (print), 1550-2376 (electronic)",
ISSN-L = "1539-3755",
LCCN = "QC1 .P4292",
bibdate = "Sat Feb 09 07:52:28 2002",
bibsource = "http://www.math.utah.edu/pub/tex/bib/texjourn.bib",
note = "\LaTeX{} format accepted.",
URL = "http://pre.aps.org",
acknowledgement = ack-dl,
}
@Periodical{tj-physica-d,
key = "P-D",
title = "{Physica D}",
publisher = pub-ESP,
address = pub-ESP:adr,
CODEN = "PDNPDT",
ISSN = "0167-2789 (print), 1872-8022 (electronic)",
LCCN = "QC1 .P3834",
bibdate = "Sat Sep 24 13:33:57 1994",
bibsource = "http://www.math.utah.edu/pub/tex/bib/texjourn.bib",
note = "\LaTeX{} format accepted for special proceedings
issues.",
acknowledgement = ack-np,
}
@Periodical{tj-proc-ams,
key = "PAMS",
title = "{Proceedings of the American Mathematical Society}",
publisher = pub-AMS,
address = pub-AMS:adr,
CODEN = "PAMYAR",
ISSN = "0002-9939 (print), 1088-6826 (electronic)",
LCCN = "QA1 .A5215",
bibdate = "Sat Sep 24 13:36:35 1994",
bibsource = "http://www.math.utah.edu/pub/tex/bib/texjourn.bib",
note = "Use of \AmSTeX{} began in 1983; completely in
\AmSTeX{} and \AmS-\LaTeX{} since late 1986; style
files available at \path|e-math.ams.org|.",
acknowledgement = ack-bnb # " and " # ack-eg,
}
@Periodical{tj-proc-steklo,
key = "PROCSTEKLO",
title = "{Proceedings of the Steklov Institute of
Mathematics}",
publisher = pub-AMS,
address = pub-AMS:adr,
ISSN = "0081-5438",
LCCN = "QA1 .A413",
bibdate = "Sat Sep 24 13:36:33 1994",
bibsource = "http://www.math.utah.edu/pub/tex/bib/texjourn.bib",
note = "Translation into English of the ``Trudy ordena Lenina
Matematicheskogo instuta imeni V. A. Steklova''.
Prepared with \AmSTeX{} began since 1987.",
acknowledgement = ack-bnb,
xxCODEN = "none",
}
@Periodical{tj-quart-app-math,
key = "QAM",
title = "{Quarterly of Applied Mathematics}",
publisher = "Brown University",
address = "Providence, RI, USA",
CODEN = "QAMAAY",
ISSN = "0033-569X",
LCCN = "QA1 .Q25",
bibdate = "Sat Sep 24 13:36:30 1994",
bibsource = "http://www.math.utah.edu/pub/tex/bib/texjourn.bib",
acknowledgement = ack-bnb,
}
@Periodical{tj-sbor-math,
key = "SBORMATH",
title = "{Russian Academy of Sciences. Sbornik. Mathematics}",
publisher = pub-AMS,
address = pub-AMS:adr,
ISSN = "1064-5616",
LCCN = "QA1 .M4112",
bibdate = "Sat Sep 24 13:36:27 1994",
bibsource = "http://www.math.utah.edu/pub/tex/bib/texjourn.bib",
note = "Translation into English of ``Matematicheski\u\i{}
Sbornik''. (Formerly ``Mathematics of the
USSR---Sbornik''.) Prepared with \AmSTeX{} since
1987.",
acknowledgement = ack-bnb,
xxCODEN = "none",
}
@Periodical{tj-solstice,
key = "Solstice",
title = "Solstice: An Electronic Journal of Geography and
Mathematics",
publisher = "Institute of Mathematical Geography",
address = "2790 Briarcliff, Ann Arbor, MI 48105-1429, USA",
year = "1992",
ISBN = "1-877751-44-8; 1-877751-52-9; 1-877751-53-7",
ISBN-13 = "978-1-877751-44-8; 978-1-877751-52-3;
978-1-877751-53-0",
ISSN = "1059-5325",
bibdate = "Sat Aug 27 11:16:20 1994",
bibsource = "http://www.math.utah.edu/pub/tex/bib/texjourn.bib",
acknowledgement = ack-bnb,
note-1 = "[These remarks are supplied by the Editor-in-Chief,
Sandra L. Arlinghaus:]
Printer: Digicopy, Corp., 858 Phoenix Dr., Ann Arbor,
MI 48108.
Frequency: Twice yearly, issued on astronomical
solstices (late June and late December). An effort is
made to have the transmission carry the time and date
stamp of the exact minute of the astronomical solstice
(sort like a first day cover marking for a stamp
collector).
The ISSN number was assigned by the Library of Congress
beginning with the winter issue, 1991.",
note-2 = "The rationale behind the ISBN assignment is as
follows. {\em Solstice\/} is also available in hard
copy (\$15.95) a year for those wishing it. The book
containing the full year's issues is given an ISBN. The
first number in the list is the number for the 1990
volume. The third number is the number for the 1991
volume. In addition, in the summer, single issues are
available. The second ISBN is the number for the single
summer 1991 issue.
Copyright: copyright is taken out on the hard copy.
Electronic files can be compared to the hard copy in a
library should a reader question whether or not a
document has been altered.
Here is some additional information.",
note-3 = "1. Reason for the name. Because geography and
mathematics have a history of mutual research
stimulation (Konigsberg bridge problem, four color
problem, \ldots), material from one discipline can shed
light on the other. Astronomical solstices are extreme
positions at which time northern and southern
hemispheres receive maximum and minimum daylight or
night. Between the solstices there is varying dominance
of day and night; so too, there is varying dominance of
mathematical and geographical interaction in articles
in Solstice. Of course, the extreme of a purely
geographical or a purely mathematical article is also
suitable for submission.
2. Articles are refereed; the journal is
peer-reviewed.",
note-4 = "3. Members of the Editorial Board are listed below
(along with a brief notation of their affiliation):
Sandra L. Arlinghaus--Editor-in-Chief, Director, IMaGe.
William C. Arlinghaus, Professor and Chair, Dep't. of
Math. and C.S., Lawrence Technological University,
Southfield, MI Neal Brand, Professor, Dep't. of Math.
Univ. of North Texas. Kenneth H. Rosen, Mathematician,
Bell Labs. Michael Goodchild, Professor of Geography,
Univ. of California, Santa Barbara Daniel A. Griffith,
Professor of Geography, Syracuse University. Jonathan
D. Mayer, Professor of Geography, University of
Washington. John D. Nystuen, Professor of Geography and
Planning, Univ. of Michigan.
4. List of content: [omitted]",
note-5 = "5. The journal is typeset using TeX. To gain
experience in publishing matters using TeX, it was very
helpful to me to be hired by the University of Chicago
Press to typeset, using TeX, a volume in their
``Lecture Notes in Physics''--(Walter Welford's {\em
Useful Optics\/}--quite suitable, I think!). Generally,
{\em The TeXbook\/} is all that I need; once I
encountered a difficulty with some sort of `bold'
notation invented by an author. For that, a combination
of advice from a colleague in mathematics and from the
University of Michigan's Computing Center, helped me to
figure out a way to solve the problem.",
note-6 = "6. A number of the volumes in the IMaGe monograph
series are typeset using TeX. Monographs 9, 11, 12, 13
(Solstice hard copy for 1990), 14, and 15 (Solstice
hard copy for 1991) are TeX-ed. I typeset documents
using Plain TeX; the hard copy is obtained by uploading
the ASCII file into the University of Michigan's
mainframe and printing it out on their Xerox 9700
(series) machine. They have a number of them at various
sites across campus. The print quality is only 200 dpi,
so in that regard TeX-ed documents don't look as good
as they should--hence, difficulty in convincing
non-TeXers of its value. Every effort is made to get
hard copy right after a periodic maintenance of the
machines. Then photos are inserted (pasted
electronically) onto this hardcopy using a Xerox
DocuTech with its high resolution scanner.",
note-7 = "Copies are made from the master document stored,
temporarily at least, on one of the three 280 meg hard
drives in the DocuTech. We await the day when the files
can be downloaded from DocuTech hard drive onto a
floppy! What would be great of course is if Xerox would
make it so that a TeX file on a floppy could be
directly fed into the DocuTech --- by-passing the
intermediate (conventional mainframe --- the DocuTech
functions as a mainframe) step.",
note-8 = "7. Copies of {\em Solstice\/} have been sent to {\em
Math. Reviews}. A letter was sent to the AMS, following
their statement in the September 1991 {\em Notices\/}
that there was no peer-reviewed online journal of
mathematics, informing them of {\em Solstice\/}'s
existence. There appears to be a great deal of
difficulty in archiving this sort of publication. The
earliest one I have found is Richard Zander's {\em
Flora Online\/}--he is Curator of Botany and the
Buffalo Museum of Science--this journal dates from
1987. It is not a TeX-ed journal; it is peer-reviewed.
No doubt, though, you are aware of Michael
Strangelove's directory of electronic journals--think
he lists a subset that are TeX-ed. He's at the
University of Ottawa in the Department of Religious
Studies, I believe.",
note-9 = "8. Environmental issue--we see this as a sound manner
of document production; when hard copy is produced (to
suit demand--``just-in-time'' publishing) it is printed
on 100\% recycled paper with a large percentage of
fiber from post-consumer (20\% to 40\%, depending on
the lot) products. Obviously, the electronic
distribution of {\em Solstice}, free, across Bitnet and
Internet, is cheap and environmentally sensitive.
9. Other media exposure of {\em Solstice\/}: {\sl
Science}, AAAS, 29 November, 1991, p. 1291; {\sl
Science News}, Jan. 25, 1992, p. 61. Contributed talk,
AMS, Baltimore, 1992--Abstract \#871-99-73, p. 145 {\sl
Abstracts of Papers Presented to The American
Mathematical Society\/} January 1992, Issue 79, Volume
13, Number 1. {\sl Newsletter\/} of the Association of
American Geographers, June, 1992.",
xxCODEN = "none",
}
@Periodical{tj-stp-math-j,
key = "STPMATHJ",
title = "{St. Petersburg Mathematical Journal}",
publisher = pub-AMS,
address = pub-AMS:adr,
ISSN = "1061-0022",
LCCN = "QA150 .A42",
bibdate = "Sat Sep 24 13:37:12 1994",
bibsource = "http://www.math.utah.edu/pub/tex/bib/texjourn.bib",
note = "Translation into English of ``Algebra i Analiz''.
(Formerly ``Leningrad Mathematical Journal''.) Prepared
with \AmSTeX{}.",
acknowledgement = ack-bnb,
xxCODEN = "none",
}
@Periodical{tj-sugaku,
key = "SUGAKU",
title = "{Sugaku Expositions}",
publisher = pub-AMS,
address = pub-AMS:adr,
ISSN = "0898-9583",
LCCN = "QA1 .S855",
bibdate = "Sat Sep 24 13:42:18 1994",
bibsource = "http://www.math.utah.edu/pub/tex/bib/texjourn.bib",
note = "Translation into English of expository articles from
``Sugaku''. Prepared with \AmSTeX{}.",
acknowledgement = ack-bnb,
xxCODEN = "none",
}
@Periodical{tj-tcs,
key = "TCS",
title = "{Theoretical Computer Science}",
publisher = pub-ESP,
address = pub-ESP:adr,
CODEN = "TCSCDI",
ISSN = "0304-3975 (print), 1879-2294 (electronic)",
ISSN-L = "0304-3975",
LCCN = "QA267 .T46",
bibdate = "Sat Sep 24 13:38:28 1994",
bibsource = "http://www.math.utah.edu/pub/tex/bib/texjourn.bib",
note = "\LaTeX{} format accepted.",
URL = "http://www.elsevier.com:80/inca/publications/store/5/0/5/6/",
acknowledgement = ack-np,
}
@Periodical{tj-texline,
editor = "Malcolm Clark",
key = "TEXLINE",
title = j-TEXLINE,
year = "1987" # "\unskip--",
ISSN = "0961-3978",
bibsource = "http://www.math.utah.edu/pub/tex/bib/texjourn.bib",
note = "This is an informal newsletter of the {\TeX{}}
community.",
xxCODEN = "none",
}
@Periodical{tj-theor-comput-fluid-dyn,
editor = "Y. M. Hussaini",
key = "THEOR-COMPUT-FLUID-DYN",
title = "Theoretical and computational fluid dynamics",
publisher = pub-SV,
address = pub-SV:adr,
CODEN = "TCFDEP",
ISSN = "0935-4964",
bibdate = "Wed Apr 07 19:06:20 1999",
bibsource = "http://www.math.utah.edu/pub/tex/bib/texjourn.bib",
note = "Volume 1, number 1, appeared in 1989, and authors are
encouraged to submit articles in \LaTeX{} form. Tables
of contents are available online for issues beginning
with volume 8, number 1, 1996.",
URL = "http://link.springer-ny.com/link/service/journals/00162/index.htm",
acknowledgement = ack-nhfb,
}
@Periodical{tj-thy-prob-stat,
key = "TOPMS",
title = "{Theory of Probability and Mathematical Statistics}",
publisher = pub-AMS,
address = pub-AMS:adr,
CODEN = "TPMSCO",
ISSN = "0094-9000 (print), 1547-7363 (electronic)",
LCCN = "QA273.A1 T453",
bibdate = "Sat Sep 24 13:38:57 1994",
bibsource = "http://www.math.utah.edu/pub/tex/bib/texjourn.bib",
note = "Translation into English of ``Teoria Veroyatnostei i
Matematicheskaya Statistika''. Prepared with
\AmSTeX{}.",
acknowledgement = ack-bnb,
}
@Periodical{tj-trans-ams,
key = "TAMS",
title = "{Transactions of the American Mathematical Society}",
publisher = pub-AMS,
address = pub-AMS:adr,
CODEN = "TAMTAM",
ISSN = "0002-9947 (print), 1088-6850 (electronic)",
LCCN = "QA1 .A522",
bibdate = "Sat Sep 24 13:42:24 1994",
bibsource = "http://www.math.utah.edu/pub/tex/bib/texjourn.bib",
note = "Use of \AmSTeX{} began in 1983; author submission of
\AmSTeX{} manuscripts encouraged since 1987; \AmSTeX{}
and \AmS-\LaTeX{} since late 1986; style files
available at \path|e-math.ams.org|.",
acknowledgement = ack-bnb # " and " # ack-eg,
}
@Periodical{tj-trans-moscow,
key = "TRMOSCOW",
title = "{Transactions of the Moscow Mathematical Society}",
publisher = pub-AMS,
address = pub-AMS:adr,
CODEN = "TMMSD4",
ISSN = "0077-1554",
LCCN = "QA1 .M9883",
bibdate = "Sat Sep 24 13:40:04 1994",
bibsource = "http://www.math.utah.edu/pub/tex/bib/texjourn.bib",
note = "Translation into English of ``Trudy Moskovskogo
Matematicheskogo Obshchestva''. Prepared with \AmSTeX{}
since 1987.",
acknowledgement = ack-bnb,
}
@Periodical{tj-z-phys,
key = "ZP",
title = "{Zeitschrift f{\"u}r Physik}",
bibsource = "http://www.math.utah.edu/pub/tex/bib/texjourn.bib",
note = "Need to confirm this.",
acknowledgement = ack-dl,
}
@Periodical{tj-rp,
key = "RP",
title = "{Radical Philosophy}",
ISSN = "0300-211X",
ISSN-L = "0300-211X",
bibdate = "Tue Feb 6 18:28:21 2018",
bibsource = "http://www.math.utah.edu/pub/tex/bib/texjourn.bib",
acknowledgement = ack-nhfb,
journal-URL = "https://www.radicalphilosophy.com/issues/",
remark = "Publication began in 1972. Recent issues are typeset
using Lua\LaTeX.",
}
@Periodical{tj-pi,
key = "PI",
title = "{Philosopher's Imprint}",
ISSN = "1533-628X",
ISSN-L = "1533-628X",
bibdate = "Tue Feb 6 18:28:21 2018",
bibsource = "http://www.math.utah.edu/pub/tex/bib/texjourn.bib",
acknowledgement = ack-nhfb,
journal-URL = "https://www.philosophersimprint.org/",
}
@Periodical{tj-res,
key = "RES",
title = "{Res Philosophica}",
ISSN = "2168-9105 (print), 2168-9113 (electronic)",
ISSN-L = "2168-9105",
year = "2013",
bibdate = "Tue Feb 6 18:28:21 2018",
bibsource = "http://www.math.utah.edu/pub/tex/bib/texjourn.bib",
acknowledgement = ack-nhfb,
journal-URL = "http://www.pdcnet.org/resphilosophica",
remark = "Publication began with volume 90, number 1, in January
2013",
}
|