------------------------------------------------------------------------------- FILE: "FAQ" ------------------------------------------------------------------------------- SEGTeX A Frequently Asked Questions List Last updated: Jan 31st 1994 1.) Where can I get the SEGTeX package ? The master copy lives on "oas.stanford.edu", netid 36.51.0.59 in the directory /pub/SEGTeX. You can obtain it using "ftp". 2.) Does the Printer of "Geophysics" accept customized postscript Prolog files ? We don't know yet. They might try, if you give them the prolog file as a separate file. 3.) I can't print the example file segskeleton.tex, because my PostScript printer requires some prolog file. The example has successfully been printed using the dvips package. The package can be ftp'ed from official TeX archives including labrea.stanford.edu. 4.) Why does the table environment look so crummy ? It is revtex's original environment, we are looking into improving it. 5.) Does it work on Non-Unix machines ? yes, but viewing postscript figures migth be a problem sometimes. packages that have been tried: TeXtures and OzTex on Macintosh 6.) can I convert SEG cumlative indices into bibliography files ? yes, if you have "emacs" run the shell: emconvert (it is not SEG sanctified, but a temporary hack from SEP) 7.) Can I convert the Georom Ascii index to a bibliography file ? yes, use the perl script: Georom2Bib (it is not SEG sanctified, but a temporary hack from SEP) ------------------------------------------------------------------------------- FILE: "Georom2Bib" ------------------------------------------------------------------------------- #!/usr/local/bin/perl # Martin Karrenbach Sept 1993 (last update) # # known problems: # some entries are bogus, due to names not recognized in pattern matching # if you make improvements please send me fixes: martin@sep.stanford.edu # eval "exec perl -S $0 $*" if $running_under_some_shell; $selfdoc='Usage: Georom2Bib out Converts SEG Georom file into Bibtex entries (including the abstract). If problems ask Martin. '; # selfdoc when no arguments and # stdin is not redirected if ( $#ARGV == -1 ){ if ( seek(STDIN,-1,1) == 1 ){ print STDERR $selfdoc ; exit(0) ; } } $* = 1; # make searches on vars with imbedded newlines work $counter=0; Line: while () { # print "line ", $i++,"+++$_+++\n"; if (/.*\((\d\d\d\d)\)\d+\.\s*\((.*)\)(\d*)v(\d*)i(\d*)p(\d*)o0mA(.*)\dFor page .*\d\d\d\d\.(.*)/) { if ( "$havematch" != "yes" ) { &printit($rest) ; } #if ( "$havematch" != "yes" ) { print "$rest\n\n\n" ; } $counter++; $year = $1 ; $month = $2; $pages = $3; $volume = $4; $issue =$5; $startpage = $6; $title = $7 ; $rest = $8; $pages =~ /$startpage(\d*)/; $endpage = $1; # print " $year , $month, $pages, $volume, $issue, $startpage, $title, $endpage \n"; $havematch = "yes"; } else { if (/\w*INTRODUCTION\w*/) { if( "$havematch" == "yes" ) { #print "$rest\n\n\n"; &printit($rest); $havematch = "no"; } else{ print "Intro with no match\n" ; } } else { if( "$havematch" != "yes" ) {$rest = "$rest"."$_" ;} } } #if ($counter > 10 ) { exit; }; }; print "Number of Bibtex entries created: $counter\n"; exit; sub printit { local ($_) = @_; $ii = 0; $authors = ""; $abstract = ""; (@junk) = split(/\,/); while ( $ii <=$#junk & length($abstract) == 0 ) { #print " looking at\n-->@junk[$ii]<--\n"; # match author names in various forms if ( @junk[$ii] =~ /(^\s*([A-Z]\S*\s+){0,4}[A-Z][^\sA-Z]*$)/ ) { $authors = "$authors"." and "."@junk[$ii]"; } elsif ( @junk[$ii] =~ /(^\s*([A-Z]\S*\s+){0,4}(Mc[A-Z][^\sA-Z]*)$)/) { $authors = "$authors"." and "."@junk[$ii]"; } elsif ( @junk[$ii] =~ /(^\s*([A-Z]\S*\s+){0,4}Mac[A-Z][^\sA-Z]*$)/ ) { $authors = "$authors"." and "."@junk[$ii]"; } elsif ( @junk[$ii] =~ /(^\s*([A-Z]\S*\s+){0,4}O'[A-Z][^\sA-Z]*$)/ ) { $authors = "$authors"." and "."@junk[$ii]"; } elsif(@junk[$ii] =~ /(^\s*([A-Z]\S*\s+){0,4}Mc[A-Z][^\sA-Z]*)([A-Z].*)/) { $author = $1; $abstract= $+; $authors = "$authors"." and "."$author"; } elsif(@junk[$ii] =~ /(^\s*([A-Z]\S*\s+){0,4}Mac[A-Z][^\sA-Z]*)([A-Z].*)/) { $author = $1; $abstract= $+; $authors = "$authors"." and "."$author"; } # match an author followed by the start of an abstract elsif(@junk[$ii] =~ /(^\s*([A-Z]\S*\s+){0,4}[A-Z][^\sA-Z]*)([A-Z].*)/) { $author = $1; $abstract= $+; $authors = "$authors"." and "."$author"; }else{ $abstract= "@junk[$ii]"; print STDERR "Entry $counter with cite key $citekey might have problems\n "; } $ii++; } while ( $ii <= $#junk ) { $abstract= "$abstract"."@junk[$ii]"; $ii++; } # take off the leading and $authors =~ s/^ and//; &printBibtexEntry; return; } sub printBibtexEntry { $citekey = "GEO."."$volume."."$issue."."$startpage$endpage"; print "\n\@article\{$citekey,\n"; print "\tauthor=\{$authors\},\n"; $_ = "$authors"; if ( length("$authors")>200 ) { print STDERR "Entry $counter with cite key $citekey might have problems, ". "please check !\n"; print STDERR "Authors: $authors\n"; } print "\ttitle=\{\{$title\}\},\n"; print "\tyear=\{$year\},\n"; print "\tjournal=\{Geophysics\},\n"; print "\tvolume=\{$volume\},\n"; print "\tnumber=\{$issue\},\n"; print "\tpages=\{$startpage-$endpage\},\n"; print "abstract=\{\n"; &print80($abstract); print "\}\n"; print "\t\}\n"; return; } sub print80 { local($_)=@_; local($what,$i,$howmany); $howmany = 80; if ( length($_) > $howmany & / / ) { $i=0; while ( ($i) < length($_) ) { $what=substr($_,$i,$howmany); $where = rindex("$what"," "); $what2=substr($_,$i,$where); print "\n$what2"; if ( $where == 0 ) { # last item: $what2=substr($_,$i+$where,80); print "$what2"; $where = 80 ; } $i = $i+$where; } } else { print "$_"; } return; } ------------------------------------------------------------------------------- FILE: "README" ------------------------------------------------------------------------------- This directory contains an experimental version of SEG style files within the REVTeX frame work. Copy the following files to where you usually keep your tex style files: seg.sty master style file seg12.sty internal style file for manuscripts seg10.sty internal style file for manuscripts segbib.sty bibliography hadling file for bibtex seg.bst bibtex style file for citations revtex.sty modified version of the original revtex file to allow for seg style revtex.cls fixes a problem with arrays in LaTeX2e epsf.sty macros to include PostScript figures in the document (this is the unmodified version of epfs.sty as distributed with dvips (from labrea.stanford.edu) Then look at the following files after running latex on them: segman.tex a brief guide for prepraring seg papers segskeleton.tex a paper skeleton file using seg.sty easybib.tex a paper explaining how to use bibtex manend.tex an appendix listing the commands and symbols used in revtex (tensor, vector) are seg specific Utilities for Bibliographies: Georom2Bib a perl script that attempts to convert the Ascii index to a bibliography file including abstracts (has some known problem in matching authro patterns) emconvert a emacs batch script to convert cumulative digital index to bibliography files refer2bibtex.el a emacs lisp script to convert Refer format to Bibtex used by emconvert (latest script is available at emacs ftp sites, we include it here only for convenience) Here are two experimental versions of style files for the new SEG expanded abstracts in 1996. Report problems to segtex@sep.stanford.edu. If you have something better, send it to harlan@sep.stanford.edu. segabstract96.tex Simple adaptation of standard SEGTeX segabs96.cls Standalone SEG abstract style file (experimental) last change to SEGTeX package: Martin Karrenbach 4-21-94 ( martin@sep.stanford.edu ) added abberviation journal in sep.bst Martin Karrenbach 3-27-94 ( martin@sep.stanford.edu ) added legalsize options (thanks to Craig Artley) Martin Karrenbach 3-25-94 ( martin@sep.stanford.edu ) added exp. abstract support (thanks to Bill Harlan) Martin Karrenbach 11-29-93 ( martin@sep.stanford.edu ) fixed numbering in appendix Martin Karrenbach 11-06-93 ( martin@sep.stanford.edu ) added plot placement Martin Karrenbach 10-28-93 ( martin@sep.stanford.edu ) Martin Karrenbach 9-13-93 ( martin@sep.stanford.edu ) Bill Harlan 4-9-96 (harlan@sep.stanford.edu) added 1996 abstracts Bill Harlan 4-17-96 (harlan@sep.stanford.edu) added revtex.cls ------------------------------------------------------------------------------- FILE: "easybib.ps" ------------------------------------------------------------------------------- %!PS-Adobe-2.0 %%Creator: dvips 5.55 Copyright 1986, 1994 Radical Eye Software %%Title: TEX28037.dvi %%CreationDate: Mon May 9 15:58:56 1994 %%Pages: 10 %%PageOrder: Ascend %%BoundingBox: 0 0 612 792 %%EndComments %DVIPSCommandLine: dvips TEX28037.dvi -Psparc -q -o TEX28037.ps %DVIPSParameters: dpi=300, compressed, comments removed %DVIPSSource: TeX output 1994.05.09:1558 %%BeginProcSet: texc.pro /TeXDict 250 dict def TeXDict begin /N{def}def /B{bind def}N /S{exch}N /X{S N}B /TR{translate}N /isls false N /vsize 11 72 mul N /hsize 8.5 72 mul N /landplus90{false}def /@rigin{isls{[0 landplus90{1 -1}{-1 1} ifelse 0 0 0]concat}if 72 Resolution div 72 VResolution div neg scale isls{landplus90{VResolution 72 div vsize mul 0 exch}{Resolution -72 div hsize mul 0}ifelse TR}if Resolution VResolution vsize -72 div 1 add mul TR[matrix currentmatrix{dup dup round sub abs 0.00001 lt{round}if} forall round exch round exch]setmatrix}N /@landscape{/isls true N}B /@manualfeed{statusdict /manualfeed true put}B /@copies{/#copies X}B /FMat[1 0 0 -1 0 0]N /FBB[0 0 0 0]N /nn 0 N /IE 0 N /ctr 0 N /df-tail{ /nn 8 dict N nn begin /FontType 3 N /FontMatrix fntrx N /FontBBox FBB N string /base X array /BitMaps X /BuildChar{CharBuilder}N /Encoding IE N end dup{/foo setfont}2 array copy cvx N load 0 nn put /ctr 0 N[}B /df{ /sf 1 N /fntrx FMat N df-tail}B /dfs{div /sf X /fntrx[sf 0 0 sf neg 0 0] N df-tail}B /E{pop nn dup definefont setfont}B /ch-width{ch-data dup length 5 sub get}B /ch-height{ch-data dup length 4 sub get}B /ch-xoff{ 128 ch-data dup length 3 sub get sub}B /ch-yoff{ch-data dup length 2 sub get 127 sub}B /ch-dx{ch-data dup length 1 sub get}B /ch-image{ch-data dup type /stringtype ne{ctr get /ctr ctr 1 add N}if}B /id 0 N /rw 0 N /rc 0 N /gp 0 N /cp 0 N /G 0 N /sf 0 N /CharBuilder{save 3 1 roll S dup /base get 2 index get S /BitMaps get S get /ch-data X pop /ctr 0 N ch-dx 0 ch-xoff ch-yoff ch-height sub ch-xoff ch-width add ch-yoff setcachedevice ch-width ch-height true[1 0 0 -1 -.1 ch-xoff sub ch-yoff .1 sub]/id ch-image N /rw ch-width 7 add 8 idiv string N /rc 0 N /gp 0 N /cp 0 N{rc 0 ne{rc 1 sub /rc X rw}{G}ifelse}imagemask restore}B /G{{id gp get /gp gp 1 add N dup 18 mod S 18 idiv pl S get exec}loop}B /adv{cp add /cp X}B /chg{rw cp id gp 4 index getinterval putinterval dup gp add /gp X adv}B /nd{/cp 0 N rw exit}B /lsh{rw cp 2 copy get dup 0 eq{pop 1}{ dup 255 eq{pop 254}{dup dup add 255 and S 1 and or}ifelse}ifelse put 1 adv}B /rsh{rw cp 2 copy get dup 0 eq{pop 128}{dup 255 eq{pop 127}{dup 2 idiv S 128 and or}ifelse}ifelse put 1 adv}B /clr{rw cp 2 index string putinterval adv}B /set{rw cp fillstr 0 4 index getinterval putinterval adv}B /fillstr 18 string 0 1 17{2 copy 255 put pop}for N /pl[{adv 1 chg} {adv 1 chg nd}{1 add chg}{1 add chg nd}{adv lsh}{adv lsh nd}{adv rsh}{ adv rsh nd}{1 add adv}{/rc X nd}{1 add set}{1 add clr}{adv 2 chg}{adv 2 chg nd}{pop nd}]dup{bind pop}forall N /D{/cc X dup type /stringtype ne{] }if nn /base get cc ctr put nn /BitMaps get S ctr S sf 1 ne{dup dup length 1 sub dup 2 index S get sf div put}if put /ctr ctr 1 add N}B /I{ cc 1 add D}B /bop{userdict /bop-hook known{bop-hook}if /SI save N @rigin 0 0 moveto /V matrix currentmatrix dup 1 get dup mul exch 0 get dup mul add .99 lt{/QV}{/RV}ifelse load def pop pop}N /eop{SI restore showpage userdict /eop-hook known{eop-hook}if}N /@start{userdict /start-hook known{start-hook}if pop /VResolution X /Resolution X 1000 div /DVImag X /IE 256 array N 0 1 255{IE S 1 string dup 0 3 index put cvn put}for 65781.76 div /vsize X 65781.76 div /hsize X}N /p{show}N /RMat[1 0 0 -1 0 0]N /BDot 260 string N /rulex 0 N /ruley 0 N /v{/ruley X /rulex X V}B /V {}B /RV statusdict begin /product where{pop product dup length 7 ge{0 7 getinterval dup(Display)eq exch 0 4 getinterval(NeXT)eq or}{pop false} ifelse}{false}ifelse end{{gsave TR -.1 .1 TR 1 1 scale rulex ruley false RMat{BDot}imagemask grestore}}{{gsave TR -.1 .1 TR rulex ruley scale 1 1 false RMat{BDot}imagemask grestore}}ifelse B /QV{gsave newpath transform round exch round exch itransform moveto rulex 0 rlineto 0 ruley neg rlineto rulex neg 0 rlineto fill grestore}B /a{moveto}B /delta 0 N /tail {dup /delta X 0 rmoveto}B /M{S p delta add tail}B /b{S p tail}B /c{-4 M} B /d{-3 M}B /e{-2 M}B /f{-1 M}B /g{0 M}B /h{1 M}B /i{2 M}B /j{3 M}B /k{ 4 M}B /w{0 rmoveto}B /l{p -4 w}B /m{p -3 w}B /n{p -2 w}B /o{p -1 w}B /q{ p 1 w}B /r{p 2 w}B /s{p 3 w}B /t{p 4 w}B /x{0 S rmoveto}B /y{3 2 roll p a}B /bos{/SS save N}B /eos{SS restore}B end %%EndProcSet TeXDict begin 40258431 52099146 1000 300 300 (/tmp_mnt/usr/local/src/our/word/SEGTeX/TEX28037.dvi) @start /Fa 7 86 df69 DI<02FF13100107EBE03090381FC07890393E000C7001F8EB06F04848130348 4813014848130048481470A248C812305A123E1610127EA2007C150012FCA892B5FC127C 007EEC03F01501123EA2123F7E6C7EA26C7E6C7E6C6C13026C7E013EEB0C7090391FC038 30903907FFE0100100EB8000282B7DA92F>I73 D82 DI85 D E /Fb 3 111 df<130F1338137013E0EA01C0B1EA0380EA0700121E12F0121E1207EA 0380EA01C0B1EA00E013701338130F10317CA419>102 D<12F0121E1207EA0380EA01C0 B1EA00E013701338130F1338137013E0EA01C0B1EA0380EA0700121E12F010317CA419> I<12C0A21260A37EA37EA37EA37EA37EA36C7EA36C7EA31360A37FA37FA37FA37FA37FA3 EB0180A3EB00C0144012317DA419>110 D E /Fc 3 106 df<1318A3133CA2134EA31387 A2000113801303A2380201C0A2EA03FF380400E0A2481370A21218003C137838FE01FF18 177F961C>97 DI105 D E /Fd 5 89 df66 D69 D76 D<007FB512E038780F010060EB00 6000401420A200C0143000801410A400001400B3497E3807FFFE1C1F7E9E21>84 D<397FF81FF8390FE00FC03907C00700000313026C6C5AEBF00C00001308EB7810137CEB 3C20EB3E40131E6D5AA213076D7E497E1305EB09F0EB18F8EB1078EB207CEB603CEB401E EB801F00017F9038000780000214C000071303391F8007E039FFE01FFE1F1F7F9E22>88 D E /Fe 22 90 df<1238127C12FEA3127C12381200A61238127C12FEA3127C12380714 7D930E>58 D<14C0497EA3497EA2497EA2497E130CA2EB187EA2EB387FEB303FA2496C7E A201E07FEBC00F90B5FC4880EB8007000380EB0003A200066D7EA2000E803AFFE01FFFC0 A2221F7E9E27>65 DI<903807FC0290383FFF0E9038FE03DE3903F000FE4848133E4848 131E485A48C7120EA2481406127EA200FE1400A7127E1506127F7E150C6C7E6C6C13186C 6C13386C6C13703900FE01C090383FFF80903807FC001F1F7D9E26>IIII<903807FC0290383FFF0E9038FE03DE39 03F000FE4848133E4848131E485A48C7120EA2481406127EA200FE91C7FCA591383FFFE0 A2007E9038007E00A2127F7EA26C7E6C7E6C7E6C6C13FE3800FE0190383FFF8E903807FC 06231F7D9E29>III76 DIIII82 D<3803FC08380FFF38381E03F8EA380048137814 3812F01418A26C13007EEA7FC013FE383FFF806C13C06C13F07EC613F81307EB00FC147C 143C12C0A36C1338147800F8137038FE01E038E7FFC000811300161F7D9E1D>I<007FB5 12FCA2397C07E07C0070141C0060140CA200E0140E00C01406A400001400B10003B512C0 A21F1E7E9D24>II<3CFFFE0FFFC0FFE0A23C0FC000FC000E007F00 076E130CA26C6C5D4A7E15BFD801F85D9138031F8001FC1570000016609138060FC0017E 5D020E13E0EC0C07013FECE18091381803F1029813F3011F92C7FC9138B001FBD90FF013 FEA2ECE00001075C4A137CA2010314784A133801011430331F7F9E36>87 D<39FFFE0FFFA23907F000E00003495A01F85B6C6C48C7FC00005BEBFE06EB7F0CEB3F9C EB1FB814F06D5A1307806D7EA2497EEB0EFEEB0C7F497E01387F9038301FC0EB600F01E0 7F48486C7EEB8003D803007F486D7E3AFFF01FFFC0A2221F7E9E27>II E /Ff 3 106 df<1304130EA3131FA2497E1327A2EB43C0A3EB81E0A2380101F01300A2 48B47E380200780006137C0004133CA2000C7FA2003C133FB4EBFFE01B1A7F991F>97 DI 105 D E /Fg 74 126 df<13E0EA03F0487E1338EA0E1CA45BEB39FC1371EA07F1EBE1C0 13C11381EB8380120F121F383DC700EA79E7EA70EEEAE07EA2EB3C08141CEAF07EEA70FF 383FE7F813C3380F00E0161E7F9D1A>38 D<1218123C123E121E120EA5121C123C123812 F0A212C0070F779D1A>I<1218123E127E127F123F121F1207120EA2121C12FC12F812E0 080D77851A>44 D<387FFFC0B512E0A26C13C013047D901A>I<1230127812FCA2127812 30060676851A>I48 D<13C01201A212031207120F127F12FD12711201B2EA7FFFA3101E7B9D1A> IIII<383FFFC05AA20070C7FCA8EA71F8EA7FFE7F387E0780 387803C0EA30011200EB00E0A3126012F0EB01C012E038700380EA7C0F383FFF00EA0FFC EA03F0131E7D9D1A>I<137E3801FF804813C0380781E0EA0F01121E383C00C000381300 5AA3EAE1F8EAE7FEB5FC38FE078038F803C0EAF001EB00E0A25A7E1270A2EB01C0123838 3C0380EA1E0F380FFF00EA07FCEA01F0131E7D9D1A>I<12E0B512F8A214F038E000E0EB 01C0EA0003EB0780EB0F00130E5BA25BA25BA25BA3485AA4485AA8151F7E9E1A>III< 1230127812FCA2127812301200A91230127812FCA212781230061576941A>I<387FFFF0 B512F8A26C13F0C8FCA4387FFFF0B512F8A26C13F0150C7E941A>61 D<133E3801FF804813C03807C1E0EA0F00381E0F70383C3FF0EA387F387070F8EBE078A2 38E1C038A83870E070A2EB70E0EA387F383C3FC0381E0F00380F00383807C0F83803FFF0 6C13E038003F00151E7E9D1A>64 D<1338137CA2136C13EEA313C6A2EA01C7A438038380 A4380701C0A213FFA24813E0EA0E00A4481370387F01FC38FF83FE387F01FC171E7F9D1A >IIIII<387FFFFCB5FC7E380E001CA41400A3EB 0380A3EA0FFFA3EA0E03A390C7FCA8EA7FE012FF127F161E7F9D1A>II<38FF83FEA3381C0070AA381FFFF0 A3381C0070AB38FF83FEA3171E7F9D1A>II<3801FFC05A7E38000E00B3A2126012F0131E5BEA7FF86C5AEA0FC0121E7C9D1A>I< 387F03F838FF87FC387F03F8381C01E0EB03C01480EB07005B131E131C5B13785B7F121D EA1FDC139C130EEA1E0F7F001C13801303EB01C0A2EB00E0A21470007F13FC38FF81FE38 7F00FC171E7F9D1A>II<007E133FB4EB7F806C1400381D80DCA313C1A2001C139CA213E3A2EB631C1377A2 1336A2133E131CA21300A7007F137F39FF80FF80397F007F00191E809D1A>I<38FE03FE 12FFA2381D8070A213C0121CA213E0A213601370A213301338A21318131CA2130C130EA2 1306A213071303A238FF81F0A21380171E7F9D1A>IIIII<3803F1C0EA0FFDEA3FFFEA7C0FEA700312E01301A390C7FC1270 1278123FEA1FF0EA07FEC67EEB0F80EB03C01301EB00E0A2126012E0A2EB01C012F038FC 0780B5FC38EFFE00EAE3F8131E7D9D1A>I<387FFFFEB5FCA238E0380EA400001300B3A2 3803FF80A3171E7F9D1A>I<38FF83FEA3381C0070B3A26C13E0A2380701C013833803FF 806C1300EA007C171E7F9D1A>I<38FF01FEA3381C0070A3001E13F0000E13E0A3380701 C0A438038380A43801C700A4EA00C613EEA3136C137CA21338171E7F9D1A>I<00FE13FE EAFF01EAFE000070131C0078133C00381338A7137C001C137013EEA513C6A2380DC760A3 1383A3000F13E0A2380701C0171E7F9D1A>I<387F87F8A3380F01C03807038013833803 870013C7EA01CE13EEEA00FCA21378A3137CA213FE13EEEA01CF13C73803878013833807 03C01301380E00E0A2387F01FC38FF83FE387F01FC171E7F9D1A>I<383FFFF85AA23870 007014E0130114C03800038013071400130E131E131C5B13785B5B485A12035B48C7FC5A 000E13385A123C12385AB512F8A3151E7E9D1A>90 DI<126012F0A27E1278127C123C123E121EA2121F7E7F12077F1203A27F1201 7F12007F1378A2137C133C133E131E131F7FA21480130714C0130314E01301A2EB00C013 277DA21A>II97 D<12FEA3120EA6133EEBFF80000F13E0EBC1F0EB8070EB 0038120E141CA7000F13381478EB80F0EBC1E0EBFFC0000E138038063E00161E7F9D1A> III II<3801F87C3807FFFE5A381E078C381C0380383801C0A538 1C0380EA1E07381FFF005BEA39F80038C7FCA27E381FFF8014E04813F83878007C007013 1C48130EA40070131C0078133C003E13F8381FFFF0000713C00001130017217F941A>I< 12FEA3120EA6133EEBFF80000F13C013C1EB80E01300120EAC38FFE3FE13E713E3171E7F 9D1A>I<13C0487EA26C5A90C7FCA6EA7FE0A31200AF387FFF80B512C06C1380121F7C9E 1A>I<130C131EA2130C1300A6EA0FFEA3EA000EB3A5131C1260EAF038EAFFF8EA7FF0EA 1FC00F2A7E9E1A>I<12FEA3120EA6EB0FFCEB1FFEEB0FFCEB03C0EB0780EB0F00131E5B 5B13FC120F13DE138F380E07801303EB01C014E0EB00F038FFE3FE14FF14FE181E7F9D1A >II<387CE0E038FFFBF8EA7FFF381F1F1CEA 1E1EA2EA1C1CAC387F1F1F39FF9F9F80397F1F1F00191580941A>IIII<3801F8E0EA07FEEA0FFFEA1E07EA3C03EA78011270EAE000A613011270EA 7803123CEA1E0FEA0FFFEA07FCEA01F0C7FCA8EB0FFEA317207E941A>I<387F83F038FF 8FF8387FBFFC3803FC3CEBF018EBE0005BA25BAAEA7FFFB5FC7E16157E941A>I<3807FB 80EA1FFF127FEA7807EAE003A30078C7FCEA7FC0EA3FFCEA07FE38003F801307386001C0 12E0A2EAF00338FC0780B51200EAEFFEEAE3F812157C941A>I<13C01201A6387FFFE0B5 FCA23801C000AA1470A43800E0E013FFEB7FC0EB1F00141C7F9B1A>I<38FE0FE0A3EA0E 00AD1301EA0F033807FFFE7EEA00FC17157F941A>I<387F83FC38FFC7FE387F83FC380E 00E0A3380701C0A338038380A33801C700A3EA00EEA3137CA2133817157F941A>I<38FF 83FE13C7138338380038A26C1370A31338137CA2380E6CE0A213EEA313C6000613C0EA07 C7A23803838017157F941A>I<387FC7F8EBCFFCEBC7F8380703C038038380EBC700EA01 EFEA00FE137C13781338137C13EE120113C738038380000713C0EA0F01387FC7FC00FF13 FE007F13FC17157F941A>I<387FC3FC38FFC7FE387FC3FC380E00E0A27EEB01C0138112 03EB838013C31201EBC700EA00E7A213E61366136E133CA31338A35BA21230EA78E01271 EA7FC06C5A001EC7FC17207F941A>I<387FFFF0B5FCA238E001E0EB03C0EB078038000F 00131E5B5B5B485A485A485A380F0038121E5A5AB512F8A315157E941A>II<127CB4FC7FEA03C06C7E1200AB7F1378EB3FE0131F133FEB78005B5BAB 1201485AB45A90C7FC127C13277DA21A>125 D E /Fh 76 124 df<90381F83E0903870 6E309038C07C78380180F8000313F03907007000A9B612C03907007000B21478397FE3FF 801D2380A21C>11 DI34 D<133C136213C2EA0181A21203 A41382A213841388EA01C813D09039E003FF809039C0007C006C6C1338000114306D1320 D802705B1204486C5BEA183C26301C01C7FC38701E02130E38F0070414881303903801D0 01EB00E00078EB70030038EBB802393C031C04390E0C0E0C3903F003F021257EA326>38 D<127012F812FCA212741204A41208A21210A212201240060F7CA20E>I<132013401380 EA01005A12061204120CA25AA25AA312701260A312E0AE1260A312701230A37EA27EA212 0412067E7EEA0080134013200B327CA413>I<7E12407E7E12187E12041206A27EA2EA01 80A313C01200A313E0AE13C0A312011380A3EA0300A21206A21204120C5A12105A5A5A0B 327DA413>I<127012F812FCA212741204A41208A21210A212201240060F7C840E>44 DI<127012F8A3127005057C840E>I48 D<13801203120F12F31203B3A9EA07C0EAFFFE0F217CA018 >III<13021306130EA2 131EA2132E134EA2138EA2EA010E1202A21204A212081210A21220A212401280B512F838 000E00A7131F3801FFF015217FA018>I<00101380381E0700EA1FFF5B13F8EA13E00010 C7FCA613F8EA130EEA1407381803801210380001C0A214E0A4127012F0A200E013C01280 EA4003148038200700EA1006EA0C1CEA03F013227EA018>I<137EEA01C1380300803806 01C0EA0E03121C381801800038C7FCA212781270A2EAF0F8EAF30CEAF4067F00F81380EB 01C012F014E0A51270A3003813C0A238180380001C1300EA0C06EA070CEA01F013227EA0 18>I<12401260387FFFE014C0A23840008038C0010012801302A2485A5BA25B13301320 1360A313E05BA21201A41203A86C5A13237DA118>III<127012F8A312701200AB127012F8A3127005157C940E> I<127012F8A312701200AB127012F8A312781208A41210A312201240A2051F7C940E>I< 497EA3497EA3EB05E0A2EB0DF01308A2497E1478A2497EA3497EA3497EA290B5FC390100 0780A24814C000021303A24814E01401A2000CEB00F0A2003EEB01F839FF800FFF20237E A225>65 DI<903807E0109038381830EBE0063901C0017039038000 F048C7FC000E1470121E001C1430123CA2007C14101278A200F81400A812781510127C12 3CA2001C1420121E000E14407E6C6C13803901C001003800E002EB381CEB07E01C247DA2 23>IIII<903807F00890383C0C18EBE0023901C001B839038000F848C7 1278481438121E15185AA2007C14081278A200F81400A7EC1FFF0078EB00F81578127C12 3CA27EA27E7E6C6C13B86C7E3900E0031890383C0C08903807F00020247DA226>I<39FF FC3FFF390FC003F039078001E0AE90B5FCEB8001AF390FC003F039FFFC3FFF20227EA125 >II<3803FFF038001F007FB3A6 127012F8A2130EEAF01EEA401C6C5AEA1870EA07C014237EA119>I<39FFFC03FF390FC0 00F86C48136015405D4AC7FC14025C5C5C5C5C5C1381EB83C0EB87E01389EB88F01390EB A078EBC03C13808080A26E7E8114036E7EA26E7E81486C7F3AFFFC07FF8021227EA126> II< D8FFC0EB03FF000F15F0000715E0D805E01305A2D804F01309A301781311A36D1321A36D 1341A26D1381A39038078101A3EB03C2A2EB01E4A3EB00F8A31470120E001FEC03F03AFF E0203FFF28227EA12D>I<39FF8007FF3907C000F81570D805E01320EA04F0A21378137C 133C7F131F7FEB0780A2EB03C0EB01E0A2EB00F014F81478143C143E141E140FA2EC07A0 EC03E0A21401A21400000E1460121FD8FFE0132020227EA125>IIIII<3803F020380C 0C60EA1802383001E0EA70000060136012E0A21420A36C1300A21278127FEA3FF0EA1FFE 6C7E0003138038003FC0EB07E01301EB00F0A214707EA46C1360A26C13C07E38C8018038 C60700EA81FC14247DA21B>I<007FB512F839780780780060141800401408A300C0140C 00801404A400001400B3A3497E0003B5FC1E227EA123>I<39FFFC07FF390FC000F86C48 13701520B3A5000314407FA2000114806C7E9038600100EB3006EB1C08EB03F020237EA1 25>II<3BFFF03FFC03FE3B1F8007E000F86C486C48137017 20A26C6C6C6C1340A32703C002F01380A33B01E004780100A33A00F0083C02A39039F818 3E06903978101E04A2137C90393C200F08A390391E400790A390390F8003E0A36D486C5A A36D5C010213002F237FA132>I<397FF807FF3907E001F83903C000E06D5B00015C6C6C 48C7FC6D5AEB7802EB7C04EB3E0CEB1E08EB1F10EB0FB0EB07A014C06D7E130180497EEB 0278EB047CEB0C3EEB081EEB101F9038300F80EB200701407F9038C003E0EB8001D80100 7F4813004880391F8001FC3AFFE007FFC022227FA125>II<387FFF FE387E003E0078133C007013781260004013F012C0EB01E0388003C0A2EB07801200EB0F 005B131E5BA25BA25B1201EBE001EA03C0A2EA07801403EA0F00001E1302A2481306140E 48131E00F8137EB512FE18227DA11E>I92 D97 D<120E12FE121E120EAB131FEB61C0EB8060380F0030000E1338143C141C141E A7141C143C1438000F1370380C8060EB41C038083F0017237FA21B>II<14E0130F13011300ABEA01F8EA0704EA0C02EA1C01EA38001278 127012F0A7127012781238EA1801EA0C0238070CF03801F0FE17237EA21B>II<133C13C6EA018F1203130FEA0700A9EA FFF8EA0700B21380EA7FF8102380A20F>I<14703801F19838071E18EA0E0E381C0700A2 003C1380A4001C1300A2EA0E0EEA0F1CEA19F00010C7FCA21218A2EA1FFE380FFFC014E0 383800F0006013300040131812C0A300601330A2003813E0380E03803803FE0015217F95 18>I<120E12FE121E120EABEB1F80EB60C0EB80E0380F0070A2120EAF38FFE7FF18237F A21B>I<121C123EA3121CC7FCA8120E12FE121E120EB1EAFFC00A227FA10E>II<120E12FE121E120EABEB03FCEB01F014C01480EB02005B5B5B133813F8EA0F1C EA0E1E130E7F1480EB03C0130114E0EB00F014F838FFE3FE17237FA21A>I<120E12FE12 1E120EB3ADEAFFE00B237FA20E>I<390E1FC07F3AFE60E183803A1E807201C03A0F003C 00E0A2000E1338AF3AFFE3FF8FFE27157F942A>I<380E1F8038FE60C0381E80E0380F00 70A2120EAF38FFE7FF18157F941B>III<3801F82038070460 EA0E02EA1C01003813E0EA7800A25AA712701278EA3801121CEA0C02EA070CEA01F0C7FC A9EB0FFE171F7E941A>III<1202A41206A3 120E121E123EEAFFF8EA0E00AB1304A6EA07081203EA01F00E1F7F9E13>I<000E137038 FE07F0EA1E00000E1370AD14F0A238060170380382783800FC7F18157F941B>I<38FFC1 FE381E0078000E13301420A26C1340A238038080A33801C100A2EA00E2A31374A21338A3 131017157F941A>I<39FF8FF8FF391E01E03C001CEBC018120EECE010A2390702602014 70A239038430401438A23901C81880141CA23900F00D00140FA2EB6006A320157F9423> I<38FF83FE381F01F0380E00C06C1380380381001383EA01C2EA00E41378A21338133C13 4E138EEA0187EB0380380201C0000413E0EA0C00383E01F038FF03FE17157F941A>I<38 FFC1FE381E0078000E13301420A26C1340A238038080A33801C100A2EA00E2A31374A213 38A31310A25BA35B12F05B12F10043C7FC123C171F7F941A>I<383FFFC038380380EA30 0700201300EA600EEA401C133C1338C65A5B12015B38038040EA07005A000E13C0481380 5AEA7801EA7007B5FC12157F9416>II E /Fi 30 121 df<120E121EA41202A21204A21208A21210122012401280070F7D840F>44 D<127012F8A212F012E005057A840F>46 D48 D51 D<14181438A21470A314E0A314C01301148013031400A21306A25BA25B1310EB3180EB61 C0EB438013831201EA03033802070012041208EA3FC7EA403E38800FF038000E00A25BA4 5BA31330152B7EA019>III57 D<1403A25CA25CA25C142FA2144F15801487A2EB01071302A21304A2 1308A2131013301320EB7FFF90384007C013801403EA01005A12025AA2120C003C1307B4 EB3FFC1E237DA224>65 D<027F138090390380810090380E00630138132749131F49130E 485A485A48C7FC481404120E121E5A5D4891C7FCA35AA55A1520A25DA26C5C12704AC7FC 6C130200185B001C5B00061330380381C0D800FEC8FC212479A223>67 D<90B6128090380F00071501A2131EA21600A25BA2140192C7FCEB7802A21406140EEBFF FCEBF00CA33801E008A21504EC0008485AA25DA248485B15605D1401000F1307B65A2122 7DA121>69 D77 D<90B512E090380F0038151E150E011E1307A449130FA3151E5B153C157815E09038 F003C09038FFFE0001F0C7FCA2485AA4485AA4485AA4120FEAFFF820227DA121>80 D<903801F02090380E0C4090381802C0EB3001136001E0138013C01201A200031400A291 C7FCA27FEA01F813FF6C13E06D7EEB1FF8EB03FCEB007C143C80A30020131CA314180060 1338143000705B5C38C80180D8C607C7FCEA81FC1B247DA21B>83 D<393FFE03FF3903C000781560152048481340A448C71280A4001EEB0100A4481302A448 5BA400705B12F05C12705C5C123038380180D81802C7FCEA0E0CEA03F0202377A124>85 D97 D<137EEA01C138030180EA0703EA0E07 121C003CC7FC12381278A35AA45B12701302EA300CEA1830EA0FC011157B9416>99 D<143CEB03F8EB0038A31470A414E0A4EB01C013F9EA0185EA0705380E0380A2121C123C 383807001278A3EAF00EA31410EB1C201270133C38305C40138C380F078016237BA219> I<13F8EA0384EA0E02121C123C1238EA7804EAF018EAFFE0EAF000A25AA41302A2EA6004 EA7018EA3060EA0F800F157A9416>I<143E144714CFEB018F1486EB0380A3EB0700A513 0EEBFFF0EB0E00A35BA55BA55BA55BA45B1201A2EA718012F100F3C7FC1262123C182D82 A20F>I<13F0EA0FE01200A3485AA4485AA448C7FC131FEB2180EBC0C0380F00E0A2120E A2381C01C0A438380380A3EB070400701308130E1410130600E01320386003C016237DA2 19>104 D<13C0EA01E013C0A2C7FCA8121C12231243A25AA3120EA25AA35AA21340EA70 80A3EA71001232121C0B217BA00F>I<14E01301A2EB00C01400A8131E1323EB43801383 A2EA0103A238000700A4130EA45BA45BA45BA3EA70E0EAF0C0EAF1800063C7FC123C132B 82A00F>I108 D110 D<137EEA01C338038180380701C0120E001C13E0123C12381278A338F003C0A214801307 00701300130E130CEA3018EA1870EA07C013157B9419>I<3801C1F0380262183804741C 3808780CEB700EA2141EEA00E0A43801C03CA3147838038070A2EBC0E0EBC1C038072380 EB1E0090C7FCA2120EA45AA3EAFFC0171F7F9419>I114 D<13C01201A4EA0380A4 EA0700EAFFF8EA0700A2120EA45AA45AA31310EA7020A213401380EA3100121E0D1F7C9E 10>116 D<3803C1E0380462103808347038103CF0EA203814601400C65AA45BA3142038 61C04012F1148038E2C100EA4462EA383C14157D9416>120 D E /Fj 23 117 df<13FE3807FFC0380F83E0381F01F0383E00F8A248137CA312FC147EAD00 7C137CA36C13F8A2381F01F0380F83E03807FFC03800FE0017207E9F1C>48 D50 D<14E013011303A21307130F131FA21337137713E7EA 01C71387EA03071207120E120C12181238127012E0B512FEA2380007E0A7EBFFFEA21720 7E9F1C>52 D<00101320381E01E0381FFFC0148014005B13F8EA1BC00018C7FCA4EA19FC EA1FFF381E0FC0381807E01303000013F0A214F8A21238127C12FEA200FC13F0A2387007 E0003013C0381C1F80380FFF00EA03F815207D9F1C>I<12601278387FFFFEA214FC14F8 A214F038E0006014C038C00180EB0300A2EA00065B131C131813381378A25BA31201A312 03A76C5A17227DA11C>55 D<13FE3803FFC0380703E0380E00F05A1478123C123E123F13 80EBE0F0381FF9E0EBFFC06C13806C13C06C13E04813F0381E7FF8383C1FFCEA7807EB01 FEEAF000143E141EA2141C7E007813387E381F01F0380FFFC00001130017207E9F1C>I< 1470A214F8A3497EA2497EA3EB06FF80010E7FEB0C3FA201187F141F01387FEB300FA201 607F140701E07F90B5FCA239018001FCA200038090C7FCA20006147FA23AFFE00FFFF8A2 25227EA12A>65 DII75 D77 D82 D<3801FC043807FF8C381F03FC383C007C007C133C0078131CA200F8130CA27E1400B4FC 13E06CB4FC14C06C13F06C13F86C13FC000313FEEA003FEB03FFEB007F143FA200C0131F A36C131EA26C133C12FCB413F838C7FFE00080138018227DA11F>I<007FB61280A2397E 03F80F00781407007014030060140100E015C0A200C01400A400001500B3A20003B512F8 A222227EA127>I97 DII<13FE3807FF80380F87C0381E01E0003E13F0EA7C0014F812FCA2 B5FCA200FCC7FCA3127CA2127E003E13186C1330380FC0703803FFC0C6130015167E951A >101 D104 D<121C123E127FA3123E121CC7FCA7B4FCA2121FB2EAFFE0A20B247EA3 10>I<38FF07E0EB1FF8381F307CEB403CEB803EA21300AE39FFE1FFC0A21A167E951F> 110 D 114 D<487EA41203A21207A2120F123FB5FCA2EA0F80ABEB8180A5EB8300EA07C3EA03FE EA00F811207F9F16>116 D E /Fk 23 122 df69 D<91387FE003903903FFFC07011FEBFF0F90393FF00FFF9038FF80014848C7FCD803F814 3F485A000F81484880A2485A82127F5B93C7FC12FFA84AB512F8127FA26DC71300123FA2 6C7EA26C7E12076C7EEA01FE6C6C6C5A90393FF007BF6DB5121F0103497E9039007FF003 2D297CA836>71 D82 D<90387F80603903FFF0 E04813F9380F807F381F001F003E1307481303140112FCA214007EA26C140013C0EA7FFE EBFFE06C13FC6C7F6CEBFF806C14C06C14E0C6FC010713F0EB007FEC0FF8140714030060 130112E0A36C14F0A26C13036C14E0B4EB07C09038E01F8000F3B5120000E05B38C01FF0 1D297CA826>I<48B47E000713F0380F81F8381FC07EA280D80F801380EA0700C7FCA3EB 0FFF90B5FC3807FC3FEA0FE0EA3F8013005A12FEA4007E137F007F13DF393F839FFC380F FF0F3801FC031E1B7E9A21>97 DIIIII< 9038FF81F00003EBE7F8390FC1FE7C381F80FC9038007C3848EB7E1048EB7F00A66C137E 6C137CEB80FC380FC1F8381FFFE0001813800038C8FCA2123C123E383FFFF86C13FF1580 6C14C06C14E0001F14F0383E000748EB01F8481300A4007CEB01F0003C14E0001FEB07C0 390FC01F803903FFFE0038007FF01E287E9A22>II<1207EA0F 80EA1FC0EA3FE0A3EA1FC0EA0F80EA0700C7FCA7EAFFE0A3120FB3A3EAFFFEA30F2B7DAA 14>I108 D<3BFFC07F800FF0903AC1FFE03F FC903AC383F0707E3B0FC603F8C07F903ACC01F9803F01D8D9FF00138001F05BA201E05B B03CFFFE1FFFC3FFF8A3351B7D9A3A>I<38FFC07F9038C1FFC09038C787E0390FCE03F0 13D88113F0A213E0B03AFFFE3FFF80A3211B7D9A26>II<38FFE1FE9038E7FF8090 38FE07E0390FF803F0496C7E496C7E818181A21680A716005DA25D4A5A01F05B6D485A90 38FE0FE09038E7FF80D9E1FCC7FC01E0C8FCA9EAFFFEA321277E9A26>I<38FFC1F0EBC7 FCEBCE3E380FD87FA213F0143E141CEBE000B0B5FCA3181B7E9A1C>114 D<3803FE30380FFFF0EA1E03EA380048137012F0A27E6C1300EAFFE0EA7FFEEBFF806C13 E06C13F0000713F8C6FCEB03FC13000060137C00E0133C7E14387E6C137038FF01E038F7 FFC000C11300161B7E9A1B>I<1370A413F0A312011203A21207381FFFF0B5FCA23807F0 00AD1438A61203EBF870000113603800FFC0EB1F8015267FA51B>I<39FFE03FF8A3000F 1303B214071207140F3A03F03BFF803801FFF338003FC3211B7D9A26>I<3AFFFE03FF80 A33A07F0007000A26D13F000035CEBFC0100015CA26C6C485AA2D97F07C7FCA2148FEB3F 8E14DEEB1FDCA2EB0FF8A36D5AA26D5AA26D5AA2495AA2EA3807007C90C8FCEAFE0F130E 131E5BEA7C78EA3FE0EA0FC021277F9A24>121 D E end %%EndProlog %%BeginSetup %%Feature: *Resolution 300dpi TeXDict begin %%EndSetup %%Page: 1 1 1 0 bop 510 42 a Fk(Referencing)21 b(and)j(bibliographies)506 165 y(in)f(SEG)g(publications)e(made)h(easy)737 350 y Fj(Martin)d(Karren)n(bac)n(h)206 524 y Fi(Stanfor)n(d)f(Explor)n(ation) f(Pr)n(oje)n(ct,)g(366)g(Mitchel)r(l,)i(Stanfor)n(d,)f(CA)f(94305,)g (U.S.A.)818 699 y Fj(ABSTRA)n(CT)161 793 y Fh(When)c(preparing)h(a)f (pap)q(er)h(for)g(publication,)e(authors)j(usually)d(struggle)i(with)f (the)g(format)75 892 y(and)j(st)o(yle)e(of)i(references)e(to)h(related) g(articles.)20 b(First)15 b(they)g(ha)o(v)o(e)f(to)i(mak)o(e)d(sure)i (that)h(previous)75 992 y(publications)g(are)h(cited)f(correctly)f(in)h (the)g(b)q(o)q(dy)i(of)f(the)f(pap)q(er.)23 b(Second)17 b(they)f(ha)o(v)o(e)g(to)h(mak)o(e)75 1092 y(sure)j(that)g(the)f (complete)f(list)h(of)h(cited)e(publications)i(ob)q(eys)g(the)f(st)o (ylistic)f(demands)h(of)h(the)75 1191 y(SEG)d(editor.)148 1291 y(T)l(o)h(mak)o(e)d(it)i(as)g(easy)h(as)f(p)q(ossible)h(for)f(the) g(author)h(and)g(also)f(to)h(enforce)e(st)o(ylistic)g(consis-)75 1391 y(tency)i(w)o(e)h(require)f(that)h(the)g Fg(Bibliograph)o(y)d Fh(en)o(vironmen)o(t)g(o\013er)k(b)o(y)f(L)1452 1385 y Ff(a)1476 1391 y Fh(T)1503 1406 y(E)1530 1391 y(X)g(is)f(used.)30 b(SEG)75 1490 y(pro)o(vides)16 b(guidelines)f(and)i(examples)d(of)j (citations)f(in)f(this)i(article.)799 1680 y Fe(PHILOSOPHY)148 1835 y Fh(W)l(e)k(emphatically)d(encourage)k(authors)g(to)g(tak)o(e)e (adv)m(an)o(tage)i(of)g(the)e(B)p Ff(ib)p Fh(T)1609 1845 y(E)1636 1835 y(X)h(st)o(yle)f(\014le)75 1934 y(that)f(the)f(SEG)h (editor)f(pro)o(vides.)28 b(If)18 b(y)o(ou)g(are)g(using)h(T)1133 1945 y(E)1160 1934 y(X)f(and)h(L)1324 1928 y Ff(a)1348 1934 y Fh(T)1375 1949 y(E)1403 1934 y(X)f(already)l(,)g(y)o(ou)h (should)75 2034 y(also)g(ha)o(v)o(e)f(B)p Ff(ib)p Fh(T)396 2045 y(E)423 2034 y(X)g(a)o(v)m(ailable)g(to)h(y)o(ou.)28 b(If)18 b(y)o(ou)h(do)g(not,)g(w)o(e)g(encourage)g(y)o(ou)f(to)h(get)g (hold)g(of)75 2133 y(the)d(latest)g(T)319 2144 y(E)346 2133 y(X)g(distribution)g({)h(B)p Ff(ib)p Fh(T)812 2144 y(E)838 2133 y(X)f(is)g(included.)148 2233 y(B)p Ff(ib)p Fh(T)254 2244 y(E)281 2233 y(X)c(sa)o(v)o(es)h(the)g(authors)h(of)f (scien)o(ti\014c)e(articles)h(a)h(lot)g(of)g(w)o(ork,)h(b)o(y)e(con)o (v)o(erting)g(B)p Ff(ib)p Fh(T)1812 2244 y(E)1838 2233 y(X)75 2333 y(database)21 b(en)o(tries)d(in)o(to)h(bibliographic)g(en)o (tries)f(used)i(in)f(L)1185 2327 y Ff(a)1209 2333 y Fh(T)1236 2348 y(E)1263 2333 y(X)g(.)g(Those)h(get)g(automatically)75 2432 y(included)d(in)g(y)o(our)h(pap)q(er)h(using)f(the)g(correct)f(st) o(yle.)26 b(All)16 b(references)h(will)g(automatically)f(get)75 2532 y(sorted)d(and)h(correctly)e(n)o(um)o(b)q(ered)f(if)h(there)h(are) g(more)f(than)h(one)h(pap)q(er)f(from)f(the)h(same)f(author)75 2632 y(p)q(er)i(y)o(ear.)20 b(The)15 b(appropriate)g(st)o(yle)e(will)g (b)q(e)h(c)o(hosen)h(dep)q(ending)f(on)h(the)f(t)o(yp)q(e)g(of)g (citation)g(suc)o(h)75 2731 y(as)j(articles,)e(b)q(o)q(oks,)i(pro)q (ceedings,)f(theses)g(or)h(talks.)963 2856 y(1)p eop %%Page: 2 2 2 1 bop 148 42 a Fh(SEG)21 b(curren)o(tly)e(pro)o(vides)h(all)g(Geoph)o (ysics)h(articles)e(up)i(to)g(1992)h(on)f(CDR)o(OM,)f(also)h(in)75 141 y(the)15 b(previous)f(y)o(ear)g(SEG)i(published)e(indices)g(of)h (Geoph)o(ysics,)f(The)h(Leading)h(Edge,)f(SEG)g(Ab-)75 241 y(stracts,)g(SEG)h(Bo)q(oks)g(and)f(the)g(publications)g(of)g(asso) q(ciated)h(geoph)o(ysical)e(organizations.)22 b(All)75 340 y(those)14 b(data)h(bases)f(can)g(b)q(e)f(easily)g(con)o(v)o(erted) f(in)o(to)i(B)p Ff(ib)p Fh(T)1137 351 y(E)1163 340 y(X)g(\014les.)19 b(The)14 b(Stanford)h(Exploration)75 440 y(Pro)s(ject)20 b(has)i(used)e(this)h(metho)q(d)f(since)g(1991)i(and)g(is)e(happ)o(y)h (to)g(pro)o(vide)f(SEG)h(with)g(those)75 540 y(to)q(ols.)148 639 y(Y)l(ou)c(do)h(not)f(need)g(to)g(rely)g(on)g(outside)g(B)p Ff(ib)p Fh(T)1021 650 y(E)1048 639 y(X)g(databases,)h(but)f(y)o(ou)g (can)g(easily)g(create)75 739 y(y)o(our)e(o)o(wn)g(B)p Ff(ib)p Fh(T)391 750 y(E)418 739 y(X)g(\014les.)20 b(A)o(t)15 b(the)f(end)h(of)h(this)f(section)g(the)f(\014le)h Fg(segmaster.)o(bi)o (b)d Fh(is)j(included)75 838 y(as)k(an)g(example.)25 b(F)l(or)19 b(more)e(details)h(ha)o(v)o(e)f(a)i(lo)q(ok)g(in)f(Lamp)q (ort's)g(L)1367 832 y Ff(a)1391 838 y Fh(T)1418 853 y(E)1446 838 y(X)g(guide.)27 b(\(Lamp)q(ort,)75 938 y(1985\))454 1129 y Fe(HO)o(W)17 b(TO)h(USE)g(BIBLIOGRAPHIES)h(IN)e Fd(L)1390 1123 y Fc(a)1411 1129 y Fd(T)1436 1143 y(E)1462 1129 y(X)148 1284 y Fh(L)160 1278 y Ff(a)184 1284 y Fh(T)211 1299 y(E)238 1284 y(X)31 b(allo)o(ws)f(to)h(refer)f(to)h(published)g (material)d(using)j(the)g Fb(n)p Fg(cite)p Fb(f)24 b(g)31 b Fh(command.)75 1384 y(The)d(SEG)g(st)o(yle)e(\014le)h(augmen)o(ts)f (that)i(b)o(y)f(another)h(command)e Fb(n)p Fg(shortcite)o Fb(f)d(g)p Fh(,)30 b(whic)o(h)75 1484 y(only)24 b(displa)o(ys)g(the)g (y)o(ear)g(and)h(not)f(the)h(author)g(names.)44 b(F)l(or)25 b(example)d(to)i(cite)g(the)g(\014rst)75 1583 y(article)29 b(in)g(the)h(bibliograph)o(y)f(that)i(is)f(sho)o(wn)g(b)q(elo)o(w)g (\(Landes,)k(1966\),)g(use)c(the)g(com-)75 1683 y(mand)f Fg(\\cite{lan6)o(6})o Fh(.)59 b(The)30 b(citation)f(k)o(ey)f Fg(lan66)g Fh(is)h(the)h(second)g(argumen)o(t)e(to)i(the)75 1783 y Fg(\\bibitem[t)o(ag])o({c)o(ita)o(tio)o(n)23 b(key})15 b Fh(command.)20 b(The)d(second)g(t)o(yp)q(e)f(of)h(citation:)22 b(\(1966\))c(can)75 1882 y(b)q(e)i(in)o(v)o(ok)o(ed,)e(using)i Fg(\\shotcite)o({la)o(n6)o(6})p Fh(.)28 b(Those)20 b(t)o(w)o(o)f (commands)f(go)o(v)o(ern)h(ho)o(w)h(y)o(ou)f(w)o(an)o(t)75 1982 y(to)g(cite)f(material)e(in)j(y)o(our)f(text.)28 b(A)o(t)18 b(the)g(end)h(of)g(y)o(our)f(pap)q(er)h(there)f(has)i(to)f (b)q(e)g(a)g(list)f(of)h(all)75 2081 y(cited)g(articles.)33 b(The)21 b(standard)h(w)o(a)o(y)e(in)g(L)887 2075 y Ff(a)911 2081 y Fh(T)938 2096 y(E)965 2081 y(X)g(is)g(to)h(ha)o(v)o(e)f(all)g (cited)f(en)o(tries)h(listed)f(in)h(the)75 2181 y Fg(thebibliog)o(rap)o (hy)d Fh(en)o(vironmen)o(t.)30 b(After)20 b(the)g(CONCLUSIONS)f(and)i (A)o(CKNO)o(WLEDG-)75 2281 y(MENTS,)16 b(the)g(reference)e(list)i(will) f(app)q(ear)i(b)o(y)f(t)o(yping:)75 2370 y Fg(\\begin{the)o(bib)o(li)o (ogr)o(aph)o(y}{)o(0})75 2430 y(\\bibitem[L)o(and)o(es)o(,)23 b(1966]{lan)o(66})75 2490 y(Landes,)g(K.)i(K.,)f(1966,)g(A)i(scrutiny)c (of)j(the)g(abstract,)d({II}:)i(AAPG)g(Bull.,)f({\\bf)i(50},)75 2551 y(1992.)75 2611 y(\\bibitem[L)o(ind)o(se)o(y,)d(1993]{linds)o(ey9) o(4})75 2671 y(Lindsey,)h(J.)i(P,)f(Jr.,)h(Instructi)o(ons)d(to)j (authors:)d(Geophysics,)g({\\bf)i(58},)g(2-9.)75 2731 y(\\end{thebi)o(bli)o(og)o(rap)o(hy})963 2856 y Fh(2)p eop %%Page: 3 3 3 2 bop 148 42 a Fh(The)16 b(result)g(will)f(b)q(e)i(the)f(follo)o (wing:)797 196 y Fe(REFERENCES)75 315 y Fh(Landes,)h(K.)f(K.,)f(1966,)i (A)f(scrutin)o(y)f(of)i(the)f(abstract,)g(I)q(I:)g(AAPG)f(Bull.,)g Fj(50)p Fh(,)g(1992.)75 417 y(Lindsey)l(,)h(J.)f(P)l(,)h(Jr.,)g (Instructions)g(to)h(authors:)22 b(Geoph)o(ysics,)15 b Fj(58)p Fh(,)h(2-9.)148 571 y(This)d(requires)e(the)h(author)i(to)f (t)o(yp)q(e)f(in)g(all)g(cited)f(articles.)19 b(P)o(ossibly)12 b(rep)q(eating)h(it)f(for)h(other)75 670 y(publications)18 b(whic)o(h)f(require)g(sligh)o(t)h(st)o(yle)f(c)o(hanges.)27 b(An)18 b(alternativ)o(e)f(w)o(a)o(y)h(with)g(B)p Ff(ib)p Fh(T)1761 681 y(E)1787 670 y(X)g(is)75 770 y(sho)o(wn)f(in)f(the)g (next)g(section)f(\(whic)o(h)h(a)o(v)o(oids)g(t)o(yping)g(those)g (in\).)302 964 y Fe(HO)o(W)h(TO)h(USE)g Fd(B)p Fc(ib)p Fd(T)763 974 y(E)789 964 y(X)33 b Fe(TO)18 b(CREA)l(TE)g (BIBLIOGRAPHIES)148 1083 y Fh(In)23 b(con)o(trast)g(to)h(the)f (previous)g(section)f(y)o(ou)h(could)g(ha)o(v)o(e)f(put)i(the)f(t)o(w)o (o)g(en)o(tries)f(in)g(the)75 1143 y(follo)o(wing)16 b(form)f(in)h(a)h(\014le)e Fg(segmaster.b)o(ib)o Fh(:)75 1245 y Fg(@ARTICLE{l)o(an6)o(6,)152 1305 y(author)23 b(=)j({K.)e(K.)h(Landes},)152 1366 y(journal)e(=)i({AAPG)f(Bull.},)152 1426 y(title)g(=)h({A)g(scrutiny)e(of)h(the)h(abstract,)d({II}},)152 1486 y(volume)h(=)j({50},)152 1546 y(page=)e({1992})152 1606 y(year)g(=)h({1966})75 1667 y(})75 1727 y(@ARTICLE{l)o(ind)o(se)o (y94)o(,)152 1787 y(author)e(=)j({J.)e(P.)h(Jr.)g(Lindsey},)152 1847 y(journal)e(=)i({Geophysics)o(},)152 1907 y(title)f(=)h ({Instructi)o(ons)d(to)j(authors},)152 1967 y(volume)e(=)j({58},)152 2028 y(pages)e(=)h({2-9},)152 2088 y(year)f(=)h({1993})75 2148 y(})148 2289 y Fh(All)18 b(en)o(tries)g(start)i(with)f(some)g(t)o (yp)q(e)g(iden)o(ti\014er,)f(suc)o(h)h(as)h Fg(@ARTICLE)p Fh(,)c(that)j(will)g(describ)q(e)75 2389 y(what)i(kind)f(of)g (publication)g(it)f(is.)33 b(The)20 b(\014rst)h(item)d(after)i(that)h (is)f(the)g(citation)f(k)o(ey)g Fg(lan66)p Fh(.)75 2488 y(This)c(is)f(the)g(k)o(ey)g(y)o(ou)g(use)g(to)h(refer)f(to)h(the)f(en) o(try)g(and)h(with)f(whic)o(h)g(y)o(ou)h(cite)e(the)h(do)q(cumen)o(t)f (in)75 2588 y(y)o(our)19 b(pap)q(er)g(\()p Fg(\\cite{lan)o(66})o Fh(\).)26 b(F)l(ollo)o(wing)18 b(that)h(are)g(descriptiv)o(e)d(k)o(eyw) o(ords,)j(lik)o(e)e Fg(author,)75 2688 y(title,)23 b(volume,)g(etc.)p Fh(.)h(These)18 b(k)o(eyw)o(ords)f(will)f(v)m(ary)i(with)g(the)f(t)o (yp)q(e)g(of)h(publication.)25 b(F)l(or)963 2856 y(3)p eop %%Page: 4 4 4 3 bop 75 42 a Fh(more)12 b(details)h(lo)q(ok)h(at)g(Lamp)q(ort's)g(L) 751 36 y Ff(a)775 42 y Fh(T)802 57 y(E)829 42 y(Xguide)f(\(1985\))i (and)f(the)f(\014le)g Fg(segmaster.)o(bi)o(b)p Fh(,)e(whic)o(h)75 141 y(con)o(tains)16 b(examples)f(ho)o(w)h(to)h(write)e(y)o(our)i(o)o (wn)f(B)p Ff(ib)p Fh(T)1081 152 y(E)1108 141 y(X)g(en)o(tries.)148 241 y(Instead)j(of)h(t)o(yping)e(the)h(bibliograph)o(y)g(in)o(to)g(y)o (our)g(pap)q(er)h(\(as)f(the)g(last)h(section)e(did\))h(y)o(ou)75 340 y(no)o(w)e(ha)o(v)o(e)e(merely)f(to)i(put)h(a)f(single)g(line:)75 466 y Fg(\\bibliogra)o(phy)o({s)o(egm)o(ast)o(er})148 591 y Fh(That)k(will)d(tell)h(L)466 585 y Ff(a)490 591 y Fh(T)517 606 y(E)544 591 y(X)h(to)g(insert)f(the)h(bibliograph)o(y)f (in)h(y)o(our)f(pap)q(er.)30 b(The)19 b(argumen)o(t)f(to)75 690 y(the)j Fg(\\bibliograp)o(hy{)o(..)o(.,.)o(..})d Fh(can)j(b)q(e)h(a)g(single)f(\014le)g(name)f(\()p Fg(segmaster)p Fh(\))e(or)k(a)g(comma)75 790 y(separated)c(list)g(of)g(\014lenames)e (\()p Fg(segmaster,)o(my)o(bib)o Fh(\).)23 b(B)p Ff(ib)p Fh(T)1218 801 y(E)1245 790 y(X)18 b(assumes)f(those)h(\014les)g(to)g (ha)o(v)o(e)75 890 y(the)e(extension)g(.bib.)148 989 y(T)l(o)d(get)g(all)f(the)h(references)e(resolv)o(ed)h(y)o(ou)h(ha)o(v) o(e)f(to)h(run)g(y)o(our)f(pap)q(er)i(through:)20 b Fg(latex)p Fh(,)11 b(then)75 1089 y(through)20 b Fg(bibtex)p Fh(.)27 b Fg(latex)17 b Fh(creates)h(a)h Fg(.aux)f Fh(\014le.)28 b Fg(bibtex)17 b Fh(uses)i(that)g Fg(.aux)f Fh(\014le)g(and)h(creates) 75 1188 y(a)f Fg(.bbl)e Fh(\014le.)23 b(This)18 b(bibliograph)o(y)f (\014le)f Fg(.bbl)g Fh(con)o(tains)i(all)e(the)h(en)o(tries)g(that)g(y) o(ou)g(w)o(ould)h(ha)o(v)o(e)75 1288 y(originally)c(had)g(to)h(t)o(yp)q (e)f(in)g(b)o(y)g(hand.)21 b(The)14 b(biggest)h(adv)m(an)o(tage)h(is)e (ho)o(w)o(ev)o(er,)f(that)h(y)o(ou)h(do)g(not)75 1388 y(ha)o(v)o(e)g(to)i(w)o(orry)e(ab)q(out)j(st)o(ylistic)c(errors.)21 b(It)16 b(will)f(b)q(e)h(correct)f({)h(the)g(SEG)h(st)o(yle)d(\014le)i (tak)o(es)f(care)75 1487 y(of)21 b(that.)34 b(T)l(o)21 b(get)g(this)f(st)o(ylistic)f(b)q(eha)o(vior,)i(y)o(our)f(do)q(cumen)o (t)f(m)o(ust)g(con)o(tain)i(the)f(command)75 1587 y Fg(\\bibliogra)o (phy)o(st)o(yle)o({se)o(g})p Fh(.)d(Once)d(y)o(ou)g(ha)o(v)o(e)f(the)h Fg(.bbl)f Fh(\014le)h(created,)g(y)o(ou)g(do)g(not)h(ha)o(v)o(e)f(to)75 1687 y(run)h Fg(bibtex)d Fh(again;)k(y)o(ou)e(just)h(use)f Fg(latex)f Fh(the)i(same)e(w)o(a)o(y)h(as)i(usual.)21 b(Y)l(ou)14 b(only)g(ha)o(v)o(e)g(to)h(rerun)75 1786 y Fg(bibtex)e Fh(again,)i(if)g(y)o(ou)g(w)o(an)o(t)f(to)i(c)o(hange)f (\(add)g(or)g(delete\))f(cited)g(pap)q(ers)i(in)e(y)o(our)h(man)o (uscript.)630 1978 y Fe(EXAMPLES)k(OF)e(CIT)l(A)l(TIONS)148 2133 y Fh(This)i(section)f(sho)o(ws)h(man)o(y)e(examples)g(\(including) g(the)h(ones)h(giv)o(en)f(in)g(\\Instructions)h(to)75 2233 y(the)h(authors"\))i(of)f(citing)f(relev)m(an)o(t)f(published)h (material.)32 b(The)21 b Fb(n)p Fg(cite)e Fh(command)f(tak)o(es)i(as)75 2333 y(argumen)o(t)15 b(a)i Fg(key)p Fh(,)e(that)i(iden)o(ti\014es)e(a) i(bibliograph)o(y)f(en)o(try)l(.)k(It)c(is)h(easiest)f(if)g(y)o(ou)g (compare)f(the)75 2432 y(follo)o(wing)h(citations)f(with)h(the)g (original)f(bibliograph)o(y)h(\014le,)f(whic)o(h)g(is)h(listed)e(as)j (an)f(app)q(endix.)148 2532 y(I)g(am)f(citing)h(a)h(b)q(o)q(ok)g(in)f (the)h(full)e(form)g(\(Lamp)q(ort,)h(1985\))i(,)e(while)g(here)f(I)h (am)g(citing)f(only)75 2632 y(the)j(y)o(ear)g(of)h(the)f(b)q(o)q(ok)i (\(1985\).)29 b(I)18 b(w)o(as)h(using)f(the)g(command:)24 b Fg(\\cite{lamp)o(ort)o(})15 b Fh(and)k(then)75 2731 y Fg(\\shortcite)o({la)o(mp)o(ort)o(})p Fh(.)f(The)f(en)o(try)e(in)h (the)g(B)p Ff(ib)p Fh(T)1072 2742 y(E)1098 2731 y(X)g(\014le)g(is)g(as) h(follo)o(w:)963 2856 y(4)p eop %%Page: 5 5 5 4 bop 75 42 a Fg(@BOOK{lamp)o(ort)o(,)152 102 y(author)23 b(=)j({L[eslie])c(Lamport},)152 162 y(title)i(=)h({\\LaTeX\\)48 b(user's)24 b(guide)g(\\&)g(reference)f(manual},)152 222 y(year)h(=)h({1985},)152 282 y(publisher)d(={Addison-W)o(es)o(ley)g (Publishing)g(Company})75 342 y(})148 496 y Fh(Here)i(I)h(cite)f(an)i (article)e(the)h(same)f(w)o(a)o(y)l(,)i(once)f(full)f(\(Zonge)i(and)g (Wynn,)h(1975\))f(and)75 596 y(once)e(just)h(the)f(y)o(ear)g(\(1975\).) 48 b(Articles)23 b(with)h(more)f(than)i(t)o(w)o(o)g(authors)h(are)e (cited)g(using)75 695 y(the)d(correct)g(st)o(yle)f(\(Lo)o(v)o(eridge)h (et)g(al.,)g(1984\).)38 b(This)22 b(is)f(the)g(citation)g(of)h(a)g (magazine)e(arti-)75 795 y(cle)e(\(Lindsey)l(,)h(1988\),)h(a)f(M.Sc.)29 b(thesis)18 b(\(Lo)q(dha,)j(1974\),)g(a)e(paten)o(t)g(\(Anstey)l(,)f (1976\),)i(a)g(b)q(o)q(ok)75 895 y(\(Da)o(vis)i(and)g(Rabino)o(witz,)h (1975\),)h(an)f(article)d(in)i(a)g(b)q(o)q(ok)i(\(Bak)o(er)c(and)j (Carter,)g(1972\),)i(an)75 994 y(SEG)f(pap)q(er)h(\(Constable,)h (1986\))f(and)f(\014nally)g(an)g(SEG)g(talk)g(\(Hubbard,)h(1979\).)46 b(Here)22 b(I)75 1094 y(am)17 b(citing)h(m)o(ultiple)d(pap)q(ers)k(in)g (one)f(citation:)25 b(\(Hubbard,)19 b(1979;)i(Constable,)e(1986\),)h (using)75 1193 y Fg(\\cite{segt)o(alk)o(,s)o(ega)o(bst)o(rac)o(t})o Fh(.)e(Be)d(sure)h(not)g(to)g(lea)o(v)o(e)e(spaces)i(in)f(the)g(comma)f (separated)75 1293 y(list,)19 b Fg(\\cite{segt)o(alk)o(,\\)j (segabstrac)o(t})16 b Fh(will)i(NOT)h(w)o(ork.)31 b(Letters)19 b(will)g(b)q(e)g(added)h(auto-)75 1393 y(matically)13 b(to)k(the)e(y)o(ear)h(if)f(an)i(author)g(has)f(t)o(w)o(o)g (publications)g(in)f(the)h(same)f(y)o(ear,)g(suc)o(h)h(as)g(the)75 1492 y(articles)f(b)o(y)h(Claerb)q(out)h(\(1993b;)g(1993a\).)148 1592 y(T)l(o)c(let)e(y)o(ou)h(see)g(all)f(referenced)g(articles,)g(I)h (put)g Fg(\\bibliograp)o(hy{)o(se)o(gma)o(ste)o(r})d Fh(here.)19 b(This)75 1691 y(bibliograph)o(y)h(con)o(tains)g(all)g (references)e(giv)o(en)i(in)g(the)g(\\Instruction)g(to)g(the)g (authors",)j(that)75 1791 y(app)q(ears)17 b(in)f(the)g(\014rst)h(issue) f(of)h(eac)o(h)e(v)o(olume)f(of)j(Geoph)o(ysics.)797 1985 y Fe(REFERENCES)75 2144 y Fh(Anstey)l(,)k(N.,)h(1976,)h(Seismic)c (delineation)h(of)i(oil)f(and)g(gas)i(reserv)o(oirs)d(using)i(b)q (orehole)f(geo-)126 2243 y(phones:)h(Canadian)c(P)o(aten)o(ts)e(1)h (106)g(957)g(and)g(1)g(114)g(937.)75 2385 y(Bak)o(er,)22 b(D.)f(W.,)i(and)f(Carter,)h(N.)e(L.,)i(1972,)h(Seismic)c(v)o(elo)q (cit)o(y)g(anisotrop)o(y)i(calculated)f(for)126 2484 y(ultrama\014c)13 b(minerals)e(and)j(aggregates,)h Fi(in)f Fh(Heard,)f(H.)g(C.,)g(Borg,)h(I.)f(V.,)f(Carter,)i(N.)f(L.,)g(and)126 2584 y(Raleigh,)18 b(C.)f(B.,)g(Eds.,)h(Flo)o(w)f(and)h(fracture)g(of)g (ro)q(c)o(ks:)24 b(Am.)15 b(Geoph)o(ys.)j(Union,)f(Geoph)o(ys.)126 2683 y(Mono.,)f(16,)h(157{166.)963 2856 y(5)p eop %%Page: 6 6 6 5 bop 75 42 a Fh(Constable,)23 b(S.)f(C.,)h(1986,)h(O\013shore)f (electromagnetic)c(surv)o(eying)i(tec)o(hniques:)31 b(56th)23 b(Ann.)126 141 y(In)o(ternat.)16 b(Mtg.,)f(So)q(c.)h(Expl.)g(Geoph)o (ys.,)f(Expanded)i(Abstracts,)f(81{82.)75 282 y(Da)o(vis,)g(P)l(.)g (J.,)g(and)i(Rabino)o(witz,)d(P)l(.,)h(1975,)i(Metho)q(ds)f(of)g(n)o (umerical)d(in)o(tegration:)22 b(Academic)126 382 y(Press)17 b(Inc.)75 523 y(Hubbard,)h(T.)f(P)l(.,)h(1979,)h(Decon)o(v)o(olution)e (of)h(surface)g(recorded)f(data)h(using)h(v)o(ertical)c(seismic)126 623 y(pro\014les:)22 b(Presen)o(ted)15 b(at)i(the)f(49th)h(Ann.)e(In)o (ternat.)h(Mtg.,)f(So)q(c.)h(Expl.)g(Geoph)o(ys.)75 764 y(Lamp)q(ort,)f(L.,)g(1985,)i(L)502 758 y Ff(a)526 764 y Fh(T)553 779 y(E)580 764 y(X)e(user's)g(guide)g(&)g(reference)f(man)o (ual:)19 b(Addison-W)l(esley)c(Publish-)126 863 y(ing)i(Compan)o(y)l(.) 75 1004 y(Landes,)g(K.)f(K.,)f(1966,)i(A)f(scrutin)o(y)f(of)i(the)f (abstract,)g(I)q(I:)g(AAPG)f(Bull.,)g Fj(50)p Fh(,)g(1992.)75 1146 y(Lindsey)l(,)g(J.)g(P)l(.,)g(1988,)i(Measuring)e(w)o(a)o(v)o (elet)f(phase)i(from)f(seismic)e(data:)21 b(The)16 b(Leading)g(Edge,) 126 1245 y Fj(7)p Fh(,)g(no.)h(7,)f(10{16.)75 1386 y(Lo)q(dha,)h(G.)e (S.,)g(1974,)i(Quan)o(titativ)o(e)d(in)o(terpretation)h(of)g(arib)q (orne)h(electromagnetic)d(resp)q(onse)126 1486 y(for)k(a)g(spherical)e (mo)q(del:)20 b(Masters's)c(thesis,)g(Univ)o(ersit)o(y)e(of)i(T)l(oron) o(to.)75 1627 y(Lo)o(v)o(eridge,)c(M.)g(M.,)h(P)o(ark)o(es,)f(G.)h(E.,) f(Hatton,)i(L.,)f(and)g(W)l(orthington,)h(M.)e(H.,)g(1984,)j(E\013ects) e(of)126 1727 y(marine)f(source)h(arra)o(y)g(directivit)o(y)d(on)j (seismic)e(data)j(and)f(source)g(signature)g(decon)o(v)o(olution:)126 1826 y(First)j(Break,)f Fj(2)p Fh(,)h(no.)h(7,)f(16{23.)75 1967 y(Zonge,)j(K.)g(L.,)g(and)g(Wynn,)g(J.)f(C.,)h(1975,)i(EM)d (coupling,)h(its)g(in)o(trinsic)e(v)m(alue,)i(its)f(remo)o(v)m(al,)126 2067 y(and)f(the)f(cultural)g(coupling)g(problem:)k(Geoph)o(ysics,)15 b Fj(40)p Fh(,)h(831{850.)75 2208 y(Claerb)q(out,)31 b(J.)c(F.,)i(1993a,)j(3-d)d(lo)q(cal-monoplane)e(annihilator:)44 b(Stanford)29 b(Exploration)126 2308 y(Pro)s(ject)16 b(Rep)q(ort,)g Fj(77)p Fh(,)g(19{26.)75 2449 y(Claerb)q(out,)i(J.)f (F.,)g(1993b,)i(Steep-dip)e(decon)o(v)o(olution:)23 b(Stanford)18 b(Exploration)g(Pro)s(ject)f(Re-)126 2549 y(p)q(ort,)g Fj(77)p Fh(,)f(245{256.)963 2856 y(6)p eop %%Page: 7 7 7 6 bop 707 42 a Fe(APPENDIX:)19 b(LISTING)148 199 y Fh(I)c(list)h(the)f(complete)e(bibliograph)o(y)j(\014le,)e(that)j(is)e (used)h(b)o(y)f(this)h(pap)q(er.)21 b(This)16 b(\014le)f(could)h(b)q(e) 75 299 y(used)k(to)g(create)f(man)o(y)g(di\013eren)o(t)g(reference)f (st)o(yles.)31 b(Please)19 b(compare)g(these)g(en)o(tries)g(to)h(the)75 398 y(previous)c(bibliographies.)75 504 y Fg(@ARTICLE{l)o(an6)o(6,)152 564 y(author)23 b(=)j({K[])e(K[])g(Landes},)152 624 y(journal)f(=)i ({AAPG)f(Bull.},)152 685 y(title)g(=)h({A)g(scrutiny)e(of)h(the)h (abstract,)d({II}},)152 745 y(volume)h(=)j({50},)152 805 y(pages={199)o(2})o(,)152 865 y(year)e(=)h({1966})75 925 y(})75 986 y(@ARTICLE{l)o(ind)o(se)o(y93)o(,)152 1046 y(author)e(=)j({J.)e(P.)h(Jr.)g(Lindsey},)152 1106 y(journal)e(=)i({Geophysics)o(},)152 1166 y(title)f(=)h({Instructi)o (ons)d(to)j(authors},)152 1226 y(volume)e(=)j({58},)152 1287 y(pages)e(=)h({2-9},)152 1347 y(year)f(=)h({1993})75 1407 y(})75 1467 y(@ARTICLE{s)o(ega)o(rt)o(icl)o(e,)152 1527 y(author)e(=)j({K[])e(L[])g(Zonge)g(and)h(J[])f(C[])h(Wynn},)152 1588 y(journal)e(=)i({Geophysics)o(},)152 1648 y(title)f(=)h({{EM})f (coupling,)e(its)j(intrinsic)d(value,)h(its)i(removal,)408 1708 y(and)g(the)f(cultural)f(coupling)g(problem},)152 1768 y(volume)g(=)j({40},)152 1828 y(pages)e(=)h({831--850})o(,)152 1888 y(year)f(=)h({1975})75 1949 y(})75 2009 y(@ARTICLE{s)o(egm)o(ag)o (azi)o(ne,)152 2069 y(author)e(=)j({J[])e(P[])g(Lindsey},)152 2129 y(journal)f(=)i({The)f(Leading)f(Edge},)152 2189 y(title)h(=)h({Measuring)d(wavelet)h(phase)h(from)g(seismic)f(data},) 152 2250 y(volume)g(=)j({7},)152 2310 y(number)d(=)j({7},)152 2370 y(pages)e(=)h({10-16},)152 2430 y(year)f(=)h({1988})75 2490 y(})75 2551 y(@BOOK{segb)o(ook)o(,)152 2611 y(author)e(=)j({P[])e (J[])g(Davis)g(and)h(P[])f(Rabinowitz)o(},)152 2671 y(title)g(=)h ({Methods)e(of)i(numerical)d(integratio)o(n})o(,)152 2731 y(year)i(=)h({1975},)963 2856 y Fh(7)p eop %%Page: 8 8 8 7 bop 152 42 a Fg(publisher)22 b(={Academic)g(Press)i(Inc.})75 102 y(})75 162 y(@INBOOK{in)o(boo)o(k,)178 222 y(author={D)o(.)e(W.)j (Baker)f(and)h(N.)g(L.)g(Carter},)178 282 y(year={197)o(2})o(,)178 342 y(editor={)d(H.)j(C.)g(Heard)f(and)g(I.)h(V.)g(Borg)f(and)h(N.)g (L.)g(Carter)e(and)i(C.)g(B.)f(Raleigh},)178 403 y(title={Se)o(is)o (mic)e(velocity)h(anisotrop)o(y)g(calculate)o(d)g(for)h(ultramafic)e (minerals)383 463 y(and)i(aggregates)o(},)178 523 y(booktitle)o(={)o (Flo)o(w)f(and)h(fracture)f(of)i(rocks},)178 583 y(publisher)o(={)o (Am.)d(Geophys.)h(Union},)178 643 y(series={G)o(eo)o(phy)o(s.)f (Mono.},)178 704 y(volume={1)o(6})o(,)178 764 y(pages={15)o(7-)o(166)o (})75 824 y(})75 884 y(@MASTERSTH)o(ESI)o(S{)o(seg)o(ms,)152 944 y(author)h(=)j({G[unter])c(S[ergei])h(Lodha},)152 1005 y(title)h(=)h({Quantitat)o(ive)d(interpreta)o(ti)o(on)g(of)j (ariborne)383 1065 y(electroma)o(gne)o(ti)o(c)e(response)f(for)j(a)g (spherical)e(model},)152 1125 y(school)g(=)j({Universi)o(ty)c(of)j (Toronto},)152 1185 y(year)f(=)h({1974})75 1245 y(})75 1306 y(@INPROCEED)o(ING)o(S{)o(seg)o(tal)o(k,)152 1366 y(author={T.)d(P.)j(Hubbard},)152 1426 y(howpublish)o(ed)d(=)j({talk},) 152 1486 y(year=)49 b({1979},)152 1546 y(title)24 b(={Deconvo)o(lut)o (ion)e(of)j(surface)e(recorded)f(data)j(using)357 1606 y(vertical)e(seismic)g(profiles})o(,)152 1667 y(meeting={4)o(9t)o(h)g (Ann.)h(Internat.)e(Mtg.},)152 1727 y(publisher=)o({S)o(oc.)g(Expl.)i (Geophys.},)75 1787 y(})75 1847 y(@INPROCEED)o(ING)o(S{)o(seg)o(abs)o (tra)o(ct)o(,)152 1907 y(author={S[)o(ul)o(liv)o(an])e(C[lay])h (Constable},)152 1968 y(year=)49 b({1986},)152 2028 y(title)24 b(={Offshor)o(e)f(electroma)o(gne)o(tic)f(surveying)g(techniques)o(},) 152 2088 y(meeting={5)o(6t)o(h)h(Ann.)h(Internat.)e(Mtg.},)152 2148 y(booktitle=)o({E)o(xpa)o(nde)o(d)h(Abstracts)o(},)152 2208 y(publisher=)o({S)o(oc.)f(Expl.)i(Geophys.},)152 2269 y(pages={81-)o(82)o(})75 2329 y(})75 2389 y(@ARTICLE{p)o(ate)o(nt) o(,)126 2449 y(author={N.)e(Anstey},)126 2509 y(title={Seis)o(mi)o(c)h (delineati)o(on)f(of)j(oil)g(and)f(gas)h(reservoirs)d(using)306 2570 y(borehole)g(geophones},)126 2630 y(year={1976})o(,)126 2690 y(journal={Ca)o(na)o(dia)o(n)h(Patents)g(1)i(106)g(957)f(and)h(1)g (114)f(937})963 2856 y Fh(8)p eop %%Page: 9 9 9 8 bop 75 42 a Fg(})75 102 y(@PHDTHESIS)o({se)o(gp)o(hd,)152 162 y(author)23 b(=)j({J[oe])d(Dellinger})o(,)152 222 y(title)h(=)h({Anisotrop)o(ic)d(Wave)i(Propagation)o(},)152 282 y(school)f(=)j({Stanford)c(University)o(},)152 342 y(year)i(=)h({1990})75 403 y(})75 523 y(@ARTICLE{m)o(aga)o(zi)o(ne3)o (,)126 583 y(author={M.)d(M.)51 b(Loveridge)d(and)24 b(G.)h(E.)51 b(Parkes)331 643 y(and)25 b(L.)76 b(Hatton)49 b(and)25 b(M.)g(H.)50 b(Worthingto)o(n)23 b(},)126 704 y(title={Effe)o(ct)o(s)g(of)i(Marine)e(Source)h(Array)f(Directivity)f (on)306 764 y(Seismic)h(Data)h(and)g(Source)g(Signature)e(Deconvoluti)o (on)o(},)126 824 y(year=1984,)126 884 y(journal={Fi)o(rs)o(t)h(Break},) 126 944 y(volume=2,)126 1005 y(number=7,)126 1065 y(pages={16-2)o(3})75 1125 y(})75 1185 y(@BOOK{lamp)o(ort)o(,)152 1245 y(author)g(=)j ({L[eslie])c(Lamport},)152 1306 y(title)i(=)h({{\\LaTeX\\)48 b(user's)23 b(guide)h(\\&)h(reference)d(manual}},)152 1366 y(year)i(=)h({1985},)152 1426 y(publisher)d(={Addison-W)o(es)o (ley)g(Publishing)g(Company})75 1486 y(})963 2856 y Fh(9)p eop %%Page: 10 10 10 9 bop 840 42 a Fa(FIGURES)951 2856 y Fh(10)p eop %%Trailer end userdict /end-hook known{end-hook}if %%EOF ------------------------------------------------------------------------------- FILE: "easybib.tex" ------------------------------------------------------------------------------- % keywords: bibtex latex tex bibliography references % \documentstyle[seg,manuscript]{revtex} % This line gives a manuscript style. % %\documentstyle[seg]{revtex} % Uncomment this line for a preprint style. % \def\BibTeX{\rm B{\sc ib}\TeX} \begin{document} \bibliographystyle{seg} \title{Referencing and bibliographies \\ in SEG publications made easy} \author{Martin Karrenbach} \address{Stanford Exploration Project, 366 Mitchell, Stanford, CA 94305, U.S.A.} \maketitle \begin{abstract} When preparing a paper for publication, authors usually struggle with the format and style of references to related articles. First they have to make sure that previous publications are cited correctly in the body of the paper. Second they have to make sure that the complete list of cited publications obeys the stylistic demands of the SEG editor. To make it as easy as possible for the author and also to enforce stylistic consistency we require that the {\tt Bibliography} environment offer by \LaTeX\ is used. SEG provides guidelines and examples of citations in this article. \end{abstract} \section{Philosophy} We emphatically encourage authors to take advantage of the \BibTeX\ style file that the SEG editor provides. If you are using \TeX\ and \LaTeX\ already, you should also have \BibTeX\ available to you. If you do not, we encourage you to get hold of the latest \TeX\ distribution -- \BibTeX\ is included. \BibTeX\ saves the authors of scientific articles a lot of work, by converting \BibTeX\ database entries into bibliographic entries used in \LaTeX\ . Those get automatically included in your paper using the correct style. All references will automatically get sorted and correctly numbered if there are more than one paper from the same author per year. The appropriate style will be chosen depending on the type of citation such as articles, books, proceedings, theses or talks. SEG currently provides all Geophysics articles up to 1992 on CDROM, also in the previous year SEG published indices of Geophysics, The Leading Edge, SEG Abstracts, SEG Books and the publications of associated geophysical organizations. All those data bases can be easily converted into \BibTeX\ files. The Stanford Exploration Project has used this method since 1991 and is happy to provide SEG with those tools. You do not need to rely on outside \BibTeX\ databases, but you can easily create your own \BibTeX\ files. At the end of this section the file {\tt segmaster.bib} is included as an example. For more details have a look in Lamport's \LaTeX\ guide. \cite{lamport} \section{How to use bibliographies in \LaTeX\ } \LaTeX\ allows to refer to published material using the {\tt $\backslash$cite\{ \}} command. The SEG style file augments that by another command {\tt $\backslash$shortcite\{ \}}, which only displays the year and not the author names. For example to cite the first article in the bibliography that is shown below \cite{lan66}, use the command \verb+\cite{lan66}+. The citation key {\tt lan66} is the second argument to the \verb+\bibitem[tag]{citation key}+ command. The second type of citation: \shortcite{lan66} can be invoked, using \verb+\shotcite{lan66}+. Those two commands govern how you want to cite material in your text. At the end of your paper there has to be a list of all cited articles. The standard way in \LaTeX\ is to have all cited entries listed in the {\tt thebibliography} environment. After the CONCLUSIONS and ACKNOWLEDGMENTS, the reference list will appear by typing: {\tighten \begin{verbatim} \begin{thebibliography}{0} \bibitem[Landes, 1966]{lan66} Landes, K. K., 1966, A scrutiny of the abstract, {II}: AAPG Bull., {\bf 50}, 1992. \bibitem[Lindsey, 1993]{lindsey94} Lindsey, J. P, Jr., Instructions to authors: Geophysics, {\bf 58}, 2-9. \end{thebibliography} \end{verbatim} } The result will be the following: {\tighten \begin{thebibliography}{0} \bibitem[Landes, 1966]{lan66} Landes, K. K., 1966, A scrutiny of the abstract, {II}: AAPG Bull., {\bf 50}, 1992. \bibitem[Lindsey, 1993]{lindsey94} Lindsey, J. P, Jr., Instructions to authors: Geophysics, {\bf 58}, 2-9. \end{thebibliography} } This requires the author to type in all cited articles. Possibly repeating it for other publications which require slight style changes. An alternative way with \BibTeX\ is shown in the next section (which avoids typing those in). \section{How to use {{\BibTeX\ }} to create bibliographies} In contrast to the previous section you could have put the two entries in the following form in a file {\tt segmaster.bib}: {\tighten \begin{verbatim} @ARTICLE{lan66, author = {K. K. Landes}, journal = {AAPG Bull.}, title = {A scrutiny of the abstract, {II}}, volume = {50}, page= {1992} year = {1966} } @ARTICLE{lindsey94, author = {J. P. Jr. Lindsey}, journal = {Geophysics}, title = {Instructions to authors}, volume = {58}, pages = {2-9}, year = {1993} } \end{verbatim} } All entries start with some type identifier, such as {\tt @ARTICLE}, that will describe what kind of publication it is. The first item after that is the citation key {\tt lan66}. This is the key you use to refer to the entry and with which you cite the document in your paper (\verb+\cite{lan66}+). Following that are descriptive keywords, like {\tt author, title, volume, etc.}. These keywords will vary with the type of publication. For more details look at Lamport's \LaTeX guide \shortcite{lamport} and the file {\tt segmaster.bib}, which contains examples how to write your own \BibTeX\ entries. Instead of typing the bibliography into your paper (as the last section did) you now have merely to put a single line: {\bf \begin{verbatim} \bibliography{segmaster} \end{verbatim} } That will tell \LaTeX\ to insert the bibliography in your paper. The argument to the {\bf \verb+\bibliography{...,...}+} can be a single file name ({\tt segmaster}) or a comma separated list of filenames ({\tt segmaster,mybib}). \BibTeX\ assumes those files to have the extension {.bib}. To get all the references resolved you have to run your paper through: {\tt latex}, then through {\tt bibtex}. {\tt latex} creates a {\tt .aux} file. {\tt bibtex} uses that {\tt .aux} file and creates a {\tt .bbl} file. This bibliography file {\tt .bbl} contains all the entries that you would have originally had to type in by hand. The biggest advantage is however, that you do not have to worry about stylistic errors. It will be correct -- the SEG style file takes care of that. To get this stylistic behavior, your document must contain the command {\bf\verb+\bibliographystyle{seg}+}. Once you have the {\tt .bbl} file created, you do not have to run {\tt bibtex} again; you just use {\tt latex} the same way as usual. % You only have to rerun {\tt bibtex} again, if you want to change (add or delete) cited papers in your manuscript. % %Look at the listings in this paper %if you want to know how this paper and the bibliography file was written. \section{Examples of Citations} This section shows many examples (including the ones given in ``Instructions to the authors'') of citing relevant published material. The {\tt $\backslash$cite} command takes as argument a {\tt key}, that identifies a bibliography entry. It is easiest if you compare the following citations with the original bibliography file, which is listed as an appendix. I am citing a book in the full form \cite{lamport} , while here I am citing only the year of the book \shortcite{lamport}. I was using the command: \verb+\cite{lamport}+ and then \verb+\shortcite{lamport}+. The entry in the \BibTeX\ file is as follow: {\tighten \begin{verbatim} @BOOK{lamport, author = {L[eslie] Lamport}, title = {\LaTeX\ user's guide \& reference manual}, year = {1985}, publisher ={Addison-Wesley Publishing Company} } \end{verbatim} } Here I cite an article the same way, once full \cite{segarticle} and once just the year \shortcite{segarticle}. Articles with more than two authors are cited using the correct style \cite{magazine3}. % %Note that if you want to keep something literal in the title enclose it with %\{\}, that will keep it from being lowercased. % This is the citation of a magazine article \cite{segmagazine}, a M.Sc. thesis \cite{segms}, a patent \cite{patent}, a book \cite{segbook}, an article in a book \cite{inbook}, an SEG paper \cite{segabstract} and finally an SEG talk \cite{segtalk}. Here I am citing multiple papers in one citation: \cite{segtalk,segabstract}, using \verb+\cite{segtalk,segabstract}+. Be sure not to leave spaces in the comma separated list, \verb+\cite{segtalk,\ segabstract}+ will NOT work. Letters will be added automatically to the year if an author has two publications in the same year, such as the articles by Claerbout \shortcite{Claerbout.sep.77.245,Claerbout.sep.77.19}. To let you see all referenced articles, I put \verb+\bibliography{segmaster}+ here. This bibliography contains all references given in the ``Instruction to the authors'', that appears in the first issue of each volume of Geophysics. \nocite{lamport} % uncomment the following line when using bibtex %\bibliography{segmaster} % comment the following lines when using bibtex %%%%%%%%%%%%%%%%%%%%%%%%% %%% this is included from the easybib.bbl file that was generated by bibtex \begin{thebibliography}{} \bibitem[\protect\citeauthoryear{Anstey}{1976}]{patent} Anstey, N., 1976, Seismic delineation of oil and gas reservoirs using borehole geophones: Canadian Patents 1 106 957 and 1 114 937. \bibitem[\protect\citeauthoryear{Baker and Carter}{1972}]{inbook} Baker, D.~W., and Carter, N.~L., 1972, Seismic velocity anisotropy calculated for ultramafic minerals and aggregates, {\it in} Heard, H.~C., Borg, I.~V., Carter, N.~L., and Raleigh, C.~B., Eds., Flow and fracture of rocks: Am. Geophys. Union, Geophys. Mono., 16, 157--166. \bibitem[\protect\citeauthoryear{Constable}{1986}]{segabstract} Constable, S.~C., 1986, Offshore electromagnetic surveying techniques: 56th Ann. Internat. Mtg., Soc. Expl. Geophys., Expanded Abstracts, 81--82. \bibitem[\protect\citeauthoryear{Davis and Rabinowitz}{1975}]{segbook} Davis, P.~J., and Rabinowitz, P., 1975, Methods of numerical integration: Academic Press Inc. \bibitem[\protect\citeauthoryear{Hubbard}{1979}]{segtalk} Hubbard, T.~P., 1979, Deconvolution of surface recorded data using vertical seismic profiles: Presented at the 49th Ann. Internat. Mtg., Soc. Expl. Geophys. \bibitem[\protect\citeauthoryear{Lamport}{1985}]{lamport} Lamport, L., 1985, {\LaTeX\ user's guide \& reference manual}: Addison-Wesley Publishing Company. \bibitem[\protect\citeauthoryear{Landes}{1966}]{lan66} Landes, K.~K., 1966, A scrutiny of the abstract, {II}: AAPG Bull., {\bf 50}, 1992. \bibitem[\protect\citeauthoryear{Lindsey}{1988}]{segmagazine} Lindsey, J.~P., 1988, Measuring wavelet phase from seismic data: The Leading Edge, {\bf 7}, no. 7, 10--16. \bibitem[\protect\citeauthoryear{Lodha}{1974}]{segms} Lodha, G.~S., 1974, Quantitative interpretation of ariborne electromagnetic response for a spherical model: Masters's thesis, University of Toronto. \bibitem[\protect\citeauthoryear{Loveridge \bgroup et al.\egroup }{1984}]{magazine3} Loveridge, M.~M., Parkes, G.~E., Hatton, L., and Worthington, M.~H., 1984, Effects of marine source array directivity on seismic data and source signature deconvolution: First Break, {\bf 2}, no. 7, 16--23. \bibitem[\protect\citeauthoryear{Zonge and Wynn}{1975}]{segarticle} Zonge, K.~L., and Wynn, J.~C., 1975, {EM} coupling, its intrinsic value, its removal, and the cultural coupling problem: Geophysics, {\bf 40}, 831--850. \bibitem[\protect\citeauthoryear{Claerbout}{1993a}]{Claerbout.sep.77.19} Claerbout, J.~F., 1993a, 3-d local-monoplane annihilator: Stanford Exploration Project Report, {\bf 77}, 19--26. \bibitem[\protect\citeauthoryear{Claerbout}{1993b}]{Claerbout.sep.77.245} Claerbout, J.~F., 1993b, Steep-dip deconvolution: Stanford Exploration Project Report, {\bf 77}, 245--256. \end{thebibliography} %%%%%%%%%%%%%%%%%%%%%%%%%% \appendix \section*{Listing} I list the complete bibliography file, that is used by this paper. This file could be used to create many different reference styles. Please compare these entries to the previous bibliographies. {\tighten \begin{verbatim} @ARTICLE{lan66, author = {K[] K[] Landes}, journal = {AAPG Bull.}, title = {A scrutiny of the abstract, {II}}, volume = {50}, pages={1992}, year = {1966} } @ARTICLE{lindsey93, author = {J. P. Jr. Lindsey}, journal = {Geophysics}, title = {Instructions to authors}, volume = {58}, pages = {2-9}, year = {1993} } @ARTICLE{segarticle, author = {K[] L[] Zonge and J[] C[] Wynn}, journal = {Geophysics}, title = {{EM} coupling, its intrinsic value, its removal, and the cultural coupling problem}, volume = {40}, pages = {831--850}, year = {1975} } @ARTICLE{segmagazine, author = {J[] P[] Lindsey}, journal = {The Leading Edge}, title = {Measuring wavelet phase from seismic data}, volume = {7}, number = {7}, pages = {10-16}, year = {1988} } @BOOK{segbook, author = {P[] J[] Davis and P[] Rabinowitz}, title = {Methods of numerical integration}, year = {1975}, publisher ={Academic Press Inc.} } @INBOOK{inbook, author={D. W. Baker and N. L. Carter}, year={1972}, editor={ H. C. Heard and I. V. Borg and N. L. Carter and C. B. Raleigh}, title={Seismic velocity anisotropy calculated for ultramafic minerals and aggregates}, booktitle={Flow and fracture of rocks}, publisher={Am. Geophys. Union}, series={Geophys. Mono.}, volume={16}, pages={157-166} } @MASTERSTHESIS{segms, author = {G[unter] S[ergei] Lodha}, title = {Quantitative interpretation of ariborne electromagnetic response for a spherical model}, school = {University of Toronto}, year = {1974} } @INPROCEEDINGS{segtalk, author={T. P. Hubbard}, howpublished = {talk}, year= {1979}, title ={Deconvolution of surface recorded data using vertical seismic profiles}, meeting={49th Ann. Internat. Mtg.}, publisher={Soc. Expl. Geophys.}, } @INPROCEEDINGS{segabstract, author={S[ullivan] C[lay] Constable}, year= {1986}, title ={Offshore electromagnetic surveying techniques}, meeting={56th Ann. Internat. Mtg.}, booktitle={Expanded Abstracts}, publisher={Soc. Expl. Geophys.}, pages={81-82} } @ARTICLE{patent, author={N. Anstey}, title={Seismic delineation of oil and gas reservoirs using borehole geophones}, year={1976}, journal={Canadian Patents 1 106 957 and 1 114 937} } @PHDTHESIS{segphd, author = {J[oe] Dellinger}, title = {Anisotropic Wave Propagation}, school = {Stanford University}, year = {1990} } @ARTICLE{magazine3, author={M. M. Loveridge and G. E. Parkes and L. Hatton and M. H. Worthington }, title={Effects of Marine Source Array Directivity on Seismic Data and Source Signature Deconvolution}, year=1984, journal={First Break}, volume=2, number=7, pages={16-23} } @BOOK{lamport, author = {L[eslie] Lamport}, title = {{\LaTeX\ user's guide \& reference manual}}, year = {1985}, publisher ={Addison-Wesley Publishing Company} } \end{verbatim} } \end{document} ------------------------------------------------------------------------------- FILE: "emconvert" ------------------------------------------------------------------------------- #!/bin/csh -f # this invokes the emacs refer2bibtex mode # the output is written in a file called r2b-out # this file is then moved to the input name with the suffix ".bib" # # you need to modify "elcpckage" to point to the refer2bibtex.elc file # # Dave Nichols # last modified Martin Karrenbach 4-21-1994 set elcpackage = "/usr/local/lib/share/emacs/misc" emacs -batch -l $elcpackage/refer2bibtex.elc $1 -f r2b-batch-convert-buffer -kill echo moving r2b-out to $1:r.bib mv r2b-out $1:r.bib mv r2b-log $1:r.log if( -f r2b-out\~ ) then /bin/rm r2b-out\~ endif if( -f r2b-log\~ ) then /bin/rm r2b-log\~ endif ------------------------------------------------------------------------------- FILE: "epsf.sty" ------------------------------------------------------------------------------- % EPSF.TEX macro file: % Written by Tomas Rokicki of Radical Eye Software, 29 Mar 1989. % Revised by Don Knuth, 3 Jan 1990. % Revised by Tomas Rokicki to accept bounding boxes with no % space after the colon, 18 Jul 1990. % % TeX macros to include an Encapsulated PostScript graphic. % Works by finding the bounding box comment, % calculating the correct scale values, and inserting a vbox % of the appropriate size at the current position in the TeX document. % % To use with the center environment of LaTeX, preface the \epsffile % call with a \leavevmode. (LaTeX should probably supply this itself % for the center environment.) % % To use, simply say % \input epsf % somewhere early on in your TeX file % \epsfbox{filename.ps} % where you want to insert a vbox for a figure % % Alternatively, you can type % % \epsfbox[0 0 30 50]{filename.ps} % to supply your own BB % % which will not read in the file, and will instead use the bounding % box you specify. % % The effect will be to typeset the figure as a TeX box, at the % point of your \epsfbox command. By default, the graphic will have its % `natural' width (namely the width of its bounding box, as described % in filename.ps). The TeX box will have depth zero. % % You can enlarge or reduce the figure by saying % \epsfxsize= \epsfbox{filename.ps} % (or % \epsfysize= \epsfbox{filename.ps}) % instead. Then the width of the TeX box will be \epsfxsize and its % height will be scaled proportionately (or the height will be % \epsfysize and its width will be scaled proportiontally). The % width (and height) is restored to zero after each use. % % A more general facility for sizing is available by defining the % \epsfsize macro. Normally you can redefine this macro % to do almost anything. The first parameter is the natural x size of % the PostScript graphic, the second parameter is the natural y size % of the PostScript graphic. It must return the xsize to use, or 0 if % natural scaling is to be used. Common uses include: % % \epsfxsize % just leave the old value alone % 0pt % use the natural sizes % #1 % use the natural sizes % \hsize % scale to full width % 0.5#1 % scale to 50% of natural size % \ifnum#1>\hsize\hsize\else#1\fi % smaller of natural, hsize % % If you want TeX to report the size of the figure (as a message % on your terminal when it processes each figure), say `\epsfverbosetrue'. % \newread\epsffilein % file to \read \newif\ifepsffileok % continue looking for the bounding box? \newif\ifepsfbbfound % success? \newif\ifepsfverbose % report what you're making? \newif\ifepsfdraft % use draft mode? \newdimen\epsfxsize % horizontal size after scaling \newdimen\epsfysize % vertical size after scaling \newdimen\epsftsize % horizontal size before scaling \newdimen\epsfrsize % vertical size before scaling \newdimen\epsftmp % register for arithmetic manipulation \newdimen\pspoints % conversion factor % \pspoints=1bp % Adobe points are `big' \epsfxsize=0pt % Default value, means `use natural size' \epsfysize=0pt % ditto % \def\epsfbox#1{\global\def\epsfllx{72}\global\def\epsflly{72}% \global\def\epsfurx{540}\global\def\epsfury{720}% \def\lbracket{[}\def\testit{#1}\ifx\testit\lbracket \let\next=\epsfgetlitbb\else\let\next=\epsfnormal\fi\next{#1}}% % \def\epsfgetlitbb#1#2 #3 #4 #5]#6{\epsfgrab #2 #3 #4 #5 .\\% \epsfsetgraph{#6}}% % \def\epsfnormal#1{\epsfgetbb{#1}\epsfsetgraph{#1}}% % \def\epsfgetbb#1{% % % The first thing we need to do is to open the % PostScript file, if possible. % \openin\epsffilein=#1 \ifeof\epsffilein\errmessage{I couldn't open #1, will ignore it}\else % % Okay, we got it. Now we'll scan lines until we find one that doesn't % start with %. We're looking for the bounding box comment. % {\epsffileoktrue \chardef\other=12 \def\do##1{\catcode`##1=\other}\dospecials \catcode`\ =10 \loop \read\epsffilein to \epsffileline \ifeof\epsffilein\epsffileokfalse\else % % We check to see if the first character is a % sign; % if not, we stop reading (unless the line was entirely blank); % if so, we look further and stop only if the line begins with % `%%BoundingBox:'. % \expandafter\epsfaux\epsffileline:. \\% \fi \ifepsffileok\repeat \ifepsfbbfound\else \ifepsfverbose\message{No bounding box comment in #1; using defaults}\fi\fi }\closein\epsffilein\fi}% % % Now we have to calculate the scale and offset values to use. % First we compute the natural sizes. % \def\epsfclipon{\def\epsfclipstring{ clip}}% \def\epsfclipoff{\def\epsfclipstring{\ifepsfdraft\space clip\fi}}% \epsfclipoff % \def\epsfsetgraph#1{% \epsfrsize=\epsfury\pspoints \advance\epsfrsize by-\epsflly\pspoints \epsftsize=\epsfurx\pspoints \advance\epsftsize by-\epsfllx\pspoints % % If `epsfxsize' is 0, we default to the natural size of the picture. % Otherwise we scale the graph to be \epsfxsize wide. % \epsfxsize\epsfsize\epsftsize\epsfrsize \ifnum\epsfxsize=0 \ifnum\epsfysize=0 \epsfxsize=\epsftsize \epsfysize=\epsfrsize \epsfrsize=0pt % % We have a sticky problem here: TeX doesn't do floating point arithmetic! % Our goal is to compute y = rx/t. The following loop does this reasonably % fast, with an error of at most about 16 sp (about 1/4000 pt). % \else\epsftmp=\epsftsize \divide\epsftmp\epsfrsize \epsfxsize=\epsfysize \multiply\epsfxsize\epsftmp \multiply\epsftmp\epsfrsize \advance\epsftsize-\epsftmp \epsftmp=\epsfysize \loop \advance\epsftsize\epsftsize \divide\epsftmp 2 \ifnum\epsftmp>0 \ifnum\epsftsize<\epsfrsize\else \advance\epsftsize-\epsfrsize \advance\epsfxsize\epsftmp \fi \repeat \epsfrsize=0pt \fi \else \ifnum\epsfysize=0 \epsftmp=\epsfrsize \divide\epsftmp\epsftsize \epsfysize=\epsfxsize \multiply\epsfysize\epsftmp \multiply\epsftmp\epsftsize \advance\epsfrsize-\epsftmp \epsftmp=\epsfxsize \loop \advance\epsfrsize\epsfrsize \divide\epsftmp 2 \ifnum\epsftmp>0 \ifnum\epsfrsize<\epsftsize\else \advance\epsfrsize-\epsftsize \advance\epsfysize\epsftmp \fi \repeat \epsfrsize=0pt \else \epsfrsize=\epsfysize \fi \fi % % Finally, we make the vbox and stick in a \special that dvips can parse. % \ifepsfverbose\message{#1: width=\the\epsfxsize, height=\the\epsfysize}\fi \epsftmp=10\epsfxsize \divide\epsftmp\pspoints \vbox to\epsfysize{\vfil\hbox to\epsfxsize{% \ifnum\epsfrsize=0\relax \special{PSfile=\ifepsfdraft psdraft.ps\else#1\fi\space llx=\epsfllx\space lly=\epsflly\space urx=\epsfurx\space ury=\epsfury\space rwi=\number\epsftmp \epsfclipstring}% \else \epsfrsize=10\epsfysize \divide\epsfrsize\pspoints \special{PSfile=\ifepsfdraft psdraft.ps\else#1\fi\space llx=\epsfllx\space lly=\epsflly\space urx=\epsfurx\space ury=\epsfury\space rwi=\number\epsftmp\space rhi=\number\epsfrsize \epsfclipstring}% \fi \hfil}}% \global\epsfxsize=0pt\global\epsfysize=0pt}% % % We still need to define the tricky \epsfaux macro. This requires % a couple of magic constants for comparison purposes. % {\catcode`\%=12 \global\let\epsfpercent=%\global\def\epsfbblit{%BoundingBox}}% % % So we're ready to check for `%BoundingBox:' and to grab the % values if they are found. % \long\def\epsfaux#1#2:#3\\{\ifx#1\epsfpercent \def\testit{#2}\ifx\testit\epsfbblit \epsfgrab #3 . . . \\% \epsffileokfalse \global\epsfbbfoundtrue \fi\else\ifx#1\par\else\epsffileokfalse\fi\fi}% % % Here we grab the values and stuff them in the appropriate definitions. % \def\epsfempty{}% \def\epsfgrab #1 #2 #3 #4 #5\\{% \global\def\epsfllx{#1}\ifx\epsfllx\epsfempty \epsfgrab #2 #3 #4 #5 .\\\else \global\def\epsflly{#2}% \global\def\epsfurx{#3}\global\def\epsfury{#4}\fi}% % % We default the epsfsize macro. % \def\epsfsize#1#2{\epsfxsize} % % Finally, another definition for compatibility with older macros. % \let\epsffile=\epsfbox ------------------------------------------------------------------------------- FILE: "manend.tex" ------------------------------------------------------------------------------- %%% ====================================================================== %%% @LaTeX-file{ %%% filename = "manend.tex", %%% version = "3.0", %%% date = "November 10, 1992", %%% ISO-date = "1992.11.10", %%% time = "15:41:54.18 EST", %%% author = "American Physical Society, %%% and %%% American Institute of Physics, %%% and %%% Optical Society of America", %%% contact = "Christopher B. Hamlin", %%% address = "APS Publications Liaison Office %%% 500 Sunnyside Blvd. %%% Woodbury, NY 11797", %%% telephone = "(516) 576-2390", %%% FAX = "(516) 349-7817", %%% email = "mis@aps.org (Internet)", %%% supported = "yes", %%% archived = "pinet.aip.org/pub/revtex, %%% Niord.SHSU.edu:[FILESERV.REVTEX]", %%% keywords = "REVTeX, version 3.0, REVTeX Input Guide, %%% Appendices", %%% codetable = "ISO/ASCII", %%% checksum = "63419 1575 5767 51302", %%% docstring = "This is the file with the appendices to the input %%% guide for REVTeX 3.0. %%% %%% 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." %%% } %%% ====================================================================== % start of file manend.tex % % This file is part of the files in the REVTeX 3.0 distribution. % Version 3.0 of REVTeX, November 10, 1992. % % Copyright (c) 1992 American Physical Society, Optical Society of America, % American Institute of Physics. % % See the REVTeX 3.0 README file for restrictions and more information. % % \documentstyle[twocolumn,seg]{revtex} % % comment out the documentstyle line above and use one of the other lines % if you have the AMSFonts installed and would like to see the characters % and fonts available with these options enabled. There is no guarantee % that any specific TeX installation will be able to handle these options. % % the amsfonts option gives better handling of \bbox output in odd sizes % and superscripts, along with the \frak and \Bbb font commands: % \documentstyle[amsfonts,twocolumn,aps]{revtex} % % the amssymb option gives all the capabilities of the amsfonts option, but % also defines names for many extra symbols: % \documentstyle[amssymb,twocolumn,aps]{revtex} % \def\SNG{{\em Physical Review Style and Notation Guide}} \def\LUG {{\em \LaTeX{} User's Guide \& Reference Manual}} \def\btt#1{{\tt$\backslash$\string#1}}% \def\REVTeX{REV\TeX} \def\AmS{{\protect\the\textfont2 A\kern-.1667em\lower.5ex\hbox{M}\kern-.125emS}} \def\AmSLaTeX{\AmS-\LaTeX} \def\BibTeX{\rm B{\sc ib}\TeX} \makeatletter % run page numbers by "chapter" \def\thepage{A-\@arabic\c@page} % these page numbers need a bit more width \def\@pnumwidth{2em} \makeatother % next line overrules aps style neutralization of \slantfrac \def\slantfrac#1#2{\kern1em^{#1}\kern-.3em/\kern-.1em_{#2}} \begin{document} \appendix \twocolumn \makeatletter \global\@specialpagefalse \def\@oddhead{\REVTeX{} 3.0\hfill Released November 10, 1992} \let\@evenhead\@oddhead % run page numbers by "chapter", with copyright for first page \def\@oddfoot{\reset@font\rm\hfill \thepage\hfill \ifnum\c@page=1 \llap{\protect\copyright{} 1992~~% $\vcenter{\baselineskip10pt \hbox{American Physical Society} \hbox{Optical Society of America} \hbox{American Institute of Physics} }$}\fi } \let\@evenfoot\@oddfoot \makeatother \section{Character Set Listing} \label{sec:chars} This appendix provides tables which show all of the special characters and mathematical symbols that are available within \REVTeX{}. Some of these symbols require the AMSFonts to be available. \REVTeX{} version 3.0 supports an extensive set of symbols, alphabets, and special fonts. Their availability does not relieve an author (editor) of considering whether a chosen notation or symbol will convey the intended meaning, and whether there is a more conventional alternative. As always, for the benefit of the reader, notation should be clear, as simple as possible, and consistent with standard usage. Nonstandard symbols should only be used if necessary; their meaning should be explained in the paper at the first occurrence. Editorial policy on this issue may vary from journal to journal. Check recent issues of a given journal and/or query the editor. APS authors may also consult the journal's ``Information for Contributors'' as well as the \SNG{}. In preparing an accepted paper for publication, the editor may suggest (require) the use of alternative notation. \def\xxx{4pt} \subsection[\protect\LaTeX{} notations]{LaTeX notations} \subsubsection[Standard \protect\LaTeX{} symbols]{Standard LaTeX symbols} The following tables show the standard symbols for \LaTeX{} users. \begin{table} \caption{Text accents with letter a.} \begin{tabular}{c@{\hspace{\xxx}}lc@{\hspace{\xxx}}lc@{\hspace{\xxx}}% lc@{\hspace{\xxx}}l} \`{a} & \verb+\`{a}+& \'{a} & \verb+\'{a}+& \^{a} & \verb+\^{a}+& \"{a} & \verb+\"{a}+\\ \~{a} & \verb+\~{a}+& \={a} & \verb+\={a}+& \.{a} & \verb+\.{a}+& \u{a} & \verb+\u{a}+\\ \v{a} & \verb+\v{a}+& \H{a} & \verb+\H{a}+& \t{aa} & \verb+\t{aa}+& \c{a} & \verb+\c{a}+\\ \d{a} & \verb+\d{a}+& \b{a} & \verb+\b{a}+ \end{tabular} \end{table} \begin{table} \caption{Math accents with letter a.} \begin{tabular}% {c@{\hspace{\xxx}}lc@{\hspace{\xxx}}lc@{\hspace{\xxx}}lc@{\hspace{\xxx}}l} $\hat{a}$ & \verb+\hat{a}+ & $\check{a}$ & \verb+\check{a}+ & $\dot{a}$ & \verb+\dot{a}+ & $\ddot{a}$ & \verb+\ddot{a}+ \\ $\breve{a}$ & \verb+\breve{a}+ & $\tilde{a}$ & \verb+\tilde{a}+ & $\grave{a}$ & \verb+\grave{a}+ & $\acute{a}$ & \verb+\acute{a}+ \\ $\bar{a}$ & \verb+\bar{a}+ & $\vec{a}$ & \verb+\vec{a}+ & \end{tabular} \end{table} \begin{table} \caption{Special symbols; any mode.} \begin{tabular}{c@{\hspace{\xxx}}lc@{\hspace{\xxx}}lc@{\hspace{\xxx}}l} \dag & \verb+\dag+& \S & \verb+\S+& \copyright & \verb+\copyright+\\ \ddag & \verb+\ddag+& \P & \verb+\P+& \pounds & \verb+\pounds+\\ \end{tabular} \end{table} \begin{table} \caption{Other special (foreign) symbols; text mode.} \begin{tabular}% {c@{\hspace{\xxx}}lc@{\hspace{\xxx}}lc@{\hspace{\xxx}}lc@{\hspace{\xxx}}l} \aa & \verb+\aa+& \AA & \verb+\AA+& \ae & \verb+\ae+& \AE & \verb+\AE+\\ \o & \verb+\o+& \O & \verb+\O+& \oe & \verb+\oe+& \OE & \verb+\OE+\\ \l & \verb+\l+& \L & \verb+\L+& ?` & \verb+?`+& !` & \verb+!`+\\ \ss & \verb+\ss+ \end{tabular} \end{table} \begin{table} \caption{Greek letters; used in math mode.} \begin{tabular}% {c@{\hspace{\xxx}}lc@{\hspace{\xxx}}lc@{\hspace{\xxx}}lc@{\hspace{\xxx}}l} \multicolumn{8}{c}{\it Lowercase}\\ $\alpha$ & \verb+\alpha+ & $\beta$ & \verb+\beta+ & $\gamma$ & \verb+\gamma+ & $\delta$ & \verb+\delta+\\ $\epsilon$ & \verb+\epsilon+ & $\varepsilon$ & \verb+\varepsilon+ & $\zeta$ & \verb+\zeta+ & $\eta$ & \verb+\eta+ \\ $\theta$ & \verb+\theta+ & $\vartheta$ & \verb+\vartheta+ & $\iota$ & \verb+\iota+ & $\kappa$ & \verb+\kappa+ \\ $\lambda$ & \verb+\lambda+ & $\mu$ & \verb+\mu+ & $\nu$ & \verb+\nu+ & $\xi$ & \verb+\xi+\\ $o$ & \verb+o+ & $\pi$ & \verb+\pi+ & $\varpi$ & \verb+\varpi+ & $\rho$ & \verb+\rho+ \\ $\varrho$ & \verb+\varrho+ & $\sigma$ & \verb+\sigma+ & $\varsigma$ & \verb+\varsigma+ & $\tau$ & \verb+\tau+ \\ $\upsilon$ & \verb+\upsilon+ & $\phi$ & \verb+\phi+ & $\varphi$ & \verb+\varphi+ & $\chi$ & \verb+\chi+ \\ $\psi$ & \verb+\psi+ & $\omega$ & \verb+\omega+ & \\[\baselineskip] \multicolumn{8}{c}{\it Uppercase}\\ $\Gamma$ & \verb+\Gamma+ & $\Delta$ & \verb+\Delta+ & $\Theta$ & \verb+\Theta+ & $\Lambda$ & \verb+\Lambda+\\ $\Xi$ & \verb+\Xi+ & $\Pi$ & \verb+\Pi+ & $\Sigma$ & \verb+\Sigma+ & $\Upsilon$ & \verb+\Upsilon+ \\ $\Phi$ & \verb+\Phi+ & $\Psi$ & \verb+\Psi+ & $\Omega$ & \verb+\Omega+ & \end{tabular} \end{table} \begin{table} \caption{Binary operation symbols; used in math mode.} \def\xxx{3.2pt} \begin{tabular}% {c@{\hspace{\xxx}}lc@{\hspace{\xxx}}lc@{\hspace{\xxx}}lc@{\hspace{\xxx}}l} $\pm$ & \verb+\pm+ & $\mp$ & \verb+\mp+ & $\times$ & \verb+\times+ & $\div$ & \verb+\div+ \\ $\ast$ & \verb+\ast+ & $\star$ & \verb+\star+ & $\circ$ & \verb+\circ+ & $\bullet$ & \verb+\bullet+\\ $\cap$ & \verb+\cap+ & $\cup$ & \verb+\cup+ & $\uplus$ & \verb+\uplus+ & $\cdot$ & \verb+\cdot+ \\ $\sqcap$ & \verb+\sqcap+ & $\sqcup$ & \verb+\sqcup+ & $\vee$ & \verb+\vee+ & $\wedge$ & \verb+\wedge+\\ $\oplus$ & \verb+\oplus+ & $\ominus$ & \verb+\ominus+ & $\otimes$ & \verb+\otimes+ & $\oslash$ & \verb+\oslash+ \\ $\bigtriangleup$ & \verb+\bigtriangleup+ & $\odot$ & \verb+\odot+ & $\lhd$ & \verb+\lhd+ & $\dagger$ & \verb+\dagger+ \\ $\bigtriangledown$ & \verb+\bigtriangledown+ & $\bigcirc$ & \verb+\bigcirc+ & $\rhd$ & \verb+\rhd+ & $\ddagger$ & \verb+\ddagger+\\ $\triangleleft$ & \verb+\triangleleft+ & $\diamond$ & \verb+\diamond+ & $\unlhd$ & \verb+\unlhd+ & $\setminus$ & \verb+\setminus+\\ $\triangleright$ & \verb+\triangleright+ & $\wr$ & \verb+\wr+ & $\unrhd$ & \verb+\unrhd+ & $\amalg$ & \verb+\amalg+ \end{tabular} \end{table} \begin{table} \caption{Relation symbols; used in math mode. } \begin{tabular}% {c@{\hspace{\xxx}}lc@{\hspace{\xxx}}lc@{\hspace{\xxx}}lc@{\hspace{\xxx}}l} $\leq$ & \verb+\leq+ & $\geq$ & \verb+\geq+ & $\ll$ & \verb+\ll+ & $\gg$ & \verb+\gg+ \\ $\equiv$ & \verb+\equiv+ & $\asymp$ & \verb+\asymp+ & $\neq$ & \verb+\neq+ & $\doteq$ & \verb+\doteq+ \\ $\subset$ & \verb+\subset+ & $\supset$ & \verb+\supset+ & $\subseteq$ & \verb+\subseteq+ & $\supseteq$ & \verb+\supseteq+ \\ $\sqsubset$ & \verb+\sqsubset+ & $\sqsupset$ & \verb+\sqsupset+ & $\sqsubseteq$ & \verb+\sqsubseteq+ & $\sqsupseteq$ & \verb+\sqsupseteq+\hidewidth \\ $\models$ & \verb+\models+ & $\perp$ & \verb+\perp+ & $\mid$ & \verb+\mid+ & $\parallel$ & \verb+\parallel+ \\ $\prec$ & \verb+\prec+ & $\succ$ & \verb+\succ+ & $\preceq$ & \verb+\preceq+ & $\succeq$ & \verb+\succeq+ \\ $\sim$ & \verb+\sim+ & $\simeq$ & \verb+\simeq+ & $\approx$ & \verb+\approx+ & $\cong$ & \verb+\cong+ \\ $\bowtie$ & \verb+\bowtie+ & $\Join$ & \verb+\Join+ & $\smile$ & \verb+\smile+ & $\frown$ & \verb+\frown+ \\ $\in$ & \verb+\in+ & $\ni$ & \verb+\ni+ & $\vdash$ & \verb+\vdash+ & $\dashv$ & \verb+\dashv+ \\ $\propto$ & \verb+\propto+ & \end{tabular} \end{table} Negated relations can sometimes be constructed with \verb+\not+. For example, \[ \hbox{\verb+If $x \not< y$ then $x \not\leq z$.+} \] gives \[ \hbox{If $x \not< y$ then $x \not\leq z$.} \] The AMSFonts have many negated relations already constructed. See Appendix \ref{AMSFonts,notations}. \begin{table} \caption{Arrow symbols; used in math mode.} \begin{tabular}{c@{\hspace{\xxx}}lc@{\hspace{\xxx}}l} $\leftarrow$ & \verb+\leftarrow+ & $\rightarrow$ & \verb+\rightarrow+ \\ $\longleftarrow$ & \verb+\longleftarrow+ & $\longrightarrow$ & \verb+\longrightarrow+ \\ $\Leftarrow$ & \verb+\Leftarrow+ & $\Rightarrow$ & \verb+\Rightarrow+ \\ $\Longleftarrow$ & \verb+\Longleftarrow+ & $\Longrightarrow$ & \verb+\Longrightarrow+ \\ $\hookleftarrow$ & \verb+\hookleftarrow+ & $\hookrightarrow$ & \verb+\hookrightarrow+ \\ $\leftharpoonup$ & \verb+\leftharpoonup+ & $\rightharpoonup$ & \verb+\rightharpoonup+\\ $\leftharpoondown$ & \verb+\leftharpoondown+ & $\rightharpoondown$ & \verb+\rightharpoondown+ \\ $\rightleftharpoons$&\verb+\rightleftharpoons+&$\leadsto$&\verb+\leadsto+ \\ $\leftrightarrow$ & \verb+\leftrightarrow+ & $\longleftrightarrow$ & \verb+\longleftrightarrow+ \\ $\Leftrightarrow$ & \verb+\Leftrightarrow+ & $\Longleftrightarrow$ & \verb+\Longleftrightarrow+ \\ $\mapsto$ & \verb+\mapsto+ & $\longmapsto$ & \verb+\longmapsto+ \\ \multicolumn{4}{c}{% \begin{tabular}{c@{\hspace{\xxx}}l} $\uparrow$ & \btt{uparrow}\\ $\downarrow$ & \btt{downarrow} \\ $\Uparrow$ & \btt{Uparrow}\\ $\Downarrow$ & \btt{Downarrow}\\ $\updownarrow$ & \btt{updownarrow}\\ $\Updownarrow$ & \btt{Updownarrow}\\ $\nearrow$ & \btt{nearrow}\\ $\searrow$ & \btt{searrow}\\ $\swarrow$ & \btt{swarrow}\\ $\nwarrow$ & \btt{nwarrow} \end{tabular}% } % end of multicolumn % \end{tabular} \end{table} \begin{table} \caption{Miscellaneous symbols; used in math mode.} \begin{tabular}% {c@{\hspace{\xxx}}lc@{\hspace{\xxx}}lc@{\hspace{\xxx}}lc@{\hspace{\xxx}}l} $\flat$ & \verb+\flat+ & $\natural$ & \verb+\natural+ & $\sharp$ & \verb+\sharp+ & $\prime$ & \verb+\prime+ \\ $\backslash$ & \verb+\backslash+ & $\forall$ & \verb+\forall+ & $\infty$ & \verb+\infty+ & $\exists$ & \verb+\exists+\\ $\emptyset$ & \verb+\emptyset+ & $\Box$ & \verb+\Box+ & $\nabla$ & \verb+\nabla+ & $\neg$ & \verb+\neg+ \\ $\Diamond$ & \verb+\Diamond+ & $\surd$ & \verb+\surd+ & $\triangle$ & \verb+\triangle+& $\|$ & \verb+\|+ \\ $\clubsuit$ & \verb+\clubsuit+ & $\aleph$ & \verb+\aleph+ & $\wp$ & \verb+\wp+ & $\top$ & \verb+\top+\\ $\diamondsuit$ & \verb+\diamondsuit+& $\Re$ & \verb+\Re+ & $\ell$ & \verb+\ell+ & $\bot$ & \verb+\bot+ \\ $\heartsuit$ & \verb+\heartsuit+ & $\Im$ & \verb+\Im+ & $\imath$ & \verb+\imath+ & $\partial$ & \verb+\partial+ \\ $\spadesuit$ & \verb+\spadesuit+ & $\hbar$ & \verb+\hbar+ & $\jmath$ & \verb+\jmath+ & $\angle$ & \verb+\angle+ \\ $\mho$ & \verb+\mho+ \end{tabular} \end{table} \begin{table} \caption{Log-like functions; used in math mode.} \begin{tabular}{llllllll} \verb+\arccos+ & \verb+\arcsin+ & \verb+\arctan+ & \verb+\arg+ & \verb+\cos+ \\ \verb+\cosh+ & \verb+\cot+ & \verb+\coth+ & \verb+\csc+ & \verb+\deg+ \\ \verb+\det+ & \verb+\dim+ & \verb+\exp+ & \verb+\gcd+ & \verb+\hom+ \\ \verb+\inf+ & \verb+\ker+ & \verb+\lg+ & \verb+\lim+ & \verb+\liminf+ \\ \verb+\limsup+ & \verb+\ln+ & \verb+\log+ & \verb+\max+ & \verb+\min+ \\ \verb+\Pr+ & \verb+\sec+ & \verb+\sin+ & \verb+\sinh+ & \verb+\sup+ \\ \verb+\tan+ & \verb+\tanh+ \end{tabular} \end{table} \begin{table} \caption{Delimiters; used in math mode.} \begin{tabular}{c@{\hspace{\xxx}}lc@{\hspace{\xxx}}lc@{\hspace{\xxx}}l} $($ & \verb+(+ & $)$ & \verb+)+ & $/$ & \verb+/+ \\ $[$ & \verb+[+ & $]$ & \verb+]+ & $\backslash$ & \verb+\backslash+ \\ $\{$ & \verb+\{+ & $\}$ & \verb+\}+ & $|$ & \verb+|+ \\ $\langle$ & \verb+\langle+ & $\rangle$ & \verb+\rangle+ & $\|$ & \verb+\|+ \\ $\uparrow$ & \verb+\uparrow+ & $\Uparrow$ & \verb+\Uparrow+& $\lfloor$ & \verb+\lfloor+ \\ $\downarrow$ & \verb+\downarrow+ & $\Downarrow$ & \verb+\Downarrow+ & $\rfloor$ & \verb+\rfloor+ \\ $\updownarrow$ & \verb+\updownarrow+ & $\Updownarrow$ & \verb+\Updownarrow+ & $\lceil$ & \verb+\lceil+ \\ & & & & $\rceil$ & \verb+\rceil+ \end{tabular} \end{table} \begin{table} \caption{Miscellaneous symbols; used in math mode.} \begin{tabular}{c@{\hspace{\xxx}}lc@{\hspace{\xxx}}lc@{\hspace{\xxx}}l} $\textstyle\sum$ $\displaystyle\sum$ & \verb+\sum+ & $\textstyle\prod$ $\displaystyle\prod$ & \verb+\prod+ & $\textstyle\coprod$ $\displaystyle\coprod$ & \verb+\coprod+ \\ $\textstyle\int$ $\displaystyle\int$ & \verb+\int+ & $\textstyle\oint$ $\displaystyle\oint$ & \verb+\oint+ & $\textstyle\biguplus$ $\displaystyle\biguplus$ & \verb+\biguplus+ \\ $\textstyle\bigcap$ $\displaystyle\bigcap$ & \verb+\bigcap+ & $\textstyle\bigcup$ $\displaystyle\bigcup$ & \verb+\bigcup+ & $\textstyle\bigsqcup$ $\displaystyle\bigsqcup$ & \verb+\bigsqcup+ \\ $\textstyle\bigodot$ $\displaystyle\bigodot$ & \verb+\bigodot+ & $\textstyle\bigotimes$ $\displaystyle\bigotimes$ & \verb+\bigotimes+ & $\textstyle\bigoplus$ $\displaystyle\bigoplus$ & \verb+\bigoplus+ \\ $\textstyle\bigvee$ $\displaystyle\bigvee$ & \verb+\bigvee+ & $\textstyle\bigwedge$ $\displaystyle\bigwedge$ & \verb+\bigwedge+ \end{tabular} \end{table} \subsubsection[Standard \protect\LaTeX{} typefaces]{Standard LaTeX typefaces} You can access a pair of special typefaces in \LaTeX. % only math mode? You can switch to script (calligraphic) letters by using the \verb+\cal+ command (note the $\cal L$): \begin{verbatim} {\cal L}_{\text{int}} = e F^{3}_{\pi} r^{2} B^{0}(r,t) \epsilon \sin(\Omega t) \exp(\eta t), \end{verbatim} gives \[ {\cal L}_{\text{int}} = eF^{3}_{\pi} r^{2} B^{0}(r,t)\epsilon\sin(\Omega t)\exp(\eta t), \] Only uppercase letters are available in the \verb+\cal+ font. \penalty-10000 % only math mode? You can switch to sans serif letters by using the \verb+\sf+ command (note the $\sf M$): \begin{verbatim} R({\cal Q}-{\cal Q}_{0}) =R_{0} \exp\left(-\case1/2\Delta {\cal Q} \cdot{\sf M}\cdot\Delta{\cal Q}\right). \label{eq:rdef} \end{verbatim} gives \[ R({\cal Q}-{\cal Q}_{0}) = R_{0} \exp\left(-\case1/2\Delta {\cal Q} \cdot {\sf M} \cdot \Delta {\cal Q}\right). \] Both uppercase and lowercase letters are available with \verb+\sf+. \subsubsection{Other notations} % math mode only? The \verb+\overline+ command puts a horizontal line above its argument in math mode: \begin{verbatim} $\overline{x}+\overline{y}$ \end{verbatim} gives \[ \overline{x}+\overline{y} \] There is an analogous \verb+\underline+ command that works in text or math mode: \begin{verbatim} The equation \underline{is} $\underline{x+y}$. \end{verbatim} gives \[ \hbox{The equation \underline{is} $\underline{x+y}$.} \] % math mode? Horizontal braces are put above or below an expression with the \verb+\overbrace+ and \verb+\underbrace+ commands: \begin{verbatim} $\underbrace{a_{1} + \overbrace{a_{2}+a_{3}} + a_{4}}$ \end{verbatim} gives \[ \underbrace{a_{1} + \overbrace{a_{2}+a_{3}} + a_{4}} \] and in displayed math, a subscript or a superscript puts a label on the brace: \begin{verbatim} $\underbrace{a_{1} + \overbrace{a_{2}+\cdots+a_{n-1}}^{n-2} + a_{n}}_{n}$ \end{verbatim} gives \[ \underbrace{a_{1} + \overbrace{a_{2}+\cdots+a_{n-1}}^{n-2} + a_{n}}_{n} \] Wide versions of the \verb+\hat+ and \verb+\tilde+ commands are available. They are called \verb+\widehat+ and \verb+\widetilde+, respectively. Here is an example: \begin{verbatim} $\widehat{a} + \widehat{ab} + \widehat{abc} + \widehat{abcd}$ \end{verbatim} gives \[ \widehat{a} + \widehat{ab} + \widehat{abc} + \widehat{abcd} \] \subsection{AMSFonts notations} \label{AMSFonts,notations} The AMSFonts are fonts that were developed by the American Mathematical Society and are now made available free of charge by the AMS. The METAFONT source files for these fonts are freely available, as are precompiled .pk files. There are two style options that can be used to access the AMSFonts: \verb+amsfonts+ and \verb+amssymb+. These style options are explained in The appropriate society-specific documentation. Not distributed with \REVTeX{} are the files amsfonts.sty and amssymb.sty of the \AmSLaTeX{} distribution. These files are called in by \REVTeX{}, when the NFSS is in effect, to give you access to the AMSFonts; under the OFSS \REVTeX{} itself will do the work necessary to allow access. % \subsubsection{Getting the AMSFonts} % \label{sec:AMSFonts,getting} % % This information on getting the AMSFonts was put together from Internet % posts by Rafal Zbikowski and George D. Greenwade. They are responsible % for any correct information herein. % % The original distributing site for AMSFonts Version 2.1 (released % in August 1991) is % \begin{verbatim} % e-math.ams.com 130.44.1.100 /ams % \end{verbatim} % available via ftp. Version 2.1 is incompatible with earlier % versions, so upgrades are strongly recommended. % Users having Unix-compatible compress/uncompress and tar/untar % utilities (such exist for DOS and VMS) can get the following % (binary) files: % \begin{verbatim} % 637421 Oct 28 1991 amsfonts-sources.tar.Z % 4915200 Sep 27 1991 amsfonts300.tar % 78823 Jul 2 1991 tfm-files.tar.Z % 2447360 Sep 27 1991 amsfonts118.tar % 3235840 Sep 27 1991 amsfonts180.tar % 3788800 Sep 27 1991 amsfonts240.tar % 4915200 Sep 27 1991 amsfonts300.tar % 6512640 Sep 30 1991 amsfonts400.tar % \end{verbatim} % from the \verb+/ams+ directory, which covers the whole distribution together % with documentation printable with plain \TeX. The files % \verb+amsfonts$$$.tar+ (where \verb+$$$+ is 118 or 180 or 240 or 300 or 400) % contain .pk files (packed generic font files for AMSFonts), % the number \verb+$$$+ indicating the required printer/previewer resolution % in dots per inch (dpi). % Note that \verb+amsfonts$$$.tar+ are {\em not\/} compressed using Unix's % compress facility. % % Users not having the Unix-compatible utilities will have to pull % the files from subdirectories % \begin{verbatim} % /ams/amsfonts % /ams/amsfonts/doc % /ams/amsfonts/pk-files % /ams/amsfonts/sources % /ams/amsfonts/sources/cyrillic % /ams/amsfonts/sources/euler % /ams/amsfonts/sources/extracm % /ams/amsfonts/sources/symbols % /ams/tfm-files % \end{verbatim} % Subdirectory \verb+/ams/amsfonts/pk-files+ contains .pk files (compressed % generic font files for AMSFonts) organized in directories % according to the required printer/previewer resolution, i.e. % \begin{verbatim} % /ams/amsfonts/pk-files/118dpi % /ams/amsfonts/pk-files/180dpi % /ams/amsfonts/pk-files/240dpi % /ams/amsfonts/pk-files/300dpi % /ams/amsfonts/pk-files/400dpi % \end{verbatim} % where dpi is dots per inch. % % The files of the AMS distribution are rather big, even in the compressed % form (as seen from the above listings). It is recommended to pull % only the relevant files (especially the .pk ones). For example, % files necessary for a 300dpi installation (\verb+amsfonts-sources.tar.Z+, % \verb+amsfonts300.tar+, tfm-files.tar.Z) occupy around eight megabytes in % uncompressed form (untarred \verb+amsfonts300.tar+ occupies 4533 % kilobytes). % % Note that \verb+amsfonts$$$.tar+ are {\em not\/} compressed using the Unix % compress facility. % % % The \AmSLaTeX files \verb+amsfonts.sty+ and \verb+amssymb.sty+, % can also be obtained via anonymous ftp, from % the directory \verb+/ams/amslatex/inputs+. % % The AMSFonts can be obtained by retrieving the font packages from % Sam Houston State University. Send a mail message ({\em not interactive\/}) % with the lines % \begin{verbatim} % SENDME AMSFONTS % SENDME AMSFONTS_DOC % SENDME AMSFONTS_EULER % SENDME AMSFONTS_EXTRACM % SENDME AMSFONTS_SYMBOLS % SENDME AMSFONTS_SOURCES % \end{verbatim} % to \verb+fileserv@shsu.edu+ (Internet) or \verb+fileserv@shsu+ (Bitnet). % The server there will queue your request and send you the needed files % automatically. Be forewarned that you can only retrieve the METAFONT sources % from the server, and these packages can be large. You will also need % to have a functioning copy of METAFONT and know how to use it. Here % is a list of the packages, the number of files in each, and the approximate % size of the package. % \begin{quasitable} % \begin{tabular}{lll} % Package & No.\ files & Size \\ % \hline % AMSFONTS & 5 & 37.5 kB \\ % AMSFONTS\_DOC & 4 & 87 kB \\ % AMSFONTS\_EULER & 68 & 1.2 MB \\ % AMSFONTS\_EXTRACM & 15 & 95.5 kB \\ % AMSFONTS\_SYMBOLS & 19 & 285 kB \\ % AMSFONTS\_SOURCES & 3 & 17.5 kB % \end{tabular} % \end{quasitable} % You may wish to split up your requests to simplify things, sending only % a single request at a time. % % % You can also obtain \verb+amsfonts.sty+ and \verb+amssymb.sty+ by % sending a mail message containing the lines % \begin{verbatim} % SENDME AMSLaTeX_INPUTS.AMSFONTS_STY % SENDME AMSLaTeX_INPUTS.AMSSYMB_STY % \end{verbatim} % to \verb+fileserv@shsu.edu+ (Internet) or \verb+fileserv@shsu+ (Bitnet). % % \subsubsection{Using the {\protect\tt amsfonts} option} \label{sec:AMSFonts,amsfonts} The \verb+amsfonts+ style option will give you access to the \verb+\frak+ and \verb+\Bbb+ fonts and will also use the extra Computer Modern fonts from the AMS in order to provide better access to bold math characters at smaller sizes and in super- and subscripts. {\em AMSFonts typefaces.} With the AMSFonts installed and in use through either the \verb+amsfonts+ or \verb+amssymb+ style option, the \verb+\frak+ and \verb+\Bbb+ commands are available. \verb+\frak+ switches to the AMS Fraktur font, while \verb+\Bbb+ switches to the so-called ``Blackboard Bold'' font. Only uppercase letters are available in Blackboard Bold, and there is no bold version of the font. Fraktur has both uppercase and lowercase letters and will become bold in a bbox. \makeatletter \def\foobar{\let\foo\iftrue}\let\foo\iffalse \if@amssymbols\foobar\else\if@amsfonts\foobar\fi\fi \foo \makeatother Here are the letters ``ABCDE'' from \verb+\frak+: $\frak ABCDE$. And here are the letters ``RIZN'' from \verb+\Bbb+: $\Bbb RIZN$. Here is some math with superscripts and \verb+\frak+. It demonstrates the output of \verb+\bbox{#1}+. \[\text{Normal: } {\frak E}=mc^{2\pi}, \text{\ \ bbox: } \bbox{{\frak E}=mc^{2\pi}} \] \else \makeatother \bigskip \begin{center} \bf You do not have the amsfonts or amssymb option selected, therefore the characters in the AMSFonts will not be printed using \verb+\frak+ and \verb+\Bbb+. \end{center} \fi \subsubsection{Using the {\protect\tt amssymb} option} \label{sec:AMSFonts,symb} The \verb+amssymb+ style option gives all the font capabilities of the \verb+amsfonts+ option. It also defines names for many extra symbols that are present in the AMSFonts. The names are the same as those the AMS uses. These symbols and their names are shown below, if you have the AMSFonts installed and the \verb+amssymb+ option selected. \makeatletter \if@amssymbols \makeatother % some of these characters are very high \renewcommand{\arraystretch}{1.2} Please be aware that no bold versions are available for any of the characters in this subsection. % Lowercase Greek \begin{table} \caption{Extra lowercase Greek letters available with amssymb option selected.} \begin{tabular}{c@{\hspace{\xxx}}lc@{\hspace{\xxx}}l} $\digamma$ & \verb+\digamma+ & $\varkappa$ & \verb+\varkappa+ \end{tabular} \end{table} % Hebrew letters \begin{table} \caption{Extra Hebrew letters available with amssymb option selected.} \begin{tabular}{c@{\hspace{\xxx}}lc@{\hspace{\xxx}}l} $\beth$ & \verb+\beth+ & $\gimel$ & \verb+\gimel+ \\ $\daleth$ & \verb+\daleth+ \end{tabular} \end{table} % Bin Rel \begin{table} \caption{Binary relations available with amssymb option selected.} \begin{tabular}{c@{\hspace{\xxx}}lc@{\hspace{\xxx}}l} $\leqq$ & \verb+\leqq+ & $\geqq$ & \verb+\geqq+ \\ $\leqslant$ & \verb+\leqslant+ & $\geqslant$ & \verb+\geqslant+ \\ $\eqslantless$ & \verb+\eqslantless+ & $\eqslantgtr$ & \verb+\eqslantgtr+ \\ $\lesssim$ & \verb+\lesssim+ & $\gtrsim$ & \verb+\gtrsim+ \\ $\lessapprox$ & \verb+\lessapprox+ & $\gtrapprox$ & \verb+\gtrapprox+ \\ $\approxeq$ & \verb+\approxeq+ \\ $\lessdot$ & \verb+\lessdot+ & $\gtrdot$ & \verb+\gtrdot+ \\ $\lll$ & \verb+\lll,\llless+ & $\ggg$ & \verb+\ggg,\gggtr+ \\ $\lessgtr$ & \verb+\lessgtr+ & $\gtrless$ & \verb+\gtrless+ \\ $\lesseqgtr$ & \verb+\lesseqgtr+ & $\gtreqless$ & \verb+\gtreqless+ \\[4pt] $\lesseqqgtr$ & \verb+\lesseqqgtr+ & $\gtreqqless$ & \verb+\gtreqqless+ \\ $\preccurlyeq$ & \verb+\preccurlyeq+ & $\succcurlyeq$ & \verb+\succcurlyeq+ \\ $\curlyeqprec$ & \verb+\curlyeqprec+ & $\curlyeqsucc$ & \verb+\curlyeqsucc+ \\ $\precsim$ & \verb+\precsim+ & $\succsim$ & \verb+\succsim+ \\ $\precapprox$ & \verb+\precapprox+ & $\succapprox$ & \verb+\succapprox+ \\ $\subseteqq$ & \verb+\subseteqq+ & $\supseteqq$ & \verb+\supseteqq+ \\ $\Subset$ & \verb+\Subset+ & $\Supset$ & \verb+\Supset+ \\ $\sqsubset$ & \verb+\sqsubset+ & $\sqsupset$ & \verb+\sqsupset+ \\ $\backsim$ & \verb+\backsim+ & $\thicksim$ & \verb+\thicksim+ \\ $\backsimeq$ & \verb+\backsimeq+ & $\thickapprox$ & \verb+\thickapprox+ \\ $\doteqdot$ & \verb+\doteqdot,\Doteq+ & $\eqcirc$ & \verb+\eqcirc+ \\ $\risingdotseq$ & \verb+\risingdotseq+ & $\circeq$ & \verb+\circeq+ \\ $\fallingdotseq$ & \verb+\fallingdotseq+ & $\triangleq$ & \verb+\triangleq+ \\ $\vartriangleleft$ & \verb+\vartriangleleft+ & $\vartriangleright$ & \verb+\vartriangleright+ \\ $\trianglelefteq$ & \verb+\trianglelefteq+ & $\trianglerighteq$ & \verb+\trianglerighteq+ \\ $\vDash$ & \verb+\vDash+ & $\Vdash$ & \verb+\Vdash+ \\ $\Vvdash$ & \verb+\Vvdash+ \\ $\smallsmile$ & \verb+\smallsmile+ & $\smallfrown$ & \verb+\smallfrown+ \\ $\shortmid$ & \verb+\shortmid+ & $\shortparallel$ & \verb+\shortparallel+ \\ $\bumpeq$ & \verb+\bumpeq+ & $\Bumpeq$ & \verb+\Bumpeq+ \\ $\between$ & \verb+\between+ & $\pitchfork$ & \verb+\pitchfork+ \end{tabular} \end{table} \begin{table} \caption{Miscellaneous symbols available with amssymb option selected.} \begin{tabular}{c@{\hspace{\xxx}}lc@{\hspace{\xxx}}l} $\hbar $ & \verb+\hbar+ & $\hslash$ & \verb+\hslash+ \\ $\backprime $ & \verb+\backprime+ & $\varnothing$ & \verb+\varnothing+ \\ $\vartriangle$ & \verb+\vartriangle+ & $\blacktriangle$ & \verb+\blacktriangle+ \\ $\triangledown$ & \verb+\triangledown+ & $\blacktriangledown$ & \verb+\blacktriangledown+ \\ $\square$ & \verb+\square+ & $\blacksquare$ & \verb+\blacksquare+ \\ $\lozenge$ & \verb+\lozenge+ & $\blacklozenge$ & \verb+\blacklozenge+ \\ $\circledS$ & \verb+\circledS+ & $\bigstar$ & \verb+\bigstar+ \\ $\angle $ & \verb+\angle+ & $\sphericalangle$ & \verb+\sphericalangle+ \\ $\measuredangle$ & \verb+\measuredangle+ \\ $\nexists$ & \verb+\nexists+ & $\complement$ & \verb+\complement+ \\ $\mho$ & \verb+\mho+ & $\eth$ & \verb+\eth+ \\ $\Finv$ & \verb+\Finv+ & $\Game$ & \verb+\Game+ \\ $\diagup$ & \verb+\diagup+ & $\diagdown$ & \verb+\diagdown+ \\ $\Bbbk$ & \verb+\Bbbk+ \end{tabular} \label{tab:a} \end{table} % Bin Op \begin{table} \caption{Binary operators available with amssymb option selected.} \begin{tabular}{c@{\hspace{\xxx}}lc@{\hspace{\xxx}}l} $\dotplus$ & \verb+\dotplus+ & $\ltimes$ & \verb+\ltimes+ \\ $\smallsetminus$ & \verb+\smallsetminus+ & $\rtimes$ & \verb+\rtimes+ \\ $\barwedge$ & \verb+\barwedge+ & $\curlywedge$ & \verb+\curlywedge+ \\ $\veebar$ & \verb+\veebar+ & $\curlyvee$ & \verb+\curlyvee+ \\ $\doublebarwedge$ & \verb+\doublebarwedge+ \\ $\Cap$ & \verb+\Cap,\doublecap+ & $\leftthreetimes$ & \verb+\leftthreetimes+ \\ $\Cup$ & \verb+\Cup,\doublecup+ & $\rightthreetimes$ & \verb+\rightthreetimes+ \\ $\boxtimes$ & \verb+\boxtimes+ & $\circledast$ & \verb+\circledast+ \\ $\boxminus$ & \verb+\boxminus+ & $\circleddash$ & \verb+\circleddash+ \\ $\boxplus$ & \verb+\boxplus+ & $\centerdot$ & \verb+\centerdot+ \\ $\boxdot$ & \verb+\boxdot+ & $\circledcirc$ & \verb+\circledcirc+ \\ $\divideontimes$ & \verb+\divideontimes+ & $\intercal$ & \verb+\intercal+ \end{tabular} \end{table} % other junk \begin{table} \caption{Other miscellaneous symbols available with amssymb option selected.} \begin{tabular}{c@{\hspace{\xxx}}lc@{\hspace{\xxx}}l} $\varpropto$ & \verb+\varpropto+ & $\backepsilon$ & \verb+\backepsilon+ \\ $\blacktriangleleft$ & \verb+\blacktriangleleft+ & $\blacktriangleright$ & \verb+\blacktriangleright+ \\ $\therefore$ & \verb+\therefore+ & $\because$ & \verb+\because+ \end{tabular} \end{table} % negated relations \begin{table} \caption{Negated relations available with amssymb option selected.} \begin{tabular}{c@{\hspace{\xxx}}lc@{\hspace{\xxx}}l} $\nsim$ & \verb+\nsim+ & $\ncong$ & \verb+\ncong+ \\ $\nless$ & \verb+\nless+ & $\ngtr$ & \verb+\ngtr+ \\ $\nleq$ & \verb+\nleq+ & $\ngeq$ & \verb+\ngeq+ \\ $\nleqslant$ & \verb+\nleqslant+ & $\ngeqslant$ & \verb+\ngeqslant+ \\ $\nleqq$ & \verb+\nleqq+ & $\ngeqq$ & \verb+\ngeqq+ \\ $\lneq$ & \verb+\lneq+ & $\gneq$ & \verb+\gneq+ \\ $\lneqq$ & \verb+\lneqq+ & $\gneqq$ & \verb+\gneqq+ \\ $\lvertneqq$ & \verb+\lvertneqq+ & $\gvertneqq$ & \verb+\gvertneqq+ \\ $\lnsim$ & \verb+\lnsim+ & $\gnsim$ & \verb+\gnsim+ \\ $\lnapprox$ & \verb+\lnapprox+ & $\gnapprox$ & \verb+\gnapprox+ \\ $\nprec$ & \verb+\nprec+ & $\nsucc$ & \verb+\nsucc+ \\ $\npreceq$ & \verb+\npreceq+ & $\nsucceq$ & \verb+\nsucceq+ \\ $\precneqq$ & \verb+\precneqq+ & $\succneqq$ & \verb+\succneqq+ \\ $\precnsim$ & \verb+\precnsim+ & $\succnsim$ & \verb+\succnsim+ \\ $\precnapprox$ & \verb+\precnapprox+ & $\succnapprox$ & \verb+\succnapprox+ \\ $\ntriangleleft$ & \verb+\ntriangleleft+ & $\ntriangleright$ & \verb+\ntriangleright+ \\ $\ntrianglelefteq$ & \verb+\ntrianglelefteq+ & $\ntrianglerighteq$ & \verb+\ntrianglerighteq+ \\ $\nshortmid$ & \verb+\nshortmid+ & $\nmid$ & \verb+\nmid+ \\ $\nshortparallel$ & \verb+\nshortparallel+ & $\nparallel$ & \verb+\nparallel+ \\ $\nvdash$ & \verb+\nvdash+ & $\nvDash$ & \verb+\nvDash+ \\ $\nVdash$ & \verb+\nVdash+ & $\nVDash$ & \verb+\nVDash+ \\ $\nsubseteq$ & \verb+\nsubseteq+ & $\nsupseteq$ & \verb+\nsupseteq+ \\ $\nsubseteqq$ & \verb+\nsubseteqq+ & $\nsupseteqq$ & \verb+\nsupseteqq+ \\ $\varsubsetneq$ & \verb+\varsubsetneq+ & $\varsupsetneq$ & \verb+\varsupsetneq+ \\ $\subsetneq$ & \verb+\subsetneq+ & $\supsetneq$ & \verb+\supsetneq+ \\ $\varsubsetneqq$ & \verb+\varsubsetneqq+ & $\varsupsetneqq$ & \verb+\varsupsetneqq+ \\ $\subsetneqq$ & \verb+\subsetneqq+ & $\supsetneqq$ & \verb+\supsetneqq+ \end{tabular} \end{table} \begin{table} \caption{Yet more miscellaneous symbols available with amssymb option selected.} \begin{tabular}{c@{\hspace{\xxx}}lc@{\hspace{\xxx}}l} $\dashrightarrow$ & \verb+\dashrightarrow+ &