+++ /dev/null
-%%
-%% Bib. style "alpha-fr" (version francisee de alpha.bst)
-%%
-%% NM, 2004/02/22
-%% markey@lsv.ens-cachan.fr
-%%
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- % Original Copyright (Oren Patashnik):
- %
- % This program may be distributed and/or modified under the
- % conditions of the LaTeX Project Public License, either version 1.2
- % of this license or (at your option) any later version.
- % The latest version of this license is in
- % http://www.latex-project.org/lppl.txt
- % and version 1.2 or later is part of all distributions of LaTeX
- % version 1999/12/01 or later.
- %
- % This program consists of the file alpha.bst
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-
-
-ENTRY
- { address
- author
- booktitle
- chapter
- edition
- editor
- howpublished
- institution
- journal
- key
- month
- note
- number
- organization
- pages
- publisher
- school
- series
- title
- type
- volume
- year
- }
- {}
- { label extra.label sort.label }
-
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-%%
-%% C'est ici que je definis les "traductions". Normalement, y a
-%% que ca a changer pour franciser le style...
-%%
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-
-FUNCTION{fr.and}{ %% le "et" entre les deux derniers auteurs
-" et "
-}
-
-FUNCTION{fr.editeur}{ %% ", \'editeur" au singulier, ou " (\'editeur)"...
-", \'editeur"
-}
-
-FUNCTION{fr.editeurs}{ %% ", \'editeurs" au pluriel, ou " (\'editeurs)"...
-", \'editeurs"
-}
-
-FUNCTION{fr.et.al}{ %% " et~al."
-" \emph{et~al.}"
-}
-
-FUNCTION{fr.in}{ %% "Dans "
-"\emph{Dans} "
-}
-
-FUNCTION{fr.in.spc}{ %% " de " (ou " de la s\'erie ")
-" de "
-}
-
-FUNCTION{fr.of}{ %% " de "
-" de "
-}
-
-FUNCTION{fr.number}{ %% "num\'ero "
-"num\'ero "
-}
-
-FUNCTION{fr.number.maj}{ %% "Num\'ero "
-"Num\'ero "
-}
-
-FUNCTION{fr.volume}{ %% "volume"
-"volume"
-}
-
-FUNCTION{fr.volume.maj}{ %% "Volume"
-"Volume"
-}
-
-FUNCTION{fr.edition}{ %% " \'edition"
-" \'edition"
-}
-
-FUNCTION{fr.pages}{ %% "pages"
-"pages"
-}
-
-FUNCTION{fr.page}{ %% "page"
-"page"
-}
-
-FUNCTION{fr.chapter}{ %% "chapitre"
-"chapitre"
-}
-
-FUNCTION{fr.tech.rep}{ %% "Rapport Technique"
-"Rapport technique"
-}
-
-FUNCTION{fr.master}{ %% "M\'emoire de D.E.A."
-"M\'emoire de D.E.A."
-}
-
-FUNCTION{fr.phd}{ %% "Th\`ese de doctorat"
-"Th\`ese de doctorat"
-}
-
-FUNCTION{fr.auteurs.style}{
- %% si on veut des small caps sur le LASTNAME de l'auteur
- %% Cette fonction est utilisee dans la definition d'une
- %% fonction LaTeX.
-"\scshape"
-}
-
-FUNCTION{fr.ponctuation.apres.auteurs}{ %% Comme son nom l'indique...
-" : "
-}
-
-FUNCTION{fr.deuxpoints}{ %% separateur num. journal/num. pages
-"\string:\penalty500\relax "
-}
-
-MACRO {jan} {"janvier"}
-MACRO {feb} {"f\'evrier"}
-MACRO {mar} {"mars"}
-MACRO {apr} {"avril"}
-MACRO {may} {"mai"}
-MACRO {jun} {"juin"}
-MACRO {jul} {"juillet"}
-MACRO {aug} {"ao\^ut"}
-MACRO {sep} {"septembre"}
-MACRO {oct} {"octobre"}
-MACRO {nov} {"novembre"}
-MACRO {dec} {"d\'ecembre"}
-
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-%%
-%% La suite, normalement, y a rien a changer...
-%%
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-
-
-
-
-
-INTEGERS { output.state before.all mid.sentence after.sentence after.block after.authors }
-
-FUNCTION {init.state.consts}
-{ #0 'before.all :=
- #1 'mid.sentence :=
- #2 'after.sentence :=
- #3 'after.block :=
- #0 'after.authors :=
-}
-
-STRINGS { s t }
-
-FUNCTION{ fr.add.period }{
-after.authors
- { fr.ponctuation.apres.auteurs empty$
- { add.period$ }
- { fr.ponctuation.apres.auteurs * #0 'after.authors := }
- if$}
- { add.period$ }
-if$
-}
-
-FUNCTION {output.nonnull}
-{ 's :=
- output.state mid.sentence =
- { ", " * write$ }
- { output.state after.block =
- { fr.add.period write$
- newline$
- "\newblock " write$
- }
- { output.state before.all =
- 'write$
- { add.period$ " " * write$ }
- if$
- }
- if$
- mid.sentence 'output.state :=
- }
- if$
- s
-}
-
-FUNCTION {output}
-{ duplicate$ empty$
- 'pop$
- 'output.nonnull
- if$
-}
-
-FUNCTION {output.check}
-{ 't :=
- duplicate$ empty$
- { pop$ "empty " t * " in " * cite$ * warning$ }
- 'output.nonnull
- if$
-}
-
-FUNCTION {output.bibitem}
-{ newline$
- "\bibitem[" write$
- label write$
- "]{" write$
- cite$ write$
- "}" write$
- newline$
- ""
- before.all 'output.state :=
- #0 'after.authors :=
-}
-
-FUNCTION {fin.entry}
-{ add.period$
- write$
- newline$
-}
-
-FUNCTION {new.block}
-{ output.state before.all =
- 'skip$
- { after.block 'output.state := }
- if$
-}
-
-FUNCTION {new.sentence}
-{ output.state after.block =
- 'skip$
- { output.state before.all =
- 'skip$
- { after.sentence 'output.state := }
- if$
- }
- if$
-}
-
-FUNCTION {not}
-{ { #0 }
- { #1 }
- if$
-}
-
-FUNCTION {and}
-{ 'skip$
- { pop$ #0 }
- if$
-}
-
-FUNCTION {or}
-{ { pop$ #1 }
- 'skip$
- if$
-}
-
-FUNCTION {new.block.checka}
-{ empty$
- 'skip$
- 'new.block
- if$
-}
-
-FUNCTION {new.block.checkb}
-{ empty$
- swap$ empty$
- and
- 'skip$
- 'new.block
- if$
-}
-
-FUNCTION {new.sentence.checka}
-{ empty$
- 'skip$
- 'new.sentence
- if$
-}
-
-FUNCTION {new.sentence.checkb}
-{ empty$
- swap$ empty$
- and
- 'skip$
- 'new.sentence
- if$
-}
-
-FUNCTION {field.or.null}
-{ duplicate$ empty$
- { pop$ "" }
- 'skip$
- if$
-}
-
-FUNCTION {emphasize}
-{ duplicate$ empty$
- { pop$ "" }
- { "{\em " swap$ * "}" * }
- if$
-}
-
-INTEGERS { nameptr namesleft numnames }
-
-FUNCTION {format.names}
-{ 's :=
- #1 'nameptr :=
- s num.names$ 'numnames :=
- numnames 'namesleft :=
- { namesleft #0 > }
- { s nameptr "{ff~}{vv~}\bgroup\fonteauteurs\bgroup {ll}\egroup\egroup{{}}{, jj}" format.name$ 't :=
- nameptr #1 >
- { namesleft #1 >
- { ", " * t * }
- { %numnames #2 > namesleft #2 > and
- % { "," * }
- % 'skip$
- %if$
- t "\bgroup\fonteauteurs\bgroup others\egroup\egroup{}" =
- { fr.et.al * }
- { fr.and * t * }
- if$
- }
- if$
- }
- 't
- if$
- nameptr #1 + 'nameptr :=
- namesleft #1 - 'namesleft :=
- }
- while$
-}
-
-FUNCTION {format.authors}
-{ author empty$
- { "" }
- { author format.names #1 'after.authors := }
- if$
-}
-
-FUNCTION {format.editors}
-{ editor empty$
- { "" }
- { editor format.names
- editor num.names$ #1 >
- { fr.editeurs * }
- { fr.editeur * }
- if$
- }
- if$
-}
-
-FUNCTION {format.title}
-{ title empty$
- { "" }
- { title "t" change.case$ }
- if$
-}
-
-FUNCTION {n.dashify}
-{ 't :=
- ""
- { t empty$ not }
- { t #1 #1 substring$ "-" =
- { t #1 #2 substring$ "--" = not
- { "--" *
- t #2 global.max$ substring$ 't :=
- }
- { { t #1 #1 substring$ "-" = }
- { "-" *
- t #2 global.max$ substring$ 't :=
- }
- while$
- }
- if$
- }
- { t #1 #1 substring$ *
- t #2 global.max$ substring$ 't :=
- }
- if$
- }
- while$
-}
-
-FUNCTION {format.date}
-{ year empty$
- { month empty$
- { "" }
- { "there's a month but no year in " cite$ * warning$
- month
- }
- if$
- }
- { month empty$
- 'year
- { month " " * year * }
- if$
- }
- if$
-}
-
-FUNCTION {format.btitle}
-{ title emphasize
-}
-
-FUNCTION {tie.or.space.connect}
-{ duplicate$ text.length$ #3 <
- { "~" }
- { " " }
- if$
- swap$ * *
-}
-
-FUNCTION {either.or.check}
-{ empty$
- 'pop$
- { "can't use both " swap$ * " fields in " * cite$ * warning$ }
- if$
-}
-
-FUNCTION {format.bvolume}
-{ volume empty$
- { "" }
- { fr.volume volume tie.or.space.connect
- series empty$
- 'skip$
- { fr.of * series emphasize * }
- if$
- "volume and number" number either.or.check
- }
- if$
-}
-
-FUNCTION {format.number.series}
-{ volume empty$
- { number empty$
- { series field.or.null }
- { output.state mid.sentence =
- { fr.number }
- { fr.number.maj }
- if$
- number tie.or.space.connect
- series empty$
- { "there's a number but no series in " cite$ * warning$ }
- { fr.in.spc * series * }
- if$
- }
- if$
- }
- { "" }
- if$
-}
-
-FUNCTION {format.edition}
-{ edition empty$
- { "" }
- { output.state mid.sentence =
- { edition "l" change.case$ fr.edition * }
- { edition "t" change.case$ fr.edition * }
- if$
- }
- if$
-}
-
-INTEGERS { multiresult }
-
-FUNCTION {multi.page.check}
-{ 't :=
- #0 'multiresult :=
- { multiresult not
- t empty$ not
- and
- }
- { t #1 #1 substring$
- duplicate$ "-" =
- swap$ duplicate$ "," =
- swap$ "+" =
- or or
- { #1 'multiresult := }
- { t #2 global.max$ substring$ 't := }
- if$
- }
- while$
- multiresult
-}
-
-FUNCTION {format.pages}
-{ pages empty$
- { "" }
- { pages multi.page.check
- { fr.pages pages n.dashify tie.or.space.connect }
- { fr.page pages tie.or.space.connect }
- if$
- }
- if$
-}
-
-FUNCTION {format.vol.num.pages}
-{ volume field.or.null
- number empty$
- 'skip$
- { "(" number * ")" * *
- volume empty$
- { "there's a number but no volume in " cite$ * warning$ }
- 'skip$
- if$
- }
- if$
- pages empty$
- 'skip$
- { duplicate$ empty$
- { pop$ format.pages }
- { fr.deuxpoints * pages n.dashify * }
- if$
- }
- if$
-}
-
-FUNCTION {format.chapter.pages}
-{ chapter empty$
- 'format.pages
- { type empty$
- { fr.chapter }
- { type "l" change.case$ }
- if$
- chapter tie.or.space.connect
- pages empty$
- 'skip$
- { ", " * format.pages * }
- if$
- }
- if$
-}
-
-FUNCTION {format.in.ed.booktitle}
-{ booktitle empty$
- { "" }
- { editor empty$
- { fr.in booktitle emphasize * }
- { fr.in format.editors #1 'after.authors := fr.add.period " " * * booktitle emphasize * }
- if$
- }
- if$
-}
-
-FUNCTION {empty.misc.check}
-{ author empty$ title empty$ howpublished empty$
- month empty$ year empty$ note empty$
- and and and and and
- key empty$ not and
- { "all relevant fields are empty in " cite$ * warning$ }
- 'skip$
- if$
-}
-
-FUNCTION {format.thesis.type}
-{ type empty$
- 'skip$
- { pop$
- type "t" change.case$
- }
- if$
-}
-
-FUNCTION {format.tr.number}
-{ type empty$
- { fr.tech.rep }
- 'type
- if$
- number empty$
- { "t" change.case$ }
- { number tie.or.space.connect }
- if$
-}
-
-FUNCTION {format.article.crossref}
-{ key empty$
- { journal empty$
- { "need key or journal for " cite$ * " to crossref " * crossref *
- warning$
- ""
- }
- { fr.in "{\em " * journal * "\/}" * }
- if$
- }
- { fr.in key * }
- if$
- " \cite{" * crossref * "}" *
-}
-
-FUNCTION {format.crossref.editor}
-{ editor #1 "{vv~}\bgroup\fonteauteurs\bgroup {ll}\egroup\egroup{{}}" format.name$
- editor num.names$ duplicate$
- #2 >
- { pop$ fr.et.al * }
- { #2 <
- 'skip$
- { editor #2 "{ff }{vv }{ll}{ jj}" format.name$ "others" =
- { fr.et.al * }
- { fr.and * editor #2 "{vv~}\bgroup\fonteauteurs\bgroup {ll}\egroup\egroup{{}}" format.name$ * }
- if$
- }
- if$
- }
- if$
-}
-
-FUNCTION {format.book.crossref}
-{ volume empty$
- { "empty volume in " cite$ * "'s crossref of " * crossref * warning$
- fr.in
- }
- { fr.volume.maj volume tie.or.space.connect
- fr.of *
- }
- if$
- editor empty$
- editor field.or.null author field.or.null =
- or
- { key empty$
- { series empty$
- { "need editor, key, or series for " cite$ * " to crossref " *
- crossref * warning$
- "" *
- }
- { "{\em " * series * "\/}" * }
- if$
- }
- { key * }
- if$
- }
- { format.crossref.editor * }
- if$
- " \cite{" * crossref * "}" *
-}
-
-FUNCTION {format.incoll.inproc.crossref}
-{ editor empty$
- editor field.or.null author field.or.null =
- or
- { key empty$
- { booktitle empty$
- { "need editor, key, or booktitle for " cite$ * " to crossref " *
- crossref * warning$
- ""
- }
- { fr.in "{\em " * booktitle * "\/}" * }
- if$
- }
- { fr.in key * }
- if$
- }
- { fr.in format.crossref.editor * }
- if$
- " \cite{" * crossref * "}" *
-}
-
-FUNCTION {article}
-{ output.bibitem
- format.authors "author" output.check
- new.block
- format.title "title" output.check
- new.block
- crossref missing$
- { journal emphasize "journal" output.check
- format.vol.num.pages output
- format.date "year" output.check
- }
- { format.article.crossref output.nonnull
- format.pages output
- }
- if$
- new.block
- note output
- fin.entry
-}
-
-FUNCTION {book}
-{ output.bibitem
- author empty$
- { format.editors "author and editor" output.check }
- { format.authors output.nonnull
- crossref missing$
- { "author and editor" editor either.or.check }
- 'skip$
- if$
- }
- if$
- new.block
- format.btitle "title" output.check
- crossref missing$
- { format.bvolume output
- new.block
- format.number.series output
- new.sentence
- publisher "publisher" output.check
- address output
- }
- { new.block
- format.book.crossref output.nonnull
- }
- if$
- format.edition output
- format.date "year" output.check
- new.block
- note output
- fin.entry
-}
-
-FUNCTION {booklet}
-{ output.bibitem
- format.authors output
- new.block
- format.title "title" output.check
- howpublished address new.block.checkb
- howpublished output
- address output
- format.date output
- new.block
- note output
- fin.entry
-}
-
-FUNCTION {inbook}
-{ output.bibitem
- author empty$
- { format.editors "author and editor" output.check }
- { format.authors output.nonnull
- crossref missing$
- { "author and editor" editor either.or.check }
- 'skip$
- if$
- }
- if$
- new.block
- format.btitle "title" output.check
- crossref missing$
- { format.bvolume output
- format.chapter.pages "chapter and pages" output.check
- new.block
- format.number.series output
- new.sentence
- publisher "publisher" output.check
- address output
- }
- { format.chapter.pages "chapter and pages" output.check
- new.block
- format.book.crossref output.nonnull
- }
- if$
- format.edition output
- format.date "year" output.check
- new.block
- note output
- fin.entry
-}
-
-FUNCTION {incollection}
-{ output.bibitem
- format.authors "author" output.check
- new.block
- format.title "title" output.check
- new.block
- crossref missing$
- { format.in.ed.booktitle "booktitle" output.check
- format.bvolume output
- format.number.series output
- format.chapter.pages output
- new.sentence
- publisher "publisher" output.check
- address output
- format.edition output
- format.date "year" output.check
- }
- { format.incoll.inproc.crossref output.nonnull
- format.chapter.pages output
- }
- if$
- new.block
- note output
- fin.entry
-}
-
-FUNCTION {inproceedings}
-{ output.bibitem
- format.authors "author" output.check
- new.block
- format.title "title" output.check
- new.block
- crossref missing$
- { format.in.ed.booktitle "booktitle" output.check
- format.bvolume output
- format.number.series output
- format.pages output
- address empty$
- { organization publisher new.sentence.checkb
- organization output
- publisher output
- format.date "year" output.check
- }
- { address output.nonnull
- format.date "year" output.check
- new.sentence
- organization output
- publisher output
- }
- if$
- }
- { format.incoll.inproc.crossref output.nonnull
- format.pages output
- }
- if$
- new.block
- note output
- fin.entry
-}
-
-FUNCTION {conference} { inproceedings }
-
-FUNCTION {manual}
-{ output.bibitem
- author empty$
- { organization empty$
- 'skip$
- { organization output.nonnull
- address output
- }
- if$
- }
- { format.authors output.nonnull }
- if$
- new.block
- format.btitle "title" output.check
- author empty$
- { organization empty$
- { address new.block.checka
- address output
- }
- 'skip$
- if$
- }
- { organization address new.block.checkb
- organization output
- address output
- }
- if$
- format.edition output
- format.date output
- new.block
- note output
- fin.entry
-}
-
-FUNCTION {mastersthesis}
-{ output.bibitem
- format.authors "author" output.check
- new.block
- format.title "title" output.check
- new.block
- fr.master format.thesis.type output.nonnull
- school "school" output.check
- address output
- format.date "year" output.check
- new.block
- note output
- fin.entry
-}
-
-FUNCTION {misc}
-{ output.bibitem
- format.authors output
- title howpublished new.block.checkb
- format.title output
- howpublished new.block.checka
- howpublished output
- format.date output
- new.block
- note output
- fin.entry
- empty.misc.check
-}
-
-FUNCTION {phdthesis}
-{ output.bibitem
- format.authors "author" output.check
- new.block
- format.btitle "title" output.check
- new.block
- fr.phd format.thesis.type output.nonnull
- school "school" output.check
- address output
- format.date "year" output.check
- new.block
- note output
- fin.entry
-}
-
-FUNCTION {proceedings}
-{ output.bibitem
- editor empty$
- { organization output }
- { format.editors output.nonnull }
- if$
- new.block
- format.btitle "title" output.check
- format.bvolume output
- format.number.series output
- address empty$
- { editor empty$
- { publisher new.sentence.checka }
- { organization publisher new.sentence.checkb
- organization output
- }
- if$
- publisher output
- format.date "year" output.check
- }
- { address output.nonnull
- format.date "year" output.check
- new.sentence
- editor empty$
- 'skip$
- { organization output }
- if$
- publisher output
- }
- if$
- new.block
- note output
- fin.entry
-}
-
-FUNCTION {techreport}
-{ output.bibitem
- format.authors "author" output.check
- new.block
- format.title "title" output.check
- new.block
- format.tr.number output.nonnull
- institution "institution" output.check
- address output
- format.date "year" output.check
- new.block
- note output
- fin.entry
-}
-
-FUNCTION {unpublished}
-{ output.bibitem
- format.authors "author" output.check
- new.block
- format.title "title" output.check
- new.block
- note "note" output.check
- format.date output
- fin.entry
-}
-
-FUNCTION {default.type} { misc }
-
-MACRO {acmcs} {"ACM Computing Surveys"}
-MACRO {acta} {"Acta Informatica"}
-MACRO {cacm} {"Communications of the ACM"}
-MACRO {ibmjrd} {"IBM Journal of Research and Development"}
-MACRO {ibmsj} {"IBM Systems Journal"}
-MACRO {ieeese} {"IEEE Transactions on Software Engineering"}
-MACRO {ieeetc} {"IEEE Transactions on Computers"}
-MACRO {ieeetcad}
- {"IEEE Transactions on Computer-Aided Design of Integrated Circuits"}
-MACRO {ipl} {"Information Processing Letters"}
-MACRO {jacm} {"Journal of the ACM"}
-MACRO {jcss} {"Journal of Computer and System Sciences"}
-MACRO {scp} {"Science of Computer Programming"}
-MACRO {sicomp} {"SIAM Journal on Computing"}
-MACRO {tocs} {"ACM Transactions on Computer Systems"}
-MACRO {tods} {"ACM Transactions on Database Systems"}
-MACRO {tog} {"ACM Transactions on Graphics"}
-MACRO {toms} {"ACM Transactions on Mathematical Software"}
-MACRO {toois} {"ACM Transactions on Office Information Systems"}
-MACRO {toplas} {"ACM Transactions on Programming Languages and Systems"}
-MACRO {tcs} {"Theoretical Computer Science"}
-
-READ
-
-FUNCTION {sortify}
-{ purify$
- "l" change.case$
-}
-
-INTEGERS { len }
-
-FUNCTION {chop.word}
-{ 's :=
- 'len :=
- s #1 len substring$ =
- { s len #1 + global.max$ substring$ }
- 's
- if$
-}
-
-INTEGERS { et.al.char.used }
-
-FUNCTION {initialize.et.al.char.used}
-{ #0 'et.al.char.used :=
-}
-
-EXECUTE {initialize.et.al.char.used}
-
-FUNCTION {format.lab.names}
-{ 's :=
- s num.names$ 'numnames :=
- numnames #1 >
- { numnames #4 >
- { #3 'namesleft := }
- { numnames 'namesleft := }
- if$
- #1 'nameptr :=
- ""
- { namesleft #0 > }
- { nameptr numnames =
- { s nameptr "{ff }{vv }{ll}{ jj}" format.name$ "others" =
- { "{\etalchar{+}}" *
- #1 'et.al.char.used :=
- }
- { s nameptr "{v{}}{l{}}" format.name$ * }
- if$
- }
- { s nameptr "{v{}}{l{}}" format.name$ * }
- if$
- nameptr #1 + 'nameptr :=
- namesleft #1 - 'namesleft :=
- }
- while$
- numnames #4 >
- { "{\etalchar{+}}" *
- #1 'et.al.char.used :=
- }
- 'skip$
- if$
- }
- { s #1 "{v{}}{l{}}" format.name$
- duplicate$ text.length$ #2 <
- { pop$ s #1 "{ll}" format.name$ #3 text.prefix$ }
- 'skip$
- if$
- }
- if$
-}
-
-FUNCTION {author.key.label}
-{ author empty$
- { key empty$
- { cite$ #1 #3 substring$ }
- { key #3 text.prefix$ }
- if$
- }
- { author format.lab.names }
- if$
-}
-
-FUNCTION {author.editor.key.label}
-{ author empty$
- { editor empty$
- { key empty$
- { cite$ #1 #3 substring$ }
- { key #3 text.prefix$ }
- if$
- }
- { editor format.lab.names }
- if$
- }
- { author format.lab.names }
- if$
-}
-
-FUNCTION {author.key.organization.label}
-{ author empty$
- { key empty$
- { organization empty$
- { cite$ #1 #3 substring$ }
- { "Le " #3
- "La " #3
- "Les " #4
- "The " #4 organization chop.word
- chop.word
- chop.word
- chop.word #3 text.prefix$ }
- if$
- }
- { key #3 text.prefix$ }
- if$
- }
- { author format.lab.names }
- if$
-}
-
-FUNCTION {editor.key.organization.label}
-{ editor empty$
- { key empty$
- { organization empty$
- { cite$ #1 #3 substring$ }
- { "Le " #3
- "La " #3
- "Les " #4
- "The " #4 organization chop.word
- chop.word
- chop.word
- chop.word #3 text.prefix$ }
- if$
- }
- { key #3 text.prefix$ }
- if$
- }
- { editor format.lab.names }
- if$
-}
-
-FUNCTION {calc.label}
-{ type$ "book" =
- type$ "inbook" =
- or
- 'author.editor.key.label
- { type$ "proceedings" =
- 'editor.key.organization.label
- { type$ "manual" =
- 'author.key.organization.label
- 'author.key.label
- if$
- }
- if$
- }
- if$
- duplicate$
- year field.or.null purify$ #-1 #2 substring$
- *
- 'label :=
- year field.or.null purify$ #-1 #4 substring$
- *
- sortify 'sort.label :=
-}
-
-FUNCTION {sort.format.names}
-{ 's :=
- #1 'nameptr :=
- ""
- s num.names$ 'numnames :=
- numnames 'namesleft :=
- { namesleft #0 > }
- { nameptr #1 >
- { " " * }
- 'skip$
- if$
- s nameptr "{vv{ } }{ll{ }}{ ff{ }}{ jj{ }}" format.name$ 't :=
- nameptr numnames = t "others" = and
- { "et al" * }
- { t sortify * }
- if$
- nameptr #1 + 'nameptr :=
- namesleft #1 - 'namesleft :=
- }
- while$
-}
-
-FUNCTION {sort.format.title}
-{ 't :=
- "Le " #3
- "La " #3
- "Les " #4
- "Un " #3
- "Une " #4
- "Des " #4
- "A " #2
- "An " #3
- "The " #4 t chop.word
- chop.word
- chop.word
- chop.word
- chop.word
- chop.word
- chop.word
- chop.word
- chop.word
- sortify
- #1 global.max$ substring$
-}
-
-FUNCTION {author.sort}
-{ author empty$
- { key empty$
- { "to sort, need author or key in " cite$ * warning$
- ""
- }
- { key sortify }
- if$
- }
- { author sort.format.names }
- if$
-}
-
-FUNCTION {author.editor.sort}
-{ author empty$
- { editor empty$
- { key empty$
- { "to sort, need author, editor, or key in " cite$ * warning$
- ""
- }
- { key sortify }
- if$
- }
- { editor sort.format.names }
- if$
- }
- { author sort.format.names }
- if$
-}
-
-FUNCTION {author.organization.sort}
-{ author empty$
- { organization empty$
- { key empty$
- { "to sort, need author, organization, or key in " cite$ * warning$
- ""
- }
- { key sortify }
- if$
- }
- { "Le " #3
- "La " #3
- "Les " #4
- "The " #4 organization chop.word
- chop.word
- chop.word
- chop.word
- sortify }
- if$
- }
- { author sort.format.names }
- if$
-}
-
-FUNCTION {editor.organization.sort}
-{ editor empty$
- { organization empty$
- { key empty$
- { "to sort, need editor, organization, or key in " cite$ * warning$
- ""
- }
- { key sortify }
- if$
- }
- { "Le " #3
- "La " #3
- "Les " #4
- "The " #4 organization chop.word
- chop.word
- chop.word
- chop.word
- sortify }
- if$
- }
- { editor sort.format.names }
- if$
-}
-
-FUNCTION {presort}
-{ calc.label
- sort.label
- " "
- *
- type$ "book" =
- type$ "inbook" =
- or
- 'author.editor.sort
- { type$ "proceedings" =
- 'editor.organization.sort
- { type$ "manual" =
- 'author.organization.sort
- 'author.sort
- if$
- }
- if$
- }
- if$
- *
- " "
- *
- year field.or.null sortify
- *
- " "
- *
- title field.or.null
- sort.format.title
- *
- #1 entry.max$ substring$
- 'sort.key$ :=
-}
-
-ITERATE {presort}
-
-SORT
-
-STRINGS { longest.label last.sort.label next.extra }
-
-INTEGERS { longest.label.width last.extra.num }
-
-FUNCTION {initialize.longest.label}
-{ "" 'longest.label :=
- #0 int.to.chr$ 'last.sort.label :=
- "" 'next.extra :=
- #0 'longest.label.width :=
- #0 'last.extra.num :=
-}
-
-FUNCTION {forward.pass}
-{ last.sort.label sort.label =
- { last.extra.num #1 + 'last.extra.num :=
- last.extra.num int.to.chr$ 'extra.label :=
- }
- { "a" chr.to.int$ 'last.extra.num :=
- "" 'extra.label :=
- sort.label 'last.sort.label :=
- }
- if$
-}
-
-
-FUNCTION {reverse.pass}
-{ next.extra "b" =
- { "a" 'extra.label := }
- 'skip$
- if$
- label extra.label * 'label :=
- label width$ longest.label.width >
- { label 'longest.label :=
- label width$ 'longest.label.width :=
- }
- 'skip$
- if$
- extra.label 'next.extra :=
-}
-
-EXECUTE {initialize.longest.label}
-
-ITERATE {forward.pass}
-
-REVERSE {reverse.pass}
-
-FUNCTION {begin.bib}
-{ et.al.char.used
- { "\newcommand{\etalchar}[1]{$^{#1}$}" write$ newline$ }
- 'skip$
- if$
- preamble$ empty$
- 'skip$
- { preamble$ write$ newline$ }
- if$
- "\begin{thebibliography}{" longest.label * "}" * write$ newline$
- "\expandafter\ifx\csname fonteauteurs\endcsname\relax"
- write$ newline$
- "\def\fonteauteurs{" fr.auteurs.style * "}\fi" * write$ newline$
-}
-
-EXECUTE {begin.bib}
-
-EXECUTE {init.state.consts}
-
-ITERATE {call.type$}
-
-FUNCTION {end.bib}
-{ newline$
- "\end{thebibliography}" write$ newline$
-}
-
-EXECUTE {end.bib}
-
-
-%%
-%% Changelog :
-%% 1.0 -> 1.1 : les mois ne prennent pas de majuscule
-%% 1.1 -> 1.2 : le '.' qui suit la liste des auteurs peut etre
-%% change en autre chose (':' notamment).
-%%
+++ /dev/null
-% BibTeX standard bibliography style `plain'
- % Version 0.99b (8-Dec-10 release) for BibTeX versions 0.99a or later.
- % Copyright (C) 1984, 1985, 1988, 2010 Howard Trickey and Oren Patashnik.
- % Unlimited copying and redistribution of this file are permitted as long as
- % it is unmodified. Modifications (and redistribution of modified versions)
- % are also permitted, but only if the resulting file is renamed to something
- % besides btxbst.doc, plain.bst, unsrt.bst, alpha.bst, and abbrv.bst.
- % This restriction helps ensure that all standard styles are identical.
- % The file btxbst.doc has the documentation for this style.
-
-ENTRY
- { address
- author
- booktitle
- chapter
- edition
- editor
- howpublished
- institution
- journal
- key
- month
- note
- number
- organization
- pages
- publisher
- school
- series
- title
- type
- volume
- year
- url %% NICOLAS
- doi %% TOM
- isbn %% TOM
- }
- {}
- { label }
-
-INTEGERS { output.state before.all mid.sentence after.sentence after.block }
-
-FUNCTION {init.state.consts}
-{ #0 'before.all :=
- #1 'mid.sentence :=
- #2 'after.sentence :=
- #3 'after.block :=
-}
-
-STRINGS { s t }
-
-FUNCTION {output.nonnull}
-{ 's :=
- output.state mid.sentence =
- { ", " * write$ }
- { output.state after.block =
- { add.period$ write$
- newline$
- "\newblock " write$
- }
- { output.state before.all =
- 'write$
- { add.period$ " " * write$ }
- if$
- }
- if$
- mid.sentence 'output.state :=
- }
- if$
- s
-}
-
-FUNCTION {output}
-{ duplicate$ empty$
- 'pop$
- 'output.nonnull
- if$
-}
-
-FUNCTION {output.check}
-{ 't :=
- duplicate$ empty$
- { pop$ "empty " t * " in " * cite$ * warning$ }
- 'output.nonnull
- if$
-}
-
-FUNCTION {output.bibitem}
-{ newline$
- "\bibitem{" write$
- cite$ write$
- "}" write$
- newline$
- ""
- before.all 'output.state :=
-}
-
-FUNCTION {fin.entry}
-{ add.period$
- write$
- newline$
-}
-
-FUNCTION {new.block}
-{ output.state before.all =
- 'skip$
- { after.block 'output.state := }
- if$
-}
-
-FUNCTION {new.sentence}
-{ output.state after.block =
- 'skip$
- { output.state before.all =
- 'skip$
- { after.sentence 'output.state := }
- if$
- }
- if$
-}
-
-FUNCTION {not}
-{ { #0 }
- { #1 }
- if$
-}
-
-FUNCTION {and}
-{ 'skip$
- { pop$ #0 }
- if$
-}
-
-FUNCTION {or}
-{ { pop$ #1 }
- 'skip$
- if$
-}
-
-FUNCTION {new.block.checka}
-{ empty$
- 'skip$
- 'new.block
- if$
-}
-
-FUNCTION {new.block.checkb}
-{ empty$
- swap$ empty$
- and
- 'skip$
- 'new.block
- if$
-}
-
-FUNCTION {new.sentence.checka}
-{ empty$
- 'skip$
- 'new.sentence
- if$
-}
-
-FUNCTION {new.sentence.checkb}
-{ empty$
- swap$ empty$
- and
- 'skip$
- 'new.sentence
- if$
-}
-
-FUNCTION {field.or.null}
-{ duplicate$ empty$
- { pop$ "" }
- 'skip$
- if$
-}
-
-FUNCTION {emphasize}
-{ duplicate$ empty$
- { pop$ "" }
- { "{\em " swap$ * "}" * }
- if$
-}
-
-INTEGERS { nameptr namesleft numnames }
-
-FUNCTION {format.names}
-{ 's :=
- #1 'nameptr :=
- s num.names$ 'numnames :=
- numnames 'namesleft :=
- { namesleft #0 > }
- { s nameptr "{ff~}{vv~}{ll}{, jj}" format.name$ 't :=
- nameptr #1 >
- { namesleft #1 >
- { ", " * t * }
- { numnames #2 >
- { "," * }
- 'skip$
- if$
- t "others" =
- { " et~al." * }
- { " and " * t * }
- if$
- }
- if$
- }
- 't
- if$
- nameptr #1 + 'nameptr :=
- namesleft #1 - 'namesleft :=
- }
- while$
-}
-
-FUNCTION {format.authors}
-{ author empty$
- { "" }
- { author format.names }
- if$
-}
-
-FUNCTION {format.editors}
-{ editor empty$
- { "" }
- { editor format.names
- editor num.names$ #1 >
- { ", editors" * }
- { ", editor" * }
- if$
- }
- if$
-}
-
-%% NICOLAS
-FUNCTION {format.title.orig}
-{ title empty$
- { "" }
- { title "t" change.case$ }
- if$
-}
-
-%% NICOLAS + TOM
-FUNCTION {format.title}
-{ doi empty$
- { url empty$
- { format.title.orig }
- { new.block "\href{" url * "}{" * format.title.orig * "}" * }
- if$
- }
- { new.block "\href{http://doi.org/" doi * "}{" * format.title.orig * "}" * }
- if$
-}
-
-FUNCTION {n.dashify}
-{ 't :=
- ""
- { t empty$ not }
- { t #1 #1 substring$ "-" =
- { t #1 #2 substring$ "--" = not
- { "--" *
- t #2 global.max$ substring$ 't :=
- }
- { { t #1 #1 substring$ "-" = }
- { "-" *
- t #2 global.max$ substring$ 't :=
- }
- while$
- }
- if$
- }
- { t #1 #1 substring$ *
- t #2 global.max$ substring$ 't :=
- }
- if$
- }
- while$
-}
-
-FUNCTION {format.date}
-{ year empty$
- { month empty$
- { "" }
- { "there's a month but no year in " cite$ * warning$
- month
- }
- if$
- }
- { month empty$
- 'year
- { month " " * year * }
- if$
- }
- if$
-}
-
-FUNCTION {format.btitle}
-{ title emphasize
-}
-
-FUNCTION {tie.or.space.connect}
-{ duplicate$ text.length$ #3 <
- { "~" }
- { " " }
- if$
- swap$ * *
-}
-
-FUNCTION {either.or.check}
-{ empty$
- 'pop$
- { "can't use both " swap$ * " fields in " * cite$ * warning$ }
- if$
-}
-
-FUNCTION {format.bvolume}
-{ volume empty$
- { "" }
- { "volume" volume tie.or.space.connect
- series empty$
- 'skip$
- { " of " * series emphasize * }
- if$
- "volume and number" number either.or.check
- }
- if$
-}
-
-FUNCTION {format.number.series}
-{ volume empty$
- { number empty$
- { series field.or.null }
- { output.state mid.sentence =
- { "number" }
- { "Number" }
- if$
- number tie.or.space.connect
- series empty$
- { "there's a number but no series in " cite$ * warning$ }
- { " in " * series * }
- if$
- }
- if$
- }
- { "" }
- if$
-}
-
-FUNCTION {format.edition}
-{ edition empty$
- { "" }
- { output.state mid.sentence =
- { edition "l" change.case$ " edition" * }
- { edition "t" change.case$ " edition" * }
- if$
- }
- if$
-}
-
-INTEGERS { multiresult }
-
-FUNCTION {multi.page.check}
-{ 't :=
- #0 'multiresult :=
- { multiresult not
- t empty$ not
- and
- }
- { t #1 #1 substring$
- duplicate$ "-" =
- swap$ duplicate$ "," =
- swap$ "+" =
- or or
- { #1 'multiresult := }
- { t #2 global.max$ substring$ 't := }
- if$
- }
- while$
- multiresult
-}
-
-FUNCTION {format.pages}
-{ pages empty$
- { "" }
- { pages multi.page.check
- { "pages" pages n.dashify tie.or.space.connect }
- { "page" pages tie.or.space.connect }
- if$
- }
- if$
-}
-
-FUNCTION {format.vol.num.pages}
-{ volume field.or.null
- number empty$
- 'skip$
- { "(" number * ")" * *
- volume empty$
- { "there's a number but no volume in " cite$ * warning$ }
- 'skip$
- if$
- }
- if$
- pages empty$
- 'skip$
- { duplicate$ empty$
- { pop$ format.pages }
- { ":" * pages n.dashify * }
- if$
- }
- if$
-}
-
-FUNCTION {format.chapter.pages}
-{ chapter empty$
- 'format.pages
- { type empty$
- { "chapter" }
- { type "l" change.case$ }
- if$
- chapter tie.or.space.connect
- pages empty$
- 'skip$
- { ", " * format.pages * }
- if$
- }
- if$
-}
-
-FUNCTION {format.in.ed.booktitle}
-{ booktitle empty$
- { "" }
- { editor empty$
- { "In " booktitle emphasize * }
- { "In " format.editors * ", " * booktitle emphasize * }
- if$
- }
- if$
-}
-
-FUNCTION {empty.misc.check}
-{ author empty$ title empty$ howpublished empty$
- month empty$ year empty$ note empty$
- and and and and and
- key empty$ not and
- { "all relevant fields are empty in " cite$ * warning$ }
- 'skip$
- if$
-}
-
-FUNCTION {format.thesis.type}
-{ type empty$
- 'skip$
- { pop$
- type "t" change.case$
- }
- if$
-}
-
-FUNCTION {format.tr.number}
-{ type empty$
- { "Technical Report" }
- 'type
- if$
- number empty$
- { "t" change.case$ }
- { number tie.or.space.connect }
- if$
-}
-
-FUNCTION {format.article.crossref}
-{ key empty$
- { journal empty$
- { "need key or journal for " cite$ * " to crossref " * crossref *
- warning$
- ""
- }
- { "In {\em " journal * "\/}" * }
- if$
- }
- { "In " key * }
- if$
- " \cite{" * crossref * "}" *
-}
-
-FUNCTION {format.crossref.editor}
-{ editor #1 "{vv~}{ll}" format.name$
- editor num.names$ duplicate$
- #2 >
- { pop$ " et~al." * }
- { #2 <
- 'skip$
- { editor #2 "{ff }{vv }{ll}{ jj}" format.name$ "others" =
- { " et~al." * }
- { " and " * editor #2 "{vv~}{ll}" format.name$ * }
- if$
- }
- if$
- }
- if$
-}
-
-FUNCTION {format.book.crossref}
-{ volume empty$
- { "empty volume in " cite$ * "'s crossref of " * crossref * warning$
- "In "
- }
- { "Volume" volume tie.or.space.connect
- " of " *
- }
- if$
- editor empty$
- editor field.or.null author field.or.null =
- or
- { key empty$
- { series empty$
- { "need editor, key, or series for " cite$ * " to crossref " *
- crossref * warning$
- "" *
- }
- { "{\em " * series * "\/}" * }
- if$
- }
- { key * }
- if$
- }
- { format.crossref.editor * }
- if$
- " \cite{" * crossref * "}" *
-}
-
-FUNCTION {format.incoll.inproc.crossref}
-{ editor empty$
- editor field.or.null author field.or.null =
- or
- { key empty$
- { booktitle empty$
- { "need editor, key, or booktitle for " cite$ * " to crossref " *
- crossref * warning$
- ""
- }
- { "In {\em " booktitle * "\/}" * }
- if$
- }
- { "In " key * }
- if$
- }
- { "In " format.crossref.editor * }
- if$
- " \cite{" * crossref * "}" *
-}
-
-FUNCTION {doilink}
-{ duplicate$ empty$
-{ pop$ "" }
-{ doi empty$
- { skip$ }
- { "\href{http://doi.org/" doi * "}{" * swap$ * "}" * }
- if$
-}
-if$
-}
-
-FUNCTION {isbnlink}
-{ duplicate$ empty$
-{ pop$ "" }
-{ isbn empty$
- { skip$ }
- { "\href{https://isbnsearch.org/isbn/" isbn * "}{" * swap$ * "}" * }
- if$
-}
-if$
-}
-
-FUNCTION {article}
-{ output.bibitem
- format.authors "author" output.check
- new.block
- format.title "title" output.check
- new.block
- crossref missing$
- { journal emphasize "journal" output.check
- format.vol.num.pages output
- format.date "year" output.check
- }
- { format.article.crossref output.nonnull
- format.pages output
- }
- if$
- new.block
- note output
- fin.entry
-}
-
-% TOM
-FUNCTION {patent}
-{ output.bibitem
- author empty$
- { format.editors "author and editor" output.check }
- { format.authors output.nonnull
- crossref missing$
- { "author and editor" editor either.or.check }
- 'skip$
- if$
- }
- if$
- new.block
-
- % NICOLAS
- doi empty$
- { url empty$
- { format.btitle }
- { "\href{" url * "}{" * format.btitle * "}" * }
- if$
- }
- { "\href{http://doi.org/" doi * "}{" * format.btitle * "}" * }
- if$
- "title" output.check
- %format.btitle "title" output.check
-
- number output
- format.date "year" output.check
- new.block
- note output
- fin.entry
-}
-
-
-FUNCTION {book}
-{ output.bibitem
- author empty$
- { format.editors "author and editor" output.check }
- { format.authors output.nonnull
- crossref missing$
- { "author and editor" editor either.or.check }
- 'skip$
- if$
- }
- if$
- new.block
-
- % NICOLAS TOM
- doi empty$
- { url empty$
- { isbn empty$
- { format.btitle}
- { "\href{https://isbnsearch.org/isbn/" isbn * "}{" * format.btitle * "}" * }
- if$
- }
- { "\href{" url * "}{" * format.btitle * "}" * }
- if$
- }
- { "\href{http://doi.org/" doi * "}{" * format.btitle * "}" * }
- if$
- "title" output.check
- %format.btitle "title" output.check
-
- crossref missing$
- { format.bvolume output
- new.block
- format.number.series output
- new.sentence
- publisher "publisher" output.check
- address output
- }
- { new.block
- format.book.crossref output.nonnull
- }
- if$
- format.edition output
- format.date "year" output.check
- new.block
- note output
- fin.entry
-}
-
-FUNCTION {booklet}
-{ output.bibitem
- format.authors output
- new.block
- format.title "title" output.check
- howpublished address new.block.checkb
- howpublished output
- address output
- format.date output
- new.block
- note output
- fin.entry
-}
-
-FUNCTION {inbook}
-{ output.bibitem
- author empty$
- { format.editors "author and editor" output.check }
- { format.authors output.nonnull
- crossref missing$
- { "author and editor" editor either.or.check }
- 'skip$
- if$
- }
- if$
- new.block
-
- % NICOLAS
- doi empty$
- { url empty$
- { format.btitle }
- { "\href{" url * "}{" * format.btitle * "}" * }
- if$
- }
- { "\href{http://doi.org/" doi * "}{" * format.btitle * "}" * }
- if$
- "title" output.check
- %format.btitle "title" output.check
-
- crossref missing$
- { format.bvolume output
- format.chapter.pages "chapter and pages" output.check
- new.block
- format.number.series output
- new.sentence
- publisher "publisher" output.check
- address output
- }
- { format.chapter.pages "chapter and pages" output.check
- new.block
- format.book.crossref output.nonnull
- }
- if$
- format.edition output
- format.date "year" output.check
- new.block
- note output
- fin.entry
-}
-
-FUNCTION {incollection}
-{ output.bibitem
- format.authors "author" output.check
- new.block
-
-
- % NICOLAS
- doi empty$
- { url empty$
- { format.btitle }
- { "\href{" url * "}{" * format.title * "}" * }
- if$
- }
- { "\href{http://doi.org/" doi * "}{" * format.title * "}" * }
- if$
- "title" output.check
- %format.title "title" output.check
-
- new.block
- crossref missing$
- { format.in.ed.booktitle "booktitle" output.check
- format.bvolume output
- format.number.series output
- format.chapter.pages output
- new.sentence
- publisher "publisher" output.check
- address output
- format.edition output
- format.date "year" output.check
- }
- { format.incoll.inproc.crossref output.nonnull
- format.chapter.pages output
- }
- if$
- new.block
- note output
- fin.entry
-}
-
-FUNCTION {inproceedings}
-{ output.bibitem
- format.authors "author" output.check
- new.block
- format.title "title" output.check
- new.block
- crossref missing$
- { format.in.ed.booktitle "booktitle" output.check
- format.bvolume output
- format.number.series output
- format.pages output
- address empty$
- { organization publisher new.sentence.checkb
- organization output
- publisher output
- format.date "year" output.check
- }
- { address output.nonnull
- format.date "year" output.check
- new.sentence
- organization output
- publisher output
- }
- if$
- }
- { format.incoll.inproc.crossref output.nonnull
- format.pages output
- }
- if$
- new.block
- note output
- fin.entry
-}
-
-FUNCTION {conference} { inproceedings }
-
-FUNCTION {manual}
-{ output.bibitem
- author empty$
- { organization empty$
- 'skip$
- { organization output.nonnull
- address output
- }
- if$
- }
- { format.authors output.nonnull }
- if$
- new.block
- format.btitle "title" output.check
- author empty$
- { organization empty$
- { address new.block.checka
- address output
- }
- 'skip$
- if$
- }
- { organization address new.block.checkb
- organization output
- address output
- }
- if$
- format.edition output
- format.date output
- new.block
- note output
- fin.entry
-}
-
-FUNCTION {mastersthesis}
-{ output.bibitem
- format.authors "author" output.check
- new.block
-
- % TOM
- url empty$
- { format.title }
- { "\href{" url * "}{" * format.title * "}" * }
- if$
- "title" output.check
- %format.title "title" output.check
-
- new.block
- "Master's thesis" format.thesis.type output.nonnull
- school "school" output.check
- address output
- format.date "year" output.check
- new.block
- note output
- fin.entry
-}
-
-FUNCTION {misc}
-{ output.bibitem
- format.authors output
- title howpublished new.block.checkb
- format.title output
- howpublished new.block.checka
- howpublished output
- format.date output
- new.block
- note output
- fin.entry
- empty.misc.check
-}
-
-FUNCTION {phdthesis}
-{ output.bibitem
- format.authors "author" output.check
- new.block
-
- % TOM
- url empty$
- { format.btitle }
- { "\href{" url * "}{" * format.btitle * "}" * }
- if$
- "title" output.check
- %format.btitle "title" output.check
-
- new.block
- "PhD thesis" format.thesis.type output.nonnull
- school "school" output.check
- address output
- format.date "year" output.check
- new.block
- note output
- fin.entry
-}
-
-FUNCTION {proceedings}
-{ output.bibitem
- editor empty$
- { organization output }
- { format.editors output.nonnull }
- if$
- new.block
- format.btitle "title" output.check
- format.bvolume output
- format.number.series output
- address empty$
- { editor empty$
- { publisher new.sentence.checka }
- { organization publisher new.sentence.checkb
- organization output
- }
- if$
- publisher output
- format.date "year" output.check
- }
- { address output.nonnull
- format.date "year" output.check
- new.sentence
- editor empty$
- 'skip$
- { organization output }
- if$
- publisher output
- }
- if$
- new.block
- note output
- fin.entry
-}
-
-FUNCTION {techreport}
-{ output.bibitem
- format.authors "author" output.check
- new.block
- format.title "title" output.check
- new.block
- format.tr.number output.nonnull
- institution "institution" output.check
- address output
- format.date "year" output.check
- new.block
- note output
- fin.entry
-}
-
-FUNCTION {unpublished}
-{ output.bibitem
- format.authors "author" output.check
- new.block
- format.title "title" output.check
- new.block
- note "note" output.check
- format.date output
- fin.entry
-}
-
-FUNCTION {default.type} { misc }
-
-MACRO {jan} {"January"}
-
-MACRO {feb} {"February"}
-
-MACRO {mar} {"March"}
-
-MACRO {apr} {"April"}
-
-MACRO {may} {"May"}
-
-MACRO {jun} {"June"}
-
-MACRO {jul} {"July"}
-
-MACRO {aug} {"August"}
-
-MACRO {sep} {"September"}
-
-MACRO {oct} {"October"}
-
-MACRO {nov} {"November"}
-
-MACRO {dec} {"December"}
-
-MACRO {acmcs} {"ACM Computing Surveys"}
-
-MACRO {acta} {"Acta Informatica"}
-
-MACRO {cacm} {"Communications of the ACM"}
-
-MACRO {ibmjrd} {"IBM Journal of Research and Development"}
-
-MACRO {ibmsj} {"IBM Systems Journal"}
-
-MACRO {ieeese} {"IEEE Transactions on Software Engineering"}
-
-MACRO {ieeetc} {"IEEE Transactions on Computers"}
-
-MACRO {ieeetcad}
- {"IEEE Transactions on Computer-Aided Design of Integrated Circuits"}
-
-MACRO {ipl} {"Information Processing Letters"}
-
-MACRO {jacm} {"Journal of the ACM"}
-
-MACRO {jcss} {"Journal of Computer and System Sciences"}
-
-MACRO {scp} {"Science of Computer Programming"}
-
-MACRO {sicomp} {"SIAM Journal on Computing"}
-
-MACRO {tocs} {"ACM Transactions on Computer Systems"}
-
-MACRO {tods} {"ACM Transactions on Database Systems"}
-
-MACRO {tog} {"ACM Transactions on Graphics"}
-
-MACRO {toms} {"ACM Transactions on Mathematical Software"}
-
-MACRO {toois} {"ACM Transactions on Office Information Systems"}
-
-MACRO {toplas} {"ACM Transactions on Programming Languages and Systems"}
-
-MACRO {tcs} {"Theoretical Computer Science"}
-
-READ
-
-FUNCTION {sortify}
-{ purify$
- "l" change.case$
-}
-
-INTEGERS { len }
-
-FUNCTION {chop.word}
-{ 's :=
- 'len :=
- s #1 len substring$ =
- { s len #1 + global.max$ substring$ }
- 's
- if$
-}
-
-FUNCTION {sort.format.names}
-{ 's :=
- #1 'nameptr :=
- ""
- s num.names$ 'numnames :=
- numnames 'namesleft :=
- { namesleft #0 > }
- { nameptr #1 >
- { " " * }
- 'skip$
- if$
- s nameptr "{vv{ } }{ll{ }}{ ff{ }}{ jj{ }}" format.name$ 't :=
- nameptr numnames = t "others" = and
- { "et al" * }
- { t sortify * }
- if$
- nameptr #1 + 'nameptr :=
- namesleft #1 - 'namesleft :=
- }
- while$
-}
-
-FUNCTION {sort.format.title}
-{ 't :=
- "A " #2
- "An " #3
- "The " #4 t chop.word
- chop.word
- chop.word
- sortify
- #1 global.max$ substring$
-}
-
-FUNCTION {author.sort}
-{ author empty$
- { key empty$
- { "to sort, need author or key in " cite$ * warning$
- ""
- }
- { key sortify }
- if$
- }
- { author sort.format.names }
- if$
-}
-
-FUNCTION {author.editor.sort}
-{ author empty$
- { editor empty$
- { key empty$
- { "to sort, need author, editor, or key in " cite$ * warning$
- ""
- }
- { key sortify }
- if$
- }
- { editor sort.format.names }
- if$
- }
- { author sort.format.names }
- if$
-}
-
-FUNCTION {author.organization.sort}
-{ author empty$
- { organization empty$
- { key empty$
- { "to sort, need author, organization, or key in " cite$ * warning$
- ""
- }
- { key sortify }
- if$
- }
- { "The " #4 organization chop.word sortify }
- if$
- }
- { author sort.format.names }
- if$
-}
-
-FUNCTION {editor.organization.sort}
-{ editor empty$
- { organization empty$
- { key empty$
- { "to sort, need editor, organization, or key in " cite$ * warning$
- ""
- }
- { key sortify }
- if$
- }
- { "The " #4 organization chop.word sortify }
- if$
- }
- { editor sort.format.names }
- if$
-}
-
-FUNCTION {presort}
-{ type$ "book" =
- type$ "inbook" =
- or
- 'author.editor.sort
- { type$ "proceedings" =
- 'editor.organization.sort
- { type$ "manual" =
- 'author.organization.sort
- 'author.sort
- if$
- }
- if$
- }
- if$
- " "
- *
- year field.or.null sortify
- *
- " "
- *
- title field.or.null
- sort.format.title
- *
- #1 entry.max$ substring$
- 'sort.key$ :=
-}
-
-ITERATE {presort}
-
-SORT
-
-STRINGS { longest.label }
-
-INTEGERS { number.label longest.label.width }
-
-FUNCTION {initialize.longest.label}
-{ "" 'longest.label :=
- #1 'number.label :=
- #0 'longest.label.width :=
-}
-
-FUNCTION {longest.label.pass}
-{ number.label int.to.str$ 'label :=
- number.label #1 + 'number.label :=
- label width$ longest.label.width >
- { label 'longest.label :=
- label width$ 'longest.label.width :=
- }
- 'skip$
- if$
-}
-
-EXECUTE {initialize.longest.label}
-
-ITERATE {longest.label.pass}
-
-FUNCTION {begin.bib}
-{ preamble$ empty$
- 'skip$
- { preamble$ write$ newline$ }
- if$
- "\begin{thebibliography}{" longest.label * "}" * write$ newline$
-}
-
-EXECUTE {begin.bib}
-
-EXECUTE {init.state.consts}
-
-ITERATE {call.type$}
-
-FUNCTION {end.bib}
-{ newline$
- "\end{thebibliography}" write$ newline$
-}
-
-EXECUTE {end.bib}
+++ /dev/null
-%%
-%% Bib. style "unsrt-fr" (version francisee de unsrt.bst)
-%%
-%% NM, 2004/02/22
-%% markey@lsv.ens-cachan.fr
-%%
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-%% Original Copyright (Oren Patashnik):
-%%
- % This program may be distributed and/or modified under the
- % conditions of the LaTeX Project Public License, either version 1.2
- % of this license or (at your option) any later version.
- % The latest version of this license is in
- % http://www.latex-project.org/lppl.txt
- % and version 1.2 or later is part of all distributions of LaTeX
- % version 1999/12/01 or later.
- %
- % This program consists of the files unsrt.bst
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-
-ENTRY
- { address
- author
- booktitle
- chapter
- edition
- editor
- howpublished
- institution
- journal
- key
- month
- note
- number
- organization
- pages
- publisher
- school
- series
- title
- type
- volume
- year
- }
- {}
- { label }
-
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-%%
-%% C'est ici que je definis les "traductions". Normalement, y a que ca a changer
-%% pour franciser le style...
-%%
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-
-FUNCTION{fr.and}{ %% le "et" entre les deux derniers auteurs
-" et "
-}
-
-FUNCTION{fr.editeur}{ %% ", \'editeur" au singulier, ou " (\'editeur)"...
-", \'editeur"
-}
-
-FUNCTION{fr.editeurs}{ %% ", \'editeurs" au pluriel, ou " (\'editeurs)"...
-", \'editeurs"
-}
-
-FUNCTION{fr.et.al}{ %% " et~al."
-" \emph{et~al.}"
-}
-
-FUNCTION{fr.in}{ %% "In "
-"\emph{In} "
-}
-
-FUNCTION{fr.in.spc}{ %% " de " (ou " de la s\'erie ")
-" de "
-}
-
-FUNCTION{fr.of}{ %% " de "
-" de "
-}
-
-FUNCTION{fr.number}{ %% "num\'ero "
-"num\'ero "
-}
-
-FUNCTION{fr.number.maj}{ %% "Num\'ero "
-"Num\'ero "
-}
-
-FUNCTION{fr.volume}{ %% "volume"
-"volume"
-}
-
-FUNCTION{fr.volume.maj}{ %% "Volume"
-"Volume"
-}
-
-FUNCTION{fr.edition}{ %% " \'edition"
-" \'edition"
-}
-
-FUNCTION{fr.pages}{ %% "pages"
-"pages"
-}
-
-FUNCTION{fr.page}{ %% "page"
-"page"
-}
-
-FUNCTION{fr.chapter}{ %% "chapitre"
-"chapitre"
-}
-
-FUNCTION{fr.tech.rep}{ %% "Rapport Technique"
-"Rapport technique"
-}
-
-FUNCTION{fr.master}{ %% "M\'emoire de D.E.A."
-"M\'emoire de D.E.A."
-}
-
-FUNCTION{fr.phd}{ %% "Th\`ese de doctorat"
-"Th\`ese de doctorat"
-}
-
-FUNCTION{fr.auteurs.style}{
- %% si on veut des small caps sur le LASTNAME de l'auteur
- %% Cette fonction est utilisee dans la definition d'une
- %% fonction LaTeX.
-"\scshape"
-}
-
-FUNCTION{fr.ponctuation.apres.auteurs}{ %% Comme son nom l'indique...
-" : "
-}
-
-FUNCTION{fr.deuxpoints}{ %% Pour eviter l'espace avant les ":".
-"\string:\penalty500\relax "
-}
-
-MACRO {jan} {"janvier"}
-MACRO {feb} {"f\'evrier"}
-MACRO {mar} {"mars"}
-MACRO {apr} {"avril"}
-MACRO {may} {"mai"}
-MACRO {jun} {"juin"}
-MACRO {jul} {"juillet"}
-MACRO {aug} {"ao\^ut"}
-MACRO {sep} {"septembre"}
-MACRO {oct} {"octobre"}
-MACRO {nov} {"novembre"}
-MACRO {dec} {"d\'ecembre"}
-
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-%%
-%% La suite, normalement, y a rien a changer...
-%%
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-
-
-
-
-
-INTEGERS { output.state before.all mid.sentence after.sentence after.block after.authors }
-
-FUNCTION {init.state.consts}
-{ #0 'before.all :=
- #1 'mid.sentence :=
- #2 'after.sentence :=
- #3 'after.block :=
- #0 'after.authors :=
-}
-
-STRINGS { s t }
-
-FUNCTION{ fr.add.period }{
-after.authors
- { fr.ponctuation.apres.auteurs empty$
- { add.period$ }
- { fr.ponctuation.apres.auteurs * #0 'after.authors := }
- if$}
- { add.period$ }
-if$
-}
-
-FUNCTION {output.nonnull}
-{ 's :=
- output.state mid.sentence =
- { ", " * write$ }
- { output.state after.block =
- { fr.add.period write$
- newline$
- "\newblock " write$
- }
- { output.state before.all =
- 'write$
- { add.period$ " " * write$ }
- if$
- }
- if$
- mid.sentence 'output.state :=
- }
- if$
- s
-}
-
-FUNCTION {output}
-{ duplicate$ empty$
- 'pop$
- 'output.nonnull
- if$
-}
-
-FUNCTION {output.check}
-{ 't :=
- duplicate$ empty$
- { pop$ "empty " t * " in " * cite$ * warning$ }
- 'output.nonnull
- if$
-}
-
-FUNCTION {output.bibitem}
-{ newline$
- "\bibitem{" write$
- cite$ write$
- "}" write$
- newline$
- ""
- before.all 'output.state :=
-}
-
-FUNCTION {fin.entry}
-{ add.period$
- write$
- newline$
-}
-
-FUNCTION {new.block}
-{ output.state before.all =
- 'skip$
- { after.block 'output.state := }
- if$
-}
-
-FUNCTION {new.sentence}
-{ output.state after.block =
- 'skip$
- { output.state before.all =
- 'skip$
- { after.sentence 'output.state := }
- if$
- }
- if$
-}
-
-FUNCTION {not}
-{ { #0 }
- { #1 }
- if$
-}
-
-FUNCTION {and}
-{ 'skip$
- { pop$ #0 }
- if$
-}
-
-FUNCTION {or}
-{ { pop$ #1 }
- 'skip$
- if$
-}
-
-FUNCTION {new.block.checka}
-{ empty$
- 'skip$
- 'new.block
- if$
-}
-
-FUNCTION {new.block.checkb}
-{ empty$
- swap$ empty$
- and
- 'skip$
- 'new.block
- if$
-}
-
-FUNCTION {new.sentence.checka}
-{ empty$
- 'skip$
- 'new.sentence
- if$
-}
-
-FUNCTION {new.sentence.checkb}
-{ empty$
- swap$ empty$
- and
- 'skip$
- 'new.sentence
- if$
-}
-
-FUNCTION {field.or.null}
-{ duplicate$ empty$
- { pop$ "" }
- 'skip$
- if$
-}
-
-FUNCTION {emphasize}
-{ duplicate$ empty$
- { pop$ "" }
- { "{\em " swap$ * "}" * }
- if$
-}
-
-INTEGERS { nameptr namesleft numnames }
-
-FUNCTION {format.names}
-{ 's :=
- #1 'nameptr :=
- s num.names$ 'numnames :=
- numnames 'namesleft :=
- { namesleft #0 > }
- { s nameptr "{ff~}{vv~}\bgroup\fonteauteurs\bgroup {ll}\egroup\egroup{{}}{, jj}" format.name$ 't :=
- nameptr #1 >
- { namesleft #1 >
- { ", " * t * }
- { %numnames #2 > namesleft #2 > and
- % { "," * }
- % 'skip$
- %if$
- t "\bgroup\fonteauteurs\bgroup others\egroup\egroup{}" =
- { fr.et.al * }
- { fr.and * t * }
- if$
- }
- if$
- }
- 't
- if$
- nameptr #1 + 'nameptr :=
- namesleft #1 - 'namesleft :=
- }
- while$
-}
-
-FUNCTION {format.authors}
-{ author empty$
- { "" }
- { author format.names #1 'after.authors := }
- if$
-}
-
-FUNCTION {format.editors}
-{ editor empty$
- { "" }
- { editor format.names
- editor num.names$ #1 >
- { fr.editeurs * }
- { fr.editeur * }
- if$
- }
- if$
-}
-
-FUNCTION {format.title}
-{ title empty$
- { "" }
- { title "t" change.case$ }
- if$
-}
-
-FUNCTION {n.dashify}
-{ 't :=
- ""
- { t empty$ not }
- { t #1 #1 substring$ "-" =
- { t #1 #2 substring$ "--" = not
- { "--" *
- t #2 global.max$ substring$ 't :=
- }
- { { t #1 #1 substring$ "-" = }
- { "-" *
- t #2 global.max$ substring$ 't :=
- }
- while$
- }
- if$
- }
- { t #1 #1 substring$ *
- t #2 global.max$ substring$ 't :=
- }
- if$
- }
- while$
-}
-
-FUNCTION {format.date}
-{ year empty$
- { month empty$
- { "" }
- { "there's a month but no year in " cite$ * warning$
- month
- }
- if$
- }
- { month empty$
- 'year
- { month " " * year * }
- if$
- }
- if$
-}
-
-FUNCTION {format.btitle}
-{ title emphasize
-}
-
-FUNCTION {tie.or.space.connect}
-{ duplicate$ text.length$ #3 <
- { "~" }
- { " " }
- if$
- swap$ * *
-}
-
-FUNCTION {either.or.check}
-{ empty$
- 'pop$
- { "can't use both " swap$ * " fields in " * cite$ * warning$ }
- if$
-}
-
-FUNCTION {format.bvolume}
-{ volume empty$
- { "" }
- { fr.volume volume tie.or.space.connect
- series empty$
- 'skip$
- { fr.of * series emphasize * }
- if$
- "volume and number" number either.or.check
- }
- if$
-}
-
-FUNCTION {format.number.series}
-{ volume empty$
- { number empty$
- { series field.or.null }
- { output.state mid.sentence =
- { fr.number }
- { fr.number.maj }
- if$
- number tie.or.space.connect
- series empty$
- { "there's a number but no series in " cite$ * warning$ }
- { fr.in.spc * series * }
- if$
- }
- if$
- }
- { "" }
- if$
-}
-
-FUNCTION {format.edition}
-{ edition empty$
- { "" }
- { output.state mid.sentence =
- { edition "l" change.case$ fr.edition * }
- { edition "t" change.case$ fr.edition * }
- if$
- }
- if$
-}
-
-INTEGERS { multiresult }
-
-FUNCTION {multi.page.check}
-{ 't :=
- #0 'multiresult :=
- { multiresult not
- t empty$ not
- and
- }
- { t #1 #1 substring$
- duplicate$ "-" =
- swap$ duplicate$ "," =
- swap$ "+" =
- or or
- { #1 'multiresult := }
- { t #2 global.max$ substring$ 't := }
- if$
- }
- while$
- multiresult
-}
-
-FUNCTION {format.pages}
-{ pages empty$
- { "" }
- { pages multi.page.check
- { fr.pages pages n.dashify tie.or.space.connect }
- { fr.page pages tie.or.space.connect }
- if$
- }
- if$
-}
-
-FUNCTION {format.vol.num.pages}
-{ volume field.or.null
- number empty$
- 'skip$
- { "(" number * ")" * *
- volume empty$
- { "there's a number but no volume in " cite$ * warning$ }
- 'skip$
- if$
- }
- if$
- pages empty$
- 'skip$
- { duplicate$ empty$
- { pop$ format.pages }
- { fr.deuxpoints * pages n.dashify * }
- if$
- }
- if$
-}
-
-FUNCTION {format.chapter.pages}
-{ chapter empty$
- 'format.pages
- { type empty$
- { fr.chapter }
- { type "l" change.case$ }
- if$
- chapter tie.or.space.connect
- pages empty$
- 'skip$
- { ", " * format.pages * }
- if$
- }
- if$
-}
-
-FUNCTION {format.in.ed.booktitle}
-{ booktitle empty$
- { "" }
- { editor empty$
- { fr.in booktitle emphasize * }
- { fr.in format.editors #1 'after.authors := fr.add.period " " * * booktitle emphasize * }
- if$
- }
- if$
-}
-
-FUNCTION {empty.misc.check}
-{ author empty$ title empty$ howpublished empty$
- month empty$ year empty$ note empty$
- and and and and and
- { "all relevant fields are empty in " cite$ * warning$ }
- 'skip$
- if$
-}
-
-FUNCTION {format.thesis.type}
-{ type empty$
- 'skip$
- { pop$
- type "t" change.case$
- }
- if$
-}
-
-FUNCTION {format.tr.number}
-{ type empty$
- { fr.tech.rep }
- 'type
- if$
- number empty$
- { "t" change.case$ }
- { number tie.or.space.connect }
- if$
-}
-
-FUNCTION {format.article.crossref}
-{ key empty$
- { journal empty$
- { "need key or journal for " cite$ * " to crossref " * crossref *
- warning$
- ""
- }
- { fr.in "{\em " * journal * "\/}" * }
- if$
- }
- { fr.in key * }
- if$
- " \cite{" * crossref * "}" *
-}
-
-FUNCTION {format.crossref.editor}
-{ editor #1 "{vv~}\bgroup\fonteauteurs\bgroup {ll}\egroup\egroup{{}}" format.name$
- editor num.names$ duplicate$
- #2 >
- { pop$ fr.et.al * }
- { #2 <
- 'skip$
- { editor #2 "{ff }{vv }{ll}{ jj}" format.name$ "others" =
- { fr.et.al * }
- { fr.and * editor #2 "{vv~}\bgroup\fonteauteurs\bgroup {ll}\egroup\egroup{{}}" format.name$ * }
- if$
- }
- if$
- }
- if$
-}
-
-FUNCTION {format.book.crossref}
-{ volume empty$
- { "empty volume in " cite$ * "'s crossref of " * crossref * warning$
- fr.in
- }
- { fr.volume.maj volume tie.or.space.connect
- fr.of *
- }
- if$
- editor empty$
- editor field.or.null author field.or.null =
- or
- { key empty$
- { series empty$
- { "need editor, key, or series for " cite$ * " to crossref " *
- crossref * warning$
- "" *
- }
- { "{\em " * series * "\/}" * }
- if$
- }
- { key * }
- if$
- }
- { format.crossref.editor * }
- if$
- " \cite{" * crossref * "}" *
-}
-
-FUNCTION {format.incoll.inproc.crossref}
-{ editor empty$
- editor field.or.null author field.or.null =
- or
- { key empty$
- { booktitle empty$
- { "need editor, key, or booktitle for " cite$ * " to crossref " *
- crossref * warning$
- ""
- }
- { fr.in "{\em " * booktitle * "\/}" * }
- if$
- }
- { fr.in key * }
- if$
- }
- { fr.in format.crossref.editor * }
- if$
- " \cite{" * crossref * "}" *
-}
-
-FUNCTION {article}
-{ output.bibitem
- format.authors "author" output.check
- new.block
- format.title "title" output.check
- new.block
- crossref missing$
- { journal emphasize "journal" output.check
- format.vol.num.pages output
- format.date "year" output.check
- }
- { format.article.crossref output.nonnull
- format.pages output
- }
- if$
- new.block
- note output
- fin.entry
-}
-
-FUNCTION {book}
-{ output.bibitem
- author empty$
- { format.editors "author and editor" output.check }
- { format.authors output.nonnull
- crossref missing$
- { "author and editor" editor either.or.check }
- 'skip$
- if$
- }
- if$
- new.block
- format.btitle "title" output.check
- crossref missing$
- { format.bvolume output
- new.block
- format.number.series output
- new.sentence
- publisher "publisher" output.check
- address output
- }
- { new.block
- format.book.crossref output.nonnull
- }
- if$
- format.edition output
- format.date "year" output.check
- new.block
- note output
- fin.entry
-}
-
-FUNCTION {booklet}
-{ output.bibitem
- format.authors output
- new.block
- format.title "title" output.check
- howpublished address new.block.checkb
- howpublished output
- address output
- format.date output
- new.block
- note output
- fin.entry
-}
-
-FUNCTION {inbook}
-{ output.bibitem
- author empty$
- { format.editors "author and editor" output.check }
- { format.authors output.nonnull
- crossref missing$
- { "author and editor" editor either.or.check }
- 'skip$
- if$
- }
- if$
- new.block
- format.btitle "title" output.check
- crossref missing$
- { format.bvolume output
- format.chapter.pages "chapter and pages" output.check
- new.block
- format.number.series output
- new.sentence
- publisher "publisher" output.check
- address output
- }
- { format.chapter.pages "chapter and pages" output.check
- new.block
- format.book.crossref output.nonnull
- }
- if$
- format.edition output
- format.date "year" output.check
- new.block
- note output
- fin.entry
-}
-
-FUNCTION {incollection}
-{ output.bibitem
- format.authors "author" output.check
- new.block
- format.title "title" output.check
- new.block
- crossref missing$
- { format.in.ed.booktitle "booktitle" output.check
- format.bvolume output
- format.number.series output
- format.chapter.pages output
- new.sentence
- publisher "publisher" output.check
- address output
- format.edition output
- format.date "year" output.check
- }
- { format.incoll.inproc.crossref output.nonnull
- format.chapter.pages output
- }
- if$
- new.block
- note output
- fin.entry
-}
-
-FUNCTION {inproceedings}
-{ output.bibitem
- format.authors "author" output.check
- new.block
- format.title "title" output.check
- new.block
- crossref missing$
- { format.in.ed.booktitle "booktitle" output.check
- format.bvolume output
- format.number.series output
- format.pages output
- address empty$
- { organization publisher new.sentence.checkb
- organization output
- publisher output
- format.date "year" output.check
- }
- { address output.nonnull
- format.date "year" output.check
- new.sentence
- organization output
- publisher output
- }
- if$
- }
- { format.incoll.inproc.crossref output.nonnull
- format.pages output
- }
- if$
- new.block
- note output
- fin.entry
-}
-
-FUNCTION {conference} { inproceedings }
-
-FUNCTION {manual}
-{ output.bibitem
- author empty$
- { organization empty$
- 'skip$
- { organization output.nonnull
- address output
- }
- if$
- }
- { format.authors output.nonnull }
- if$
- new.block
- format.btitle "title" output.check
- author empty$
- { organization empty$
- { address new.block.checka
- address output
- }
- 'skip$
- if$
- }
- { organization address new.block.checkb
- organization output
- address output
- }
- if$
- format.edition output
- format.date output
- new.block
- note output
- fin.entry
-}
-
-FUNCTION {mastersthesis}
-{ output.bibitem
- format.authors "author" output.check
- new.block
- format.title "title" output.check
- new.block
- fr.master format.thesis.type output.nonnull
- school "school" output.check
- address output
- format.date "year" output.check
- new.block
- note output
- fin.entry
-}
-
-FUNCTION {misc}
-{ output.bibitem
- format.authors output
- title howpublished new.block.checkb
- format.title output
- howpublished new.block.checka
- howpublished output
- format.date output
- new.block
- note output
- fin.entry
- empty.misc.check
-}
-
-FUNCTION {phdthesis}
-{ output.bibitem
- format.authors "author" output.check
- new.block
- format.btitle "title" output.check
- new.block
- fr.phd format.thesis.type output.nonnull
- school "school" output.check
- address output
- format.date "year" output.check
- new.block
- note output
- fin.entry
-}
-
-FUNCTION {proceedings}
-{ output.bibitem
- editor empty$
- { organization output }
- { format.editors output.nonnull }
- if$
- new.block
- format.btitle "title" output.check
- format.bvolume output
- format.number.series output
- address empty$
- { editor empty$
- { publisher new.sentence.checka }
- { organization publisher new.sentence.checkb
- organization output
- }
- if$
- publisher output
- format.date "year" output.check
- }
- { address output.nonnull
- format.date "year" output.check
- new.sentence
- editor empty$
- 'skip$
- { organization output }
- if$
- publisher output
- }
- if$
- new.block
- note output
- fin.entry
-}
-
-FUNCTION {techreport}
-{ output.bibitem
- format.authors "author" output.check
- new.block
- format.title "title" output.check
- new.block
- format.tr.number output.nonnull
- institution "institution" output.check
- address output
- format.date "year" output.check
- new.block
- note output
- fin.entry
-}
-
-FUNCTION {unpublished}
-{ output.bibitem
- format.authors "author" output.check
- new.block
- format.title "title" output.check
- new.block
- note "note" output.check
- format.date output
- fin.entry
-}
-
-FUNCTION {default.type} { misc }
-
-MACRO {acmcs} {"ACM Computing Surveys"}
-MACRO {acta} {"Acta Informatica"}
-MACRO {cacm} {"Communications of the ACM"}
-MACRO {ibmjrd} {"IBM Journal of Research and Development"}
-MACRO {ibmsj} {"IBM Systems Journal"}
-MACRO {ieeese} {"IEEE Transactions on Software Engineering"}
-MACRO {ieeetc} {"IEEE Transactions on Computers"}
-MACRO {ieeetcad}
- {"IEEE Transactions on Computer-Aided Design of Integrated Circuits"}
-MACRO {ipl} {"Information Processing Letters"}
-MACRO {jacm} {"Journal of the ACM"}
-MACRO {jcss} {"Journal of Computer and System Sciences"}
-MACRO {scp} {"Science of Computer Programming"}
-MACRO {sicomp} {"SIAM Journal on Computing"}
-MACRO {tocs} {"ACM Transactions on Computer Systems"}
-MACRO {tods} {"ACM Transactions on Database Systems"}
-MACRO {tog} {"ACM Transactions on Graphics"}
-MACRO {toms} {"ACM Transactions on Mathematical Software"}
-MACRO {toois} {"ACM Transactions on Office Information Systems"}
-MACRO {toplas} {"ACM Transactions on Programming Languages and Systems"}
-MACRO {tcs} {"Theoretical Computer Science"}
-
-READ
-
-STRINGS { longest.label }
-
-INTEGERS { number.label longest.label.width }
-
-FUNCTION {initialize.longest.label}
-{ "" 'longest.label :=
- #1 'number.label :=
- #0 'longest.label.width :=
-}
-
-FUNCTION {longest.label.pass}
-{ number.label int.to.str$ 'label :=
- number.label #1 + 'number.label :=
- label width$ longest.label.width >
- { label 'longest.label :=
- label width$ 'longest.label.width :=
- }
- 'skip$
- if$
-}
-
-EXECUTE {initialize.longest.label}
-
-ITERATE {longest.label.pass}
-
-FUNCTION {begin.bib}
-{ preamble$ empty$
- 'skip$
- { preamble$ write$ newline$ }
- if$
- "\begin{thebibliography}{" longest.label * "}" * write$ newline$
- "\expandafter\ifx\csname fonteauteurs\endcsname\relax"
- write$ newline$
- "\def\fonteauteurs{" fr.auteurs.style * "}\fi" * write$ newline$
- "\makeatother" write$ newline$
-}
-
-EXECUTE {begin.bib}
-
-EXECUTE {init.state.consts}
-
-ITERATE {call.type$}
-
-FUNCTION {end.bib}
-{ newline$
- "\end{thebibliography}" write$ newline$
-}
-
-EXECUTE {end.bib}
-
-
-%%
-%% Changelog :
-%% 1.0 -> 1.1 : les mois ne prennent pas de majuscule
-%% 1.1 -> 1.2 : le '.' qui suit la liste des auteurs peut etre
-%% change en autre chose (':' notamment).
-%%
+++ /dev/null
-%%\r
-%% Bib. style "unsrtnat-fr" (version francisee de unsrtnat.bst)\r
-%%\r
-%% NM, 2005/10/16\r
-%% markey@lsv.ens-cachan.fr \r
-%%\r
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\r
-%% Original Copyright (Patrick Daly):\r
-%%\r
-%% Copyright 1993-1999 Patrick W Daly\r
-%% Max-Planck-Institut f\"ur Aeronomie\r
-%% Max-Planck-Str. 2\r
-%% D-37191 Katlenburg-Lindau\r
-%% Germany\r
-%% E-mail: daly@linmpi.mpg.de\r
-%%\r
-%% This program can be redistributed and/or modified under the terms\r
-%% of the LaTeX Project Public License Distributed from CTAN\r
-%% archives in directory macros/latex/base/lppl.txt; either\r
-%% version 1 of the License, or any later version.\r
-%%\r
- % Version and source file information:\r
- % \ProvidesFile{natbst.mbs}[1999/05/11 1.6 (PWD)]\r
- %\r
- % BibTeX `plainnat' family\r
- % version 0.99b for BibTeX versions 0.99a or later,\r
- % for LaTeX versions 2.09 and 2e.\r
- %\r
- % For use with the `natbib.sty' package; emulates the corresponding\r
- % member of the `plain' family, but with author-year citations.\r
- %\r
- % With version 6.0 of `natbib.sty', it may also be used for numerical\r
- % citations, while retaining the commands \citeauthor, \citefullauthor,\r
- % and \citeyear to print the corresponding information.\r
- %\r
- % For version 7.0 of `natbib.sty', the KEY field replaces missing\r
- % authors/editors, and the date is left blank in \bibitem.\r
- %\r
- % Includes fields ISBN and ISSN.\r
- %\r
- % Includes field URL for Internet addresses (best used with\r
- % with the url.sty package of Donald Arseneau\r
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\r
-\r
-\r
-ENTRY\r
- { address\r
- author\r
- booktitle\r
- chapter\r
- edition\r
- editor\r
- howpublished\r
- institution\r
- isbn\r
- issn\r
- journal\r
- key\r
- month\r
- note\r
- number\r
- organization\r
- pages\r
- publisher\r
- school\r
- series\r
- title\r
- type\r
- url\r
- volume\r
- year\r
- }\r
- {}\r
- { label extra.label sort.label short.list }\r
-\r
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\r
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\r
-%%\r
-%% C'est ici que je definis les "traductions". Normalement, y a que ca a changer\r
-%% pour franciser le style...\r
-%%\r
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\r
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\r
-\r
-FUNCTION{fr.and}{ %% le "et" entre les deux derniers auteurs\r
-" et "\r
-}\r
-\r
-FUNCTION{fr.editeur}{ %% ", {\'e}diteur" au singulier, ou " ({\'e}diteur)"...\r
-", {\'e}diteur"\r
-}\r
-\r
-FUNCTION{fr.editeurs}{ %% ", {\'e}diteurs" au pluriel, ou " ({\'e}diteurs)"...\r
-", {\'e}diteurs"\r
-}\r
-\r
-FUNCTION{fr.et.al}{ %% " et~al."\r
-" \emph{et~al.}"\r
-}\r
-\r
-FUNCTION{fr.in}{ %% "Dans "\r
-"\emph{In} "\r
-}\r
-\r
-FUNCTION{fr.in.spc}{ %% " dans "\r
-" \emph{in} "\r
-}\r
-\r
-FUNCTION{fr.of}{ %% " de "\r
-" de "\r
-}\r
-\r
-FUNCTION{fr.number}{ %% "num{\'e}ro "\r
-"num{\'e}ro "\r
-}\r
-\r
-FUNCTION{fr.number.maj}{ %% "Num{\'e}ro "\r
-"Num{\'e}ro "\r
-}\r
-\r
-FUNCTION{fr.volume}{ %% "volume"\r
-"volume"\r
-}\r
-\r
-FUNCTION{fr.volume.maj}{ %% "Volume"\r
-"Volume"\r
-}\r
-\r
-FUNCTION{fr.edition}{ %% " {\'e}dition"\r
-" {\'e}dition"\r
-}\r
-\r
-FUNCTION{fr.pages}{ %% "pages"\r
-"pages"\r
-}\r
-\r
-FUNCTION{fr.page}{ %% "page"\r
-"page"\r
-}\r
-\r
-FUNCTION{fr.chapter}{ %% "chapitre"\r
-"chapitre"\r
-}\r
-\r
-FUNCTION{fr.tech.rep}{ %% "Rapport Technique"\r
-"Rapport technique"\r
-}\r
-\r
-FUNCTION{fr.master}{ %% "M{\'e}moire de D.E.A."\r
-"M{\'e}moire de D.E.A."\r
-}\r
-\r
-FUNCTION{fr.phd}{ %% "Th{\`e}se de doctorat"\r
-"Th{\`e}se de doctorat"\r
-}\r
-\r
-FUNCTION{fr.auteurs.style}{\r
- %% si on veut des small caps sur le LASTNAME de l'auteur\r
- %% Cette fonction est utilisee dans la definition d'une\r
- %% fonction LaTeX.\r
-"\scshape"\r
-}\r
-\r
-FUNCTION{fr.ponctuation.apres.auteurs}{ %% Comme son nom l'indique...\r
-" : "\r
-}\r
-\r
-FUNCTION{fr.deuxpoints}{ %% Pour eviter l'espace avant les ":".\r
-"\string:\penalty500\relax "\r
-}\r
-\r
-MACRO {jan} {"janvier"}\r
-MACRO {feb} {"f\'evrier"}\r
-MACRO {mar} {"mars"}\r
-MACRO {apr} {"avril"}\r
-MACRO {may} {"mai"}\r
-MACRO {jun} {"juin"}\r
-MACRO {jul} {"juillet"}\r
-MACRO {aug} {"ao\^ut"}\r
-MACRO {sep} {"septembre"}\r
-MACRO {oct} {"octobre"}\r
-MACRO {nov} {"novembre"}\r
-MACRO {dec} {"d\'ecembre"}\r
-\r
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\r
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\r
-%%\r
-%% La suite, normalement, y a rien a changer...\r
-%%\r
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\r
-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\r
-\r
-INTEGERS { output.state before.all mid.sentence after.sentence after.block after.authors }\r
-\r
-FUNCTION {init.state.consts}\r
-{ #0 'before.all :=\r
- #1 'mid.sentence :=\r
- #2 'after.sentence :=\r
- #3 'after.block :=\r
- #0 'after.authors :=\r
-}\r
-\r
-STRINGS { s t }\r
-\r
-FUNCTION{ fr.add.period }{\r
-after.authors \r
- { fr.ponctuation.apres.auteurs empty$\r
- { add.period$ }\r
- { fr.ponctuation.apres.auteurs * #0 'after.authors := }\r
- if$}\r
- { add.period$ }\r
-if$\r
-}\r
-\r
-FUNCTION {output.nonnull}\r
-{ 's :=\r
- output.state mid.sentence =\r
- { ", " * write$ }\r
- { output.state after.block =\r
- { fr.add.period write$\r
- newline$\r
- "\newblock " write$\r
- }\r
- { output.state before.all =\r
- 'write$\r
- { add.period$ " " * write$ }\r
- if$\r
- }\r
- if$\r
- mid.sentence 'output.state :=\r
- }\r
- if$\r
- s\r
-}\r
-\r
-FUNCTION {output}\r
-{ duplicate$ empty$\r
- 'pop$\r
- 'output.nonnull\r
- if$\r
-}\r
-\r
-FUNCTION {output.check}\r
-{ 't :=\r
- duplicate$ empty$\r
- { pop$ "empty " t * " in " * cite$ * warning$ }\r
- 'output.nonnull\r
- if$\r
-}\r
-\r
-FUNCTION {fin.entry}\r
-{ add.period$\r
- write$\r
- newline$\r
-}\r
-\r
-FUNCTION {new.block}\r
-{ output.state before.all =\r
- 'skip$\r
- { after.block 'output.state := }\r
- if$\r
-}\r
-\r
-FUNCTION {new.sentence}\r
-{ output.state after.block =\r
- 'skip$\r
- { output.state before.all =\r
- 'skip$\r
- { after.sentence 'output.state := }\r
- if$\r
- }\r
- if$\r
-}\r
-\r
-FUNCTION {not}\r
-{ { #0 }\r
- { #1 }\r
- if$\r
-}\r
-\r
-FUNCTION {and}\r
-{ 'skip$\r
- { pop$ #0 }\r
- if$\r
-}\r
-\r
-FUNCTION {or}\r
-{ { pop$ #1 }\r
- 'skip$\r
- if$\r
-}\r
-\r
-FUNCTION {new.block.checka}\r
-{ empty$\r
- 'skip$\r
- 'new.block\r
- if$\r
-}\r
-\r
-FUNCTION {new.block.checkb}\r
-{ empty$\r
- swap$ empty$\r
- and\r
- 'skip$\r
- 'new.block\r
- if$\r
-}\r
-\r
-FUNCTION {new.sentence.checka}\r
-{ empty$\r
- 'skip$\r
- 'new.sentence\r
- if$\r
-}\r
-\r
-FUNCTION {new.sentence.checkb}\r
-{ empty$\r
- swap$ empty$\r
- and\r
- 'skip$\r
- 'new.sentence\r
- if$\r
-}\r
-\r
-FUNCTION {field.or.null}\r
-{ duplicate$ empty$\r
- { pop$ "" }\r
- 'skip$\r
- if$\r
-}\r
-\r
-FUNCTION {emphasize}\r
-{ duplicate$ empty$\r
- { pop$ "" }\r
- { "{\em " swap$ * "}" * }\r
- if$\r
-}\r
-\r
-INTEGERS { nameptr namesleft numnames }\r
-\r
-FUNCTION {format.names}\r
-{ 's :=\r
- #1 'nameptr :=\r
- s num.names$ 'numnames :=\r
- numnames 'namesleft :=\r
- { namesleft #0 > }\r
- { s nameptr "{ff~}{vv~}\bgroup\fonteauteurs\bgroup {ll}\egroup\egroup{{}}{, jj}" format.name$ 't :=\r
- nameptr #1 >\r
- { namesleft #1 >\r
- { ", " * t * }\r
- { %numnames #2 > \r
- % { "," * }\r
- % 'skip$\r
- %if$\r
- t "\bgroup\fonteauteurs\bgroup others\egroup\egroup{}" =\r
- { fr.et.al * }\r
- { fr.and * t * }\r
- if$\r
- }\r
- if$\r
- }\r
- 't\r
- if$\r
- nameptr #1 + 'nameptr :=\r
- namesleft #1 - 'namesleft :=\r
- }\r
- while$\r
-}\r
-\r
-FUNCTION {format.key}\r
-{ empty$\r
- { key field.or.null }\r
- { "" }\r
- if$\r
-}\r
-\r
-FUNCTION {format.authors}\r
-{ author empty$\r
- { "" }\r
- { author format.names #1 'after.authors := }\r
- if$\r
-}\r
-\r
-FUNCTION {format.editors}\r
-{ editor empty$\r
- { "" }\r
- { editor format.names\r
- editor num.names$ #1 >\r
- { fr.editeurs * }\r
- { fr.editeur * }\r
- if$\r
- }\r
- if$\r
-}\r
-\r
-FUNCTION {format.isbn}\r
-{ isbn empty$\r
- { "" }\r
- { new.block "ISBN " isbn * }\r
- if$\r
-}\r
-\r
-FUNCTION {format.issn}\r
-{ issn empty$\r
- { "" }\r
- { new.block "ISSN " issn * }\r
- if$\r
-}\r
-\r
-FUNCTION {format.url}\r
-{ url empty$\r
- { "" }\r
- { new.block "URL \url{" url * "}" * }\r
- if$\r
-}\r
-\r
-FUNCTION {format.title}\r
-{ title empty$\r
- { "" }\r
- { title "t" change.case$ }\r
- if$\r
-}\r
-\r
-FUNCTION {format.full.names}\r
-{%\r
- % Ici, on laisse les noms en minuscules, on ne les mets pas en small caps.\r
- %\r
- 's :=\r
- #1 'nameptr :=\r
- s num.names$ 'numnames :=\r
- numnames 'namesleft :=\r
- { namesleft #0 > }\r
- { s nameptr\r
- "{vv~}{ll}" format.name$ 't :=\r
- nameptr #1 >\r
- {\r
- namesleft #1 >\r
- { ", " * t * }\r
- {\r
- numnames #2 >\r
- { "," * }\r
- 'skip$\r
- if$\r
- t "\bgroup\fonteauteurs\bgroup others\egroup\egroup{}" =\r
- { fr.et.al * }\r
- { fr.and * t * }\r
- if$\r
- }\r
- if$\r
- }\r
- 't\r
- if$\r
- nameptr #1 + 'nameptr :=\r
- namesleft #1 - 'namesleft :=\r
- }\r
- while$\r
-}\r
-\r
-FUNCTION {author.editor.full}\r
-{ author empty$\r
- { editor empty$\r
- { "" }\r
- { editor format.full.names }\r
- if$\r
- }\r
- { author format.full.names }\r
- if$\r
-}\r
-\r
-FUNCTION {author.full}\r
-{ author empty$\r
- { "" }\r
- { author format.full.names }\r
- if$\r
-}\r
-\r
-FUNCTION {editor.full}\r
-{ editor empty$\r
- { "" }\r
- { editor format.full.names }\r
- if$\r
-}\r
-\r
-FUNCTION {make.full.names}\r
-{ type$ "book" =\r
- type$ "inbook" =\r
- or\r
- 'author.editor.full\r
- { type$ "proceedings" =\r
- 'editor.full\r
- 'author.full\r
- if$\r
- }\r
- if$\r
-}\r
-\r
-FUNCTION {output.bibitem}\r
-{ newline$\r
- "\bibitem[" write$\r
- label write$\r
- ")" make.full.names duplicate$ short.list =\r
- { pop$ }\r
- { * }\r
- if$\r
- "]{" * write$\r
- cite$ write$\r
- "}" write$\r
- newline$\r
- ""\r
- before.all 'output.state :=\r
-}\r
-\r
-FUNCTION {n.dashify}\r
-{ 't :=\r
- ""\r
- { t empty$ not }\r
- { t #1 #1 substring$ "-" =\r
- { t #1 #2 substring$ "--" = not\r
- { "--" *\r
- t #2 global.max$ substring$ 't :=\r
- }\r
- { { t #1 #1 substring$ "-" = }\r
- { "-" *\r
- t #2 global.max$ substring$ 't :=\r
- }\r
- while$\r
- }\r
- if$\r
- }\r
- { t #1 #1 substring$ *\r
- t #2 global.max$ substring$ 't :=\r
- }\r
- if$\r
- }\r
- while$\r
-}\r
-\r
-FUNCTION {format.date}\r
-{ year duplicate$ empty$\r
- { "empty year in " cite$ * warning$\r
- pop$ "" }\r
- 'skip$\r
- if$\r
- month empty$\r
- 'skip$\r
- { month\r
- " " * swap$ *\r
- }\r
- if$\r
- extra.label *\r
-}\r
-\r
-FUNCTION {format.btitle}\r
-{ title emphasize\r
-}\r
-\r
-FUNCTION {tie.or.space.connect}\r
-{ duplicate$ text.length$ #3 <\r
- { "~" }\r
- { " " }\r
- if$\r
- swap$ * *\r
-}\r
-\r
-FUNCTION {either.or.check}\r
-{ empty$\r
- 'pop$\r
- { "can't use both " swap$ * " fields in " * cite$ * warning$ }\r
- if$\r
-}\r
-\r
-FUNCTION {format.bvolume}\r
-{ volume empty$\r
- { "" }\r
- { fr.volume volume tie.or.space.connect\r
- series empty$\r
- 'skip$\r
- { fr.of * series emphasize * }\r
- if$\r
- "volume and number" number either.or.check\r
- }\r
- if$\r
-}\r
-\r
-FUNCTION {format.number.series}\r
-{ volume empty$\r
- { number empty$\r
- { series field.or.null }\r
- { output.state mid.sentence =\r
- { fr.number }\r
- { fr.number.maj }\r
- if$\r
- number tie.or.space.connect\r
- series empty$\r
- { "there's a number but no series in " cite$ * warning$ }\r
- { fr.in.spc * series * }\r
- if$\r
- }\r
- if$\r
- }\r
- { "" }\r
- if$\r
-}\r
-\r
-FUNCTION {format.edition}\r
-{ edition empty$\r
- { "" }\r
- { output.state mid.sentence =\r
- { edition "l" change.case$ fr.edition * }\r
- { edition "t" change.case$ fr.edition * }\r
- if$\r
- }\r
- if$\r
-}\r
-\r
-INTEGERS { multiresult }\r
-\r
-FUNCTION {multi.page.check}\r
-{ 't :=\r
- #0 'multiresult :=\r
- { multiresult not\r
- t empty$ not\r
- and\r
- }\r
- { t #1 #1 substring$\r
- duplicate$ "-" =\r
- swap$ duplicate$ "," =\r
- swap$ "+" =\r
- or or\r
- { #1 'multiresult := }\r
- { t #2 global.max$ substring$ 't := }\r
- if$\r
- }\r
- while$\r
- multiresult\r
-}\r
-\r
-FUNCTION {format.pages}\r
-{ pages empty$\r
- { "" }\r
- { pages multi.page.check\r
- { fr.pages pages n.dashify tie.or.space.connect }\r
- { fr.page pages tie.or.space.connect }\r
- if$\r
- }\r
- if$\r
-}\r
-\r
-FUNCTION {format.vol.num.pages}\r
-{ volume field.or.null\r
- number empty$\r
- 'skip$\r
- { "\penalty0 (" number * ")" * *\r
- volume empty$\r
- { "there's a number but no volume in " cite$ * warning$ }\r
- 'skip$\r
- if$\r
- }\r
- if$\r
- pages empty$\r
- 'skip$\r
- { duplicate$ empty$\r
- { pop$ format.pages }\r
- { fr.deuxpoints * pages n.dashify * }\r
- if$\r
- }\r
- if$\r
-}\r
-\r
-FUNCTION {format.chapter.pages}\r
-{ chapter empty$\r
- 'format.pages\r
- { type empty$\r
- { fr.chapter }\r
- { type "l" change.case$ }\r
- if$\r
- chapter tie.or.space.connect\r
- pages empty$\r
- 'skip$\r
- { ", " * format.pages * }\r
- if$\r
- }\r
- if$\r
-}\r
-\r
-FUNCTION {format.in.ed.booktitle}\r
-{ booktitle empty$\r
- { "" }\r
- { editor empty$\r
- { fr.in booktitle emphasize * }\r
- { fr.in format.editors #1 'after.authors := fr.add.period " " * * booktitle emphasize * }\r
- if$\r
- }\r
- if$\r
-}\r
-\r
-FUNCTION {empty.misc.check}\r
-{ author empty$ title empty$ howpublished empty$\r
- month empty$ year empty$ note empty$\r
- and and and and and\r
- key empty$ not and\r
- { "all relevant fields are empty in " cite$ * warning$ }\r
- 'skip$\r
- if$\r
-}\r
-\r
-FUNCTION {format.thesis.type}\r
-{ type empty$\r
- 'skip$\r
- { pop$\r
- type "t" change.case$\r
- }\r
- if$\r
-}\r
-\r
-FUNCTION {format.tr.number}\r
-{ type empty$\r
- { fr.tech.rep }\r
- 'type\r
- if$\r
- number empty$\r
- { "t" change.case$ }\r
- { number tie.or.space.connect }\r
- if$\r
-}\r
-\r
-FUNCTION {format.article.crossref}\r
-{ key empty$\r
- { journal empty$\r
- { "need key or journal for " cite$ * " to crossref " * crossref *\r
- warning$\r
- ""\r
- }\r
- { fr.in "{\em " * journal * "\/}" * }\r
- if$\r
- }\r
- { fr.in key * }\r
- if$\r
- " \citep{" * crossref * "}" *\r
-}\r
-\r
-FUNCTION {format.book.crossref}\r
-{ volume empty$\r
- { "empty volume in " cite$ * "'s crossref of " * crossref * warning$\r
- fr.in\r
- }\r
- { fr.volume.maj volume tie.or.space.connect\r
- fr.of *\r
- }\r
- if$\r
- editor empty$\r
- editor field.or.null author field.or.null =\r
- or\r
- { key empty$\r
- { series empty$\r
- { "need editor, key, or series for " cite$ * " to crossref " *\r
- crossref * warning$\r
- "" *\r
- }\r
- { "{\em " * series * "\/}" * }\r
- if$\r
- }\r
- { key * }\r
- if$\r
- }\r
- 'skip$\r
- if$\r
- ", \citet{" * crossref * "}" *\r
-}\r
-\r
-FUNCTION {format.incoll.inproc.crossref}\r
-{ editor empty$\r
- editor field.or.null author field.or.null =\r
- or\r
- { key empty$\r
- { booktitle empty$\r
- { "need editor, key, or booktitle for " cite$ * " to crossref " *\r
- crossref * warning$\r
- ""\r
- }\r
- { fr.in "{\em " * booktitle * "\/}" * }\r
- if$\r
- }\r
- { fr.in key * }\r
- if$\r
- }\r
- { fr.in }\r
- if$\r
- " \citet{" * crossref * "}" *\r
-}\r
-\r
-FUNCTION {article}\r
-{ output.bibitem\r
- format.authors "author" output.check\r
- author format.key output\r
- new.block\r
- format.title "title" output.check\r
- new.block\r
- crossref missing$\r
- { journal emphasize "journal" output.check\r
- format.vol.num.pages output\r
- format.date "year" output.check\r
- }\r
- { format.article.crossref output.nonnull\r
- format.pages output\r
- }\r
- if$\r
- format.issn output\r
- format.url output\r
- new.block\r
- note output\r
- fin.entry\r
-}\r
-\r
-FUNCTION {book}\r
-{ output.bibitem\r
- author empty$\r
- { format.editors "author and editor" output.check\r
- editor format.key output\r
- }\r
- { format.authors output.nonnull\r
- crossref missing$\r
- { "author and editor" editor either.or.check }\r
- 'skip$\r
- if$\r
- }\r
- if$\r
- new.block\r
- format.btitle "title" output.check\r
- crossref missing$\r
- { format.bvolume output\r
- new.block\r
- format.number.series output\r
- new.sentence\r
- publisher "publisher" output.check\r
- address output\r
- }\r
- { new.block\r
- format.book.crossref output.nonnull\r
- }\r
- if$\r
- format.edition output\r
- format.date "year" output.check\r
- format.isbn output\r
- format.url output\r
- new.block\r
- note output\r
- fin.entry\r
-}\r
-\r
-FUNCTION {booklet}\r
-{ output.bibitem\r
- format.authors output\r
- author format.key output\r
- new.block\r
- format.title "title" output.check\r
- howpublished address new.block.checkb\r
- howpublished output\r
- address output\r
- format.date output\r
- format.isbn output\r
- format.url output\r
- new.block\r
- note output\r
- fin.entry\r
-}\r
-\r
-FUNCTION {inbook}\r
-{ output.bibitem\r
- author empty$\r
- { format.editors "author and editor" output.check\r
- editor format.key output\r
- }\r
- { format.authors output.nonnull\r
- crossref missing$\r
- { "author and editor" editor either.or.check }\r
- 'skip$\r
- if$\r
- }\r
- if$\r
- new.block\r
- format.btitle "title" output.check\r
- crossref missing$\r
- { format.bvolume output\r
- format.chapter.pages "chapter and pages" output.check\r
- new.block\r
- format.number.series output\r
- new.sentence\r
- publisher "publisher" output.check\r
- address output\r
- }\r
- { format.chapter.pages "chapter and pages" output.check\r
- new.block\r
- format.book.crossref output.nonnull\r
- }\r
- if$\r
- format.edition output\r
- format.date "year" output.check\r
- format.isbn output\r
- format.url output\r
- new.block\r
- note output\r
- fin.entry\r
-}\r
-\r
-FUNCTION {incollection}\r
-{ output.bibitem\r
- format.authors "author" output.check\r
- author format.key output\r
- new.block\r
- format.title "title" output.check\r
- new.block\r
- crossref missing$\r
- { format.in.ed.booktitle "booktitle" output.check\r
- format.bvolume output\r
- format.number.series output\r
- format.chapter.pages output\r
- new.sentence\r
- publisher "publisher" output.check\r
- address output\r
- format.edition output\r
- format.date "year" output.check\r
- }\r
- { format.incoll.inproc.crossref output.nonnull\r
- format.chapter.pages output\r
- }\r
- if$\r
- format.isbn output\r
- format.url output\r
- new.block\r
- note output\r
- fin.entry\r
-}\r
-\r
-FUNCTION {inproceedings}\r
-{ output.bibitem\r
- format.authors "author" output.check\r
- author format.key output\r
- new.block\r
- format.title "title" output.check\r
- new.block\r
- crossref missing$\r
- { format.in.ed.booktitle "booktitle" output.check\r
- format.bvolume output\r
- format.number.series output\r
- format.pages output\r
- address empty$\r
- { organization publisher new.sentence.checkb\r
- organization output\r
- publisher output\r
- format.date "year" output.check\r
- }\r
- { address output.nonnull\r
- format.date "year" output.check\r
- new.sentence\r
- organization output\r
- publisher output\r
- }\r
- if$\r
- }\r
- { format.incoll.inproc.crossref output.nonnull\r
- format.pages output\r
- }\r
- if$\r
- format.isbn output\r
- format.url output\r
- new.block\r
- note output\r
- fin.entry\r
-}\r
-\r
-FUNCTION {conference} { inproceedings }\r
-\r
-FUNCTION {manual}\r
-{ output.bibitem\r
- format.authors output\r
- author format.key output\r
- new.block\r
- format.btitle "title" output.check\r
- organization address new.block.checkb\r
- organization output\r
- address output\r
- format.edition output\r
- format.date output\r
- format.url output\r
- new.block\r
- note output\r
- fin.entry\r
-}\r
-\r
-FUNCTION {mastersthesis}\r
-{ output.bibitem\r
- format.authors "author" output.check\r
- author format.key output\r
- new.block\r
- format.title "title" output.check\r
- new.block\r
- fr.master format.thesis.type output.nonnull\r
- school "school" output.check\r
- address output\r
- format.date "year" output.check\r
- format.url output\r
- new.block\r
- note output\r
- fin.entry\r
-}\r
-\r
-FUNCTION {misc}\r
-{ output.bibitem\r
- format.authors output\r
- author format.key output\r
- title howpublished new.block.checkb\r
- format.title output\r
- howpublished new.block.checka\r
- howpublished output\r
- format.date output\r
- format.issn output\r
- format.url output\r
- new.block\r
- note output\r
- fin.entry\r
- empty.misc.check\r
-}\r
-\r
-FUNCTION {phdthesis}\r
-{ output.bibitem\r
- format.authors "author" output.check\r
- author format.key output\r
- new.block\r
- format.btitle "title" output.check\r
- new.block\r
- fr.phd format.thesis.type output.nonnull\r
- school "school" output.check\r
- address output\r
- format.date "year" output.check\r
- format.url output\r
- new.block\r
- note output\r
- fin.entry\r
-}\r
-\r
-FUNCTION {proceedings}\r
-{ output.bibitem\r
- format.editors output\r
- editor format.key output\r
- new.block\r
- format.btitle "title" output.check\r
- format.bvolume output\r
- format.number.series output\r
- address output\r
- format.date "year" output.check\r
- new.sentence\r
- organization output\r
- publisher output\r
- format.isbn output\r
- format.url output\r
- new.block\r
- note output\r
- fin.entry\r
-}\r
-\r
-FUNCTION {techreport}\r
-{ output.bibitem\r
- format.authors "author" output.check\r
- author format.key output\r
- new.block\r
- format.title "title" output.check\r
- new.block\r
- format.tr.number output.nonnull\r
- institution "institution" output.check\r
- address output\r
- format.date "year" output.check\r
- format.url output\r
- new.block\r
- note output\r
- fin.entry\r
-}\r
-\r
-FUNCTION {unpublished}\r
-{ output.bibitem\r
- format.authors "author" output.check\r
- author format.key output\r
- new.block\r
- format.title "title" output.check\r
- format.url output\r
- new.block\r
- note "note" output.check\r
- format.date output\r
- fin.entry\r
-}\r
-\r
-FUNCTION {default.type} { misc }\r
-\r
-MACRO {acmcs} {"ACM Computing Surveys"}\r
-MACRO {acta} {"Acta Informatica"}\r
-MACRO {cacm} {"Communications of the ACM"}\r
-MACRO {ibmjrd} {"IBM Journal of Research and Development"}\r
-MACRO {ibmsj} {"IBM Systems Journal"}\r
-MACRO {ieeese} {"IEEE Transactions on Software Engineering"}\r
-MACRO {ieeetc} {"IEEE Transactions on Computers"}\r
-MACRO {ieeetcad} {"IEEE Transactions on Computer-Aided Design of Integrated Circuits"}\r
-MACRO {ipl} {"Information Processing Letters"}\r
-MACRO {jacm} {"Journal of the ACM"}\r
-MACRO {jcss} {"Journal of Computer and System Sciences"}\r
-MACRO {scp} {"Science of Computer Programming"}\r
-MACRO {sicomp} {"SIAM Journal on Computing"}\r
-MACRO {tocs} {"ACM Transactions on Computer Systems"}\r
-MACRO {tods} {"ACM Transactions on Database Systems"}\r
-MACRO {tog} {"ACM Transactions on Graphics"}\r
-MACRO {toms} {"ACM Transactions on Mathematical Software"}\r
-MACRO {toois} {"ACM Transactions on Office Information Systems"}\r
-MACRO {toplas} {"ACM Transactions on Programming Languages and Systems"}\r
-MACRO {tcs} {"Theoretical Computer Science"}\r
-\r
-\r
-READ\r
-\r
-FUNCTION {sortify}\r
-{ purify$\r
- "l" change.case$\r
-}\r
-\r
-INTEGERS { len }\r
-\r
-FUNCTION {chop.word}\r
-{ 's :=\r
- 'len :=\r
- s #1 len substring$ =\r
- { s len #1 + global.max$ substring$ }\r
- 's\r
- if$\r
-}\r
-\r
-FUNCTION {format.lab.names}\r
-%\r
-% Ici, on laisse les noms en minuscules, on ne les mets pas \r
-% en small caps.\r
-%\r
-{ 's :=\r
- s #1 "{vv~}{ll}" format.name$\r
- s num.names$ duplicate$\r
- #2 >\r
- { pop$ fr.et.al * }\r
- { #2 <\r
- 'skip$\r
- { s #2 "{ff }{vv }{ll}{ jj}" format.name$ "others" =\r
- { fr.et.al * }\r
- { fr.and * s #2 "{vv~}{ll}" format.name$ * }\r
- if$\r
- }\r
- if$\r
- }\r
- if$\r
-}\r
-\r
-FUNCTION {author.key.label}\r
-{ author empty$\r
- { key empty$\r
- { cite$ #1 #3 substring$ }\r
- 'key\r
- if$\r
- }\r
- { author format.lab.names }\r
- if$\r
-}\r
-\r
-FUNCTION {author.editor.key.label}\r
-{ author empty$\r
- { editor empty$\r
- { key empty$\r
- { cite$ #1 #3 substring$ }\r
- 'key\r
- if$\r
- }\r
- { editor format.lab.names }\r
- if$\r
- }\r
- { author format.lab.names }\r
- if$\r
-}\r
-\r
-FUNCTION {author.key.organization.label}\r
-{ author empty$\r
- { key empty$\r
- { organization empty$\r
- { cite$ #1 #3 substring$ }\r
- { "Le " #3\r
- "La " #3\r
- "Les " #4 \r
- "The " #4 organization chop.word\r
- chop.word\r
- chop.word\r
- chop.word\r
- #3 text.prefix$ }\r
- if$\r
- }\r
- 'key\r
- if$\r
- }\r
- { author format.lab.names }\r
- if$\r
-}\r
-\r
-FUNCTION {editor.key.organization.label}\r
-{ editor empty$\r
- { key empty$\r
- { organization empty$\r
- { cite$ #1 #3 substring$ }\r
- { "Le " #3\r
- "La " #3\r
- "Les " #4\r
- "The " #4 organization chop.word \r
- chop.word\r
- chop.word\r
- chop.word\r
- #3 text.prefix$ }\r
- if$\r
- }\r
- 'key\r
- if$\r
- }\r
- { editor format.lab.names }\r
- if$\r
-}\r
-\r
-FUNCTION {calc.short.authors}\r
-{ type$ "book" =\r
- type$ "inbook" =\r
- or\r
- 'author.editor.key.label\r
- { type$ "proceedings" =\r
- 'editor.key.organization.label\r
- { type$ "manual" =\r
- 'author.key.organization.label\r
- 'author.key.label\r
- if$\r
- }\r
- if$\r
- }\r
- if$\r
- 'short.list :=\r
-}\r
-\r
-FUNCTION {calc.label}\r
-{ calc.short.authors\r
- short.list\r
- "("\r
- *\r
- year duplicate$ empty$\r
- short.list key field.or.null = or\r
- { pop$ "" }\r
- 'skip$\r
- if$\r
- *\r
- 'label :=\r
-}\r
-\r
-FUNCTION {sort.format.names}\r
-{ 's :=\r
- #1 'nameptr :=\r
- ""\r
- s num.names$ 'numnames :=\r
- numnames 'namesleft :=\r
- { namesleft #0 > }\r
- { nameptr #1 >\r
- { " " * }\r
- 'skip$\r
- if$\r
- s nameptr "{vv{ } }{ll{ }}{ ff{ }}{ jj{ }}" format.name$ 't :=\r
- nameptr numnames = t "others" = and\r
- { fr.et.al * } %% sera "purify"e ensuite...\r
- { t sortify * }\r
- if$\r
- nameptr #1 + 'nameptr :=\r
- namesleft #1 - 'namesleft :=\r
- }\r
- while$\r
-}\r
-\r
-FUNCTION {sort.format.title}\r
-{ 't :=\r
- "Un " #3\r
- "Une " #4\r
- "Des " #4\r
- "Le " #3\r
- "La " #3\r
- "Les " #4\r
- "A " #2\r
- "An " #3\r
- "The " #4 t chop.word\r
- chop.word\r
- chop.word\r
- chop.word\r
- chop.word\r
- chop.word\r
- chop.word\r
- chop.word\r
- chop.word\r
- sortify\r
- #1 global.max$ substring$\r
-}\r
-\r
-FUNCTION {author.sort}\r
-{ author empty$\r
- { key empty$\r
- { "to sort, need author or key in " cite$ * warning$\r
- ""\r
- }\r
- { key sortify }\r
- if$\r
- }\r
- { author sort.format.names }\r
- if$\r
-}\r
-\r
-FUNCTION {author.editor.sort}\r
-{ author empty$\r
- { editor empty$\r
- { key empty$\r
- { "to sort, need author, editor, or key in " cite$ * warning$\r
- ""\r
- }\r
- { key sortify }\r
- if$\r
- }\r
- { editor sort.format.names }\r
- if$\r
- }\r
- { author sort.format.names }\r
- if$\r
-}\r
-\r
-FUNCTION {author.organization.sort}\r
-{ author empty$\r
- { organization empty$\r
- { key empty$\r
- { "to sort, need author, organization, or key in " cite$ * warning$\r
- ""\r
- }\r
- { key sortify }\r
- if$\r
- }\r
- { "Le " #3 \r
- "La " #3 \r
- "Les " #4 \r
- "The " #4 organization chop.word \r
- chop.word \r
- chop.word \r
- chop.word\r
- sortify }\r
- if$\r
- }\r
- { author sort.format.names }\r
- if$\r
-}\r
-\r
-FUNCTION {editor.organization.sort}\r
-{ editor empty$\r
- { organization empty$\r
- { key empty$\r
- { "to sort, need editor, organization, or key in " cite$ * warning$\r
- ""\r
- }\r
- { key sortify }\r
- if$\r
- }\r
- { "Le " #3 \r
- "La " #3 \r
- "Les " #4 \r
- "The " #4 organization chop.word \r
- chop.word \r
- chop.word \r
- chop.word\r
- sortify }\r
- if$\r
- }\r
- { editor sort.format.names }\r
- if$\r
-}\r
-\r
-INTEGERS { seq.num }\r
-\r
-FUNCTION {init.seq}\r
-{ #0 'seq.num :=}\r
-\r
-EXECUTE {init.seq}\r
-\r
-FUNCTION {int.to.fix}\r
-{ \r
- "000000000" swap$ int.to.str$ *\r
- #-1 #10 substring$\r
-}\r
-\r
-\r
-FUNCTION {presort}\r
-{ calc.label\r
- label sortify\r
- " "\r
- *\r
- seq.num #1 + 'seq.num :=\r
- seq.num int.to.fix\r
- 'sort.label :=\r
- sort.label *\r
- #1 entry.max$ substring$\r
- 'sort.key$ :=\r
-}\r
-\r
-ITERATE {presort}\r
-\r
-SORT\r
-\r
-STRINGS { longest.label last.label next.extra }\r
-\r
-INTEGERS { longest.label.width last.extra.num number.label }\r
-\r
-FUNCTION {initialize.longest.label}\r
-{ "" 'longest.label :=\r
- #0 int.to.chr$ 'last.label :=\r
- "" 'next.extra :=\r
- #0 'longest.label.width :=\r
- #0 'last.extra.num :=\r
- #0 'number.label :=\r
-}\r
-\r
-FUNCTION {forward.pass}\r
-{ last.label label =\r
- { last.extra.num #1 + 'last.extra.num :=\r
- last.extra.num int.to.chr$ 'extra.label :=\r
- }\r
- { "a" chr.to.int$ 'last.extra.num :=\r
- "" 'extra.label :=\r
- label 'last.label :=\r
- }\r
- if$\r
- number.label #1 + 'number.label :=\r
-}\r
-\r
-FUNCTION {reverse.pass}\r
-{ next.extra "b" =\r
- { "a" 'extra.label := }\r
- 'skip$\r
- if$\r
- extra.label 'next.extra :=\r
- extra.label\r
- duplicate$ empty$\r
- 'skip$\r
- { "{\natexlab{" swap$ * "}}" * }\r
- if$\r
- 'extra.label :=\r
- label extra.label * 'label :=\r
-}\r
-\r
-EXECUTE {initialize.longest.label}\r
-\r
-ITERATE {forward.pass}\r
-\r
-REVERSE {reverse.pass}\r
-\r
-FUNCTION {bib.sort.order}\r
-{ sort.label 'sort.key$ :=\r
-}\r
-\r
-ITERATE {bib.sort.order}\r
-\r
-SORT\r
-\r
-FUNCTION {begin.bib}\r
-{ preamble$ empty$\r
- 'skip$\r
- { preamble$ write$ newline$ }\r
- if$\r
- "\begin{thebibliography}{" number.label int.to.str$ * "}" *\r
- write$ newline$\r
- "\expandafter\ifx\csname natexlab\endcsname\relax\def\natexlab#1{#1}\fi"\r
- write$ newline$\r
- "\expandafter\ifx\csname fonteauteurs\endcsname\relax" \r
- write$ newline$\r
- "\def\fonteauteurs{" fr.auteurs.style * "}\fi" * write$ newline$ \r
- "\expandafter\ifx\csname url\endcsname\relax" write$ newline$\r
- " \def\url#1{{\tt #1}}% " write$ newline$\r
- " \message{You should include the url package}\fi" write$ newline$\r
-}\r
-\r
-EXECUTE {begin.bib}\r
-\r
-EXECUTE {init.state.consts}\r
-\r
-ITERATE {call.type$}\r
-\r
-FUNCTION {end.bib}\r
-{ newline$\r
- "\end{thebibliography}" write$ newline$\r
-}\r
-\r
-EXECUTE {end.bib}\r