Changeset 254 for branches


Ignore:
Timestamp:
10/05/12 10:07:37 (12 years ago)
Author:
pinsard
Message:

fix typo and introduce XML for authors

Location:
branches/bibliolocean/src
Files:
3 edited
2 copied

Legend:

Unmodified
Added
Removed
  • branches/bibliolocean/src/biblio_check.sh

    r227 r254  
    1818# =========== 
    1919# 
    20 # Lauch jabref on each individual file (bibtex convention syntax) of biblio_dir 
     20# Launch jabref on each individual file (bibtex convention syntax) of  
     21# biblio_dir 
    2122# 
    2223# -i  input directory 
  • branches/bibliolocean/src/define_authors.sh

    r207 r254  
    3636# EVOLUTIONS 
    3737# ========== 
     38# 
     39# - fplod 20121005T080532Z cratos.locean-ipsl.upmc.fr (Linux) 
     40# 
     41#   * typo 
    3842# 
    3943# - fplod 20120406 
     
    130134list_author_bibtool[${iauthor}]="{S}ébastien {M}asson" 
    131135list_author_title[${iauthor}]="Sébastien Masson" 
    132 list_author_file[${iauthor}]="Masson_sebastion" 
     136list_author_file[${iauthor}]="Masson_sebastien" 
    133137# 
    134138iauthor=$(( ${iauthor} + 1)) 
     
    214218iauthor=$(( ${iauthor} + 1)) 
    215219list_author_bibtool[${iauthor}]="{Y}oung-{H}yang {P}ark" 
    216 list_author_title[${iauthor}]="Young-Hyang {P}ark" 
     220list_author_title[${iauthor}]="Young-Hyang Park" 
    217221list_author_file[${iauthor}]="Park_younghyang" 
    218222# 
  • branches/bibliolocean/src/twinloceanbibid.sh

    r228 r254  
    3737# ++ option debug 
    3838# 
     39# show the greatest loceanbibid 
     40# 
    3941# EVOLUTIONS 
    4042# ========== 
     
    4345# 
    4446# $URL$ 
     47# 
     48# - fplod 20120927T101302Z cratos.locean-ipsl.upmc.fr (Linux) 
     49# 
     50#   * show the greatest loceanbibid 
    4551# 
    4652# - fplod 20120703T155110Z cratos (Linux) 
     
    156162unset nl 
    157163# 
     164greatestid=$(grep loceanbibid ${filebibtex} | \ 
     165grep -v comment |sed -e 's/[^0-9]//g' | \ 
     166sort -n | tail -n 1) 
     167echo "greatest id = ${greatestid}" 
     168# 
     169# cleanning 
    158170rm ${PROJECT_LOG}/${action}${$}.txt 2> /dev/null 
    159171unset command 
  • branches/bibliolocean/src/userlocean.dtd

    r206 r254  
    11<!-- 
    2 module : 
    3 DTD user nemo 
    42 
    5 update : 
     3DESCRIPTION 
     4=========== 
     5 
     6DTD user LOCEAN 
     7 
     8TODO 
     9==== 
     10 
     11migration XSD 
     12 
     13EVOLUTIONS 
     14========== 
     15 
    616$Id$ 
    7 fplod 2007-04-24T14:20:44Z aedon.locean-ipsl.upmc.fr (Darwin) 
     17 
     18$URL$ 
     19 
     20- fplod 20121004T135256Z cratos.locean-ipsl.upmc.fr (Linux) 
     21 
     22  * creation 
     23 
    824--> 
    925<!ELEMENT users (date,user+)> 
    1026<!ELEMENT date (#PCDATA)> 
    11 <!ELEMENT user (userid,personname,email,components,platforms,processors,compilers)> 
     27<!ELEMENT user (userid,personname,email)> 
    1228<!ELEMENT userid (#PCDATA)> 
    1329<!ELEMENT personname (surname,firstname,othername)> 
     
    1733<!ATTLIST othername role CDATA #IMPLIED> 
    1834<!ELEMENT email (#PCDATA)> 
    19 <!ELEMENT compilers (compiler+)> 
    20 <!ELEMENT compiler (name,value)> 
    21 <!ATTLIST compiler code CDATA #IMPLIED> 
    22 <!ELEMENT components (components_date,component+)> 
    23 <!ELEMENT components_date (#PCDATA)> 
    24 <!ELEMENT component (name,value)> 
    25 <!ATTLIST component code CDATA #IMPLIED> 
    26 <!ELEMENT name (#PCDATA)> 
    27 <!ELEMENT value (#PCDATA)> 
    28 <!ELEMENT platforms (platform+)> 
    29 <!ELEMENT platform (name,value)> 
    30 <!ATTLIST platform code CDATA #IMPLIED> 
    31 <!ELEMENT processors (#PCDATA)> 
  • branches/bibliolocean/src/userlocean.xml

    r241 r254  
    1 #! /bin/sh 
    2 #+ 
    3 # 
    4 # ================= 
    5 # define_authors.sh 
    6 # ================= 
    7 # 
    8 # .. function:: define_authors() 
    9 # 
    10 # SYNOPSIS 
    11 # ======== 
    12 # 
    13 # :: 
    14 #  
    15 #   ++define_authors.sh`` 
    16 # 
    17 # DESCRIPTION 
    18 # =========== 
    19 # 
    20 # define author for : 
    21 # - search in bibtex file (in author field) 
    22 # - give a element of HTML filename (no diacritical and no punctation) 
    23 # 
    24 # SEE ALSO 
    25 # ======== 
    26 # 
    27 # :ref:`genbib.sh` :ref:`genaeres.sh` 
    28 # 
    29 # TODO 
    30 # ==== 
    31 # 
    32 # fucntion 
    33 # 
    34 # migration python 
    35 # 
    36 # EVOLUTIONS 
    37 # ========== 
    38 # 
    39 # - fplod 20120406 
    40 # 
    41 #   * creation 
    42 # 
    43 #- 
    44 iauthor=1 
    45 # 
     1<?xml version="1.0" encoding="iso-8859-1"?> 
     2<!DOCTYPE users SYSTEM "user.dtd"> 
     3<!-- 
     4 
     5DESCRIPTION 
     6=========== 
     7 
     8define LOCEAN authors  
     9 
     10SEE ALSO 
     11======== 
     12 
     13 
     14TODO 
     15==== 
     16 
     17use it 
     18 
     19EVOLUTIONS 
     20========== 
     21 
     22- fplod 20121004T124241Z cratos.locean-ipsl.upmc.fr (Linux) 
     23 
     24  * creation from :ref:`define_authors.sh` 
     25 
     26--> 
     27<users> 
     28<date>20121004</date> 
     29<user> 
     30<userid>template</userid> 
     31<personname> 
     32<surname></surname> 
     33<firstname></firstname> 
     34<othername role='mi'></othername> 
     35</personname> 
     36<email></email> 
     37</user> 
     38<user> 
     39<!-- 
    4640list_author_bibtool[${iauthor}]="{A}lban {L}azar" 
    4741list_author_title[${iauthor}]="Alban Lazar" 
    4842list_author_file[${iauthor}]="Lazar_alban" 
    49 # 
    50 iauthor=$(( ${iauthor} + 1)) 
     43--> 
     44<userid>Lazar_alban</userid> 
     45<personname>     
     46<surname>Lazar</surname> 
     47<firstname>Alban</firstname>  
     48<othername role='mi'></othername> 
     49</personname> 
     50<email></email> 
     51</user> 
     52<user> 
     53<!-- 
    5154list_author_bibtool[${iauthor}]="{M}atthieu {L}engaigne" 
    5255list_author_title[${iauthor}]="Matthieu Lengaigne" 
    5356list_author_file[${iauthor}]="Lengaigne_matthieu" 
    54 # 
    55 iauthor=$(( ${iauthor} + 1)) 
     57--> 
     58<userid>Lengaigne_matthieu</userid> 
     59<personname>     
     60<surname>Matthieu Lengaigne</surname> 
     61<firstname>Matthieu Lengaigne</firstname>  
     62<othername role='mi'></othername> 
     63</personname> 
     64<email></email> 
     65</user> 
     66<user> 
     67<!-- 
    5668list_author_bibtool[${iauthor}]="{F}rançoise {P}insard" 
    5769list_author_title[${iauthor}]="Françoise Pinsard" 
    5870list_author_file[${iauthor}]="Pinsard_francoise" 
    59 # ++ python auteur="Francoise Pinsard" 
    60 # ++ python filename=string.split(auteur)[1] + "_" + string.lower(string.split(auteur)[0]) 
    61 # 
    62 iauthor=$(( ${iauthor} + 1)) 
    63 # pb avec l'apostrophe avec la ligne suivante dans bibtool 
    64 #++list_author_bibtool[${iauthor}]="{F}rancesco {d\'{O}vidio}" 
     71++ python auteur="Francoise Pinsard" 
     72++ python filename=string.split(auteur)[1] + "_" + string.lower(string.split(auteur)[0]) 
     73--> 
     74<userid>Pinsard_francoise</userid> 
     75<personname>     
     76<surname>Françoise Pinsard</surname> 
     77<firstname>Françoise Pinsard</firstname>  
     78<othername role='mi'></othername> 
     79</personname> 
     80<email></email> 
     81</user> 
     82<user> 
     83<!-- 
     84pb avec l'apostrophe avec la ligne suivante dans bibtool 
     85++list_author_bibtool[${iauthor}]="{F}rancesco {d\'{O}vidio}" 
    6586list_author_bibtool[${iauthor}]="{O}vidio}" 
    6687list_author_title[${iauthor}]="Francesco d'Ovidio" 
    6788list_author_file[${iauthor}]="Dovidio_francesco" 
    68 # 
    69 iauthor=$(( ${iauthor} + 1)) 
     89--> 
     90<userid>Dovidio_francesco</userid> 
     91<personname>     
     92<surname>d'Ovidio</surname> 
     93<firstname>Francesco</firstname>  
     94<othername role='mi'></othername> 
     95</personname> 
     96<email></email> 
     97</user> 
     98<user> 
     99<!-- 
    70100list_author_bibtool[${iauthor}]="{M}arina {L}évy" 
    71101list_author_title[${iauthor}]="Marina Lévy" 
    72102list_author_file[${iauthor}]="Levy_marina" 
    73 # 
    74 iauthor=$(( ${iauthor} + 1)) 
     103--> 
     104<userid>Levy_marina</userid> 
     105<personname>     
     106<surname>Lévy</surname> 
     107<firstname>Marina</firstname>  
     108<othername role='mi'></othername> 
     109</personname> 
     110<email></email> 
     111</user> 
     112<user> 
     113<!-- 
    75114list_author_bibtool[${iauthor}]="{N}icolas {M}etzl" 
    76115list_author_title[${iauthor}]="Nicolas Metzl" 
    77116list_author_file[${iauthor}]="Metzl_nicolas" 
    78 # 
    79 iauthor=$(( ${iauthor} + 1)) 
     117--> 
     118<userid>Metzl_nicolas</userid> 
     119<personname>     
     120<surname>Metzl</surname> 
     121<firstname>Nicolas</firstname>  
     122<othername role='mi'></othername> 
     123</personname> 
     124<email></email> 
     125</user> 
     126<user> 
     127<!-- 
    80128list_author_bibtool[${iauthor}]="{L}aurence {E}ymard" 
    81129list_author_title[${iauthor}]="Laurence Eymard" 
    82130list_author_file[${iauthor}]="Eymard_laurence" 
    83 # 
    84 iauthor=$(( ${iauthor} + 1)) 
     131--> 
     132<userid>Eymard_laurence</userid> 
     133<personname>     
     134<surname>Eymard</surname> 
     135<firstname>Laurence</firstname>  
     136<othername role='mi'></othername> 
     137</personname> 
     138<email></email> 
     139</user> 
     140<user> 
     141<!-- 
    85142list_author_bibtool[${iauthor}]="{J}acqueline {B}outin" 
    86143list_author_title[${iauthor}]="Jacqueline Boutin" 
    87144list_author_file[${iauthor}]="Boutin_jacqueline" 
    88 # 
    89 iauthor=$(( ${iauthor} + 1)) 
     145--> 
     146<userid>Boutin_jacqueline</userid> 
     147<personname>     
     148<surname>Boutin</surname> 
     149<firstname>Jacqueline</firstname>  
     150<othername role='mi'></othername> 
     151</personname> 
     152<email></email> 
     153</user> 
     154<user> 
     155<!-- 
    90156list_author_bibtool[${iauthor}]="{V}incent {E}chevin" 
    91157list_author_title[${iauthor}]="Vincent Echevin" 
    92158list_author_file[${iauthor}]="Echevin_vincent" 
    93 # 
    94 iauthor=$(( ${iauthor} + 1)) 
     159--> 
     160<userid>Echevin_vincent</userid> 
     161<personname>     
     162<surname>Echevin</surname> 
     163<firstname>Vincent</firstname>  
     164<othername role='mi'></othername> 
     165</personname> 
     166<email></email> 
     167</user> 
     168<user> 
     169<!-- 
    95170list_author_bibtool[${iauthor}]="{C}hristophe {E}. {M}enkès" 
    96171list_author_title[${iauthor}]="Christophe Menkès" 
    97172list_author_file[${iauthor}]="Menkes_christophe" 
    98 # 
    99 iauthor=$(( ${iauthor} + 1)) 
     173--> 
     174<userid>Menkes_christophe</userid> 
     175<personname>     
     176<surname>Menkès</surname> 
     177<firstname>Christophe</firstname>  
     178<othername role='mi'></othername> 
     179</personname> 
     180<email></email> 
     181</user> 
     182<user> 
     183<!-- 
    100184list_author_bibtool[${iauthor}]="{G}urvan {M}adec" 
    101185list_author_title[${iauthor}]="Gurvan Madec" 
    102186list_author_file[${iauthor}]="Madec_gurvan" 
    103 # 
    104 iauthor=$(( ${iauthor} + 1)) 
     187--> 
     188<userid>Madec_gurvan</userid> 
     189<personname>     
     190<surname>Madec</surname> 
     191<firstname>Gurvan</firstname>  
     192<othername role='mi'></othername> 
     193</personname> 
     194<email></email> 
     195</user> 
     196<user> 
     197<!-- 
    105198list_author_bibtool[${iauthor}]="{C}hristian {É}thé" 
    106199list_author_title[${iauthor}]="Christian Éthé" 
    107200list_author_file[${iauthor}]="Ethe_christian" 
    108 # 
    109 iauthor=$(( ${iauthor} + 1)) 
     201--> 
     202<userid>Ethe_christian</userid> 
     203<personname>     
     204<surname>Éthé</surname> 
     205<firstname>Christian</firstname>  
     206<othername role='mi'></othername> 
     207</personname> 
     208<email></email> 
     209</user> 
     210<user> 
     211<!-- 
    110212list_author_bibtool[${iauthor}]="{A}lexis {C}haigneau" 
    111213list_author_title[${iauthor}]="Alexis Chaigneau" 
    112214list_author_file[${iauthor}]="Chaigneau_alexis" 
    113 # 
    114 iauthor=$(( ${iauthor} + 1)) 
     215--> 
     216<userid>Chaigneau_alexis</userid> 
     217<personname>     
     218<surname>Chaigneau</surname> 
     219<firstname>Alexis</firstname>  
     220<othername role='mi'></othername> 
     221</personname> 
     222<email></email> 
     223</user> 
     224<user> 
     225<!-- 
    115226list_author_bibtool[${iauthor}]="{S}téphane {P}ous" 
    116227list_author_title[${iauthor}]="Stéphane Pous" 
    117228list_author_file[${iauthor}]="Pous_stephane" 
    118 # 
    119 iauthor=$(( ${iauthor} + 1)) 
     229--> 
     230<userid>Pous_stephane</userid> 
     231<personname>     
     232<surname>Pous</surname> 
     233<firstname>Stéphane</firstname>  
     234<othername role='mi'></othername> 
     235</personname> 
     236<email></email> 
     237</user> 
     238<user> 
     239<!-- 
    120240list_author_bibtool[${iauthor}]="{P}ascal {T}erray" 
    121241list_author_title[${iauthor}]="Pascal Terray" 
    122242list_author_file[${iauthor}]="Terray_pascal" 
    123 # 
    124 iauthor=$(( ${iauthor} + 1)) 
     243--> 
     244<userid>Terray_pascal</userid> 
     245<personname>     
     246<surname>Terray</surname> 
     247<firstname>Pascal</firstname>  
     248<othername role='mi'></othername> 
     249</personname> 
     250<email></email> 
     251</user> 
     252<user> 
     253<!-- 
    125254list_author_bibtool[${iauthor}]="{F}rançois {C}olas" 
    126255list_author_title[${iauthor}]="François Colas" 
    127256list_author_file[${iauthor}]="Colas_francois" 
    128 # 
    129 iauthor=$(( ${iauthor} + 1)) 
     257--> 
     258<userid>Colas_francois</userid> 
     259<personname>     
     260<surname>Colas</surname> 
     261<firstname>François</firstname>  
     262<othername role='mi'></othername> 
     263</personname> 
     264<email></email> 
     265</user> 
     266<user> 
     267<!-- 
    130268list_author_bibtool[${iauthor}]="{S}ébastien {M}asson" 
    131269list_author_title[${iauthor}]="Sébastien Masson" 
    132 list_author_file[${iauthor}]="Masson_sebastion" 
    133 # 
    134 iauthor=$(( ${iauthor} + 1)) 
     270list_author_file[${iauthor}]="Masson_sebastien" 
     271--> 
     272<userid>Masson_sebastien</userid> 
     273<personname>     
     274<surname>Masson</surname> 
     275<firstname>Sébastien</firstname>  
     276<othername role='mi'></othername> 
     277</personname> 
     278<email></email> 
     279</user> 
     280<user> 
     281<!-- 
    135282list_author_bibtool[${iauthor}]="{C}laire {L}évy" 
    136283list_author_title[${iauthor}]="Claire Lévy" 
    137284list_author_file[${iauthor}]="Levy_claire" 
    138 # 
    139 iauthor=$(( ${iauthor} + 1)) 
     285--> 
     286<userid>Levy_claire</userid> 
     287<personname>     
     288<surname>Lévy</surname> 
     289<firstname>Claire</firstname>  
     290<othername role='mi'></othername> 
     291</personname> 
     292<email></email> 
     293</user> 
     294<user> 
     295<!-- 
    140296list_author_bibtool[${iauthor}]="{R}achid {B}enshila" 
    141297list_author_title[${iauthor}]="Rachid Benshila" 
    142298list_author_file[${iauthor}]="Benshila_rachid" 
    143 # 
    144 iauthor=$(( ${iauthor} + 1)) 
     299--> 
     300<userid>Benshila_rachid</userid> 
     301<personname>     
     302<surname>Benshila</surname> 
     303<firstname>Rachid</firstname>  
     304<othername role='mi'></othername> 
     305</personname> 
     306<email></email> 
     307</user> 
     308<user> 
     309<!-- 
    145310list_author_bibtool[${iauthor}]="{C}atherine {P}ierre" 
    146311list_author_title[${iauthor}]="Catherine Pierre" 
    147312list_author_file[${iauthor}]="Pierre_catherine" 
    148 # 
    149 iauthor=$(( ${iauthor} + 1)) 
     313--> 
     314<userid>Pierre_catherine</userid> 
     315<personname>     
     316<surname>Catherine</surname> 
     317<firstname>Pierre</firstname>  
     318<othername role='mi'></othername> 
     319</personname> 
     320<email></email> 
     321</user> 
     322<user> 
     323<!-- 
    150324list_author_bibtool[${iauthor}]="{I}oanna {B}ouloubassi" 
    151325list_author_title[${iauthor}]="Ioanna Bouloubassi" 
    152326list_author_file[${iauthor}]="Bouloubassi_Ioanna" 
    153 # 
    154 iauthor=$(( ${iauthor} + 1)) 
     327--> 
     328<userid>Bouloubassi_Ioanna</userid> 
     329<personname>     
     330<surname>Bouloubassi</surname> 
     331<firstname>Ioanna</firstname>  
     332<othername role='mi'></othername> 
     333</personname> 
     334<email></email> 
     335</user> 
     336<user> 
     337<!-- 
    155338list_author_bibtool[${iauthor}]="{C}édric {C}otté" 
    156339list_author_title[${iauthor}]="Cédric Cotté" 
    157340list_author_file[${iauthor}]="Cotte_cedric" 
    158 # 
    159 iauthor=$(( ${iauthor} + 1)) 
     341--> 
     342<userid>Cotte_cedric</userid> 
     343<personname>     
     344<surname>Cotté</surname> 
     345<firstname>Cédric</firstname>  
     346<othername role='mi'></othername> 
     347</personname> 
     348<email></email> 
     349</user> 
     350<user> 
     351<!-- 
    160352list_author_bibtool[${iauthor}]="{J}ean-{B}enoît {C}harrassin" 
    161353list_author_title[${iauthor}]="Jean-Benoit Charrassin" 
    162354list_author_file[${iauthor}]="Charrassin_jeanbenoit" 
    163 # 
    164 iauthor=$(( ${iauthor} + 1)) 
     355--> 
     356<userid>Charrassin_jeanbenoit</userid> 
     357<personname>     
     358<surname>Charrassin</surname> 
     359<firstname>Jean-Benoit</firstname>  
     360<othername role='mi'></othername> 
     361</personname> 
     362<email></email> 
     363</user> 
     364<user> 
     365<!-- 
    165366list_author_bibtool[${iauthor}]="{Y}ves {D}andonneau" 
    166367list_author_title[${iauthor}]="Yves Dandonneau" 
    167368list_author_file[${iauthor}]="Dandonneau_yves" 
    168 # 
    169 iauthor=$(( ${iauthor} + 1)) 
     369--> 
     370<userid>Dandonneau_yves</userid> 
     371<personname>     
     372<surname>Dandonneau</surname> 
     373<firstname>Yves</firstname>  
     374<othername role='mi'></othername> 
     375</personname> 
     376<email></email> 
     377</user> 
     378<user> 
     379<!-- 
    170380list_author_bibtool[${iauthor}]="{L}iliane {M}erlivat" 
    171381list_author_title[${iauthor}]="Liliane Merlivat" 
    172382list_author_file[${iauthor}]="Merlivat_liliane" 
    173 # 
    174 iauthor=$(( ${iauthor} + 1)) 
     383--> 
     384<userid>Merlivat_liliane</userid> 
     385<personname>     
     386<surname>Merlivat</surname> 
     387<firstname>Liliane</firstname>  
     388<othername role='mi'></othername> 
     389</personname> 
     390<email></email> 
     391</user> 
     392<user> 
     393<!-- 
    175394list_author_bibtool[${iauthor}]="{P}ascale {B}ouruet-{A}ubertot" 
    176395list_author_title[${iauthor}]="Pascale Bouruet-Aubertot" 
    177396list_author_file[${iauthor}]="Bouruetaubertot_pascale" 
    178 # 
    179 iauthor=$(( ${iauthor} + 1)) 
     397--> 
     398<userid>Bouruetaubertot_pascale</userid> 
     399<personname>     
     400<surname>Bouruet-Aubertot</surname> 
     401<firstname>Pascale</firstname>  
     402<othername role='mi'></othername> 
     403</personname> 
     404<email></email> 
     405</user> 
     406<user> 
     407<!-- 
    180408list_author_bibtool[${iauthor}]="{Y}annis {C}uypers" 
    181409list_author_title[${iauthor}]="Yannis Cuypers" 
    182410list_author_file[${iauthor}]="Cuypers_yannis" 
    183 # 
    184 iauthor=$(( ${iauthor} + 1)) 
     411--> 
     412<userid>Cuypers_yannis</userid> 
     413<personname>     
     414<surname>Cuypers</surname> 
     415<firstname>Yannis</firstname>  
     416<othername role='mi'></othername> 
     417</personname> 
     418<email></email> 
     419</user> 
     420<user> 
     421<!-- 
    185422list_author_bibtool[${iauthor}]="{J}érôme {V}ialard" 
    186423list_author_title[${iauthor}]="Jérôme Vialard" 
    187424list_author_file[${iauthor}]="Vialard_jerome" 
    188 # 
    189 iauthor=$(( ${iauthor} + 1)) 
     425--> 
     426<userid>Vialard_jerome</userid> 
     427<personname>     
     428<surname>Vialard</surname> 
     429<firstname>Jérôme</firstname>  
     430<othername role='mi'></othername> 
     431</personname> 
     432<email></email> 
     433</user> 
     434<user> 
     435<!-- 
    190436list_author_bibtool[${iauthor}]="{N}athalie {L}efèvre" 
    191437list_author_title[${iauthor}]="Nathalie Lefèvre" 
    192438list_author_file[${iauthor}]="Lefevre_nathalie" 
    193 # 
    194 iauthor=$(( ${iauthor} + 1)) 
     439--> 
     440<userid>Lefevre_nathalie</userid> 
     441<personname>     
     442<surname>Lefèvre</surname> 
     443<firstname>Nathalie</firstname>  
     444<othername role='mi'></othername> 
     445</personname> 
     446<email></email> 
     447</user> 
     448<user> 
     449<!-- 
    195450list_author_bibtool[${iauthor}]="{S}ylvie {T}hiria" 
    196451list_author_title[${iauthor}]="Sylvie Thiria" 
    197452list_author_file[${iauthor}]="Thiria_sylvie" 
    198 # 
    199 iauthor=$(( ${iauthor} + 1)) 
     453--> 
     454<userid>Thiria_sylvie</userid> 
     455<personname>     
     456<surname>Thiria</surname> 
     457<firstname>Sylvie</firstname>  
     458<othername role='mi'></othername> 
     459</personname> 
     460<email></email> 
     461</user> 
     462<user> 
     463<!-- 
    200464list_author_bibtool[${iauthor}]="{J}ulien {B}rajard" 
    201465list_author_title[${iauthor}]="Julien Brajard" 
    202466list_author_file[${iauthor}]="Brajard_julien" 
    203 # 
    204 iauthor=$(( ${iauthor} + 1)) 
     467--> 
     468<userid>Brajard_julien</userid> 
     469<personname>     
     470<surname>Brajard</surname> 
     471<firstname>Julien</firstname>  
     472<othername role='mi'></othername> 
     473</personname> 
     474<email></email> 
     475</user> 
     476<user> 
     477<!-- 
    205478list_author_bibtool[${iauthor}]="{C}arlos {M}ejia" 
    206479list_author_title[${iauthor}]="Carlos Mejia" 
    207480list_author_file[${iauthor}]="Mejia_carlos" 
    208 # 
    209 iauthor=$(( ${iauthor} + 1)) 
     481--> 
     482<userid>Mejia_carlos</userid> 
     483<personname>     
     484<surname>Mejia</surname> 
     485<firstname>Carlos</firstname>  
     486<othername role='mi'></othername> 
     487</personname> 
     488<email></email> 
     489</user> 
     490<user> 
     491<!-- 
    210492list_author_bibtool[${iauthor}]="{F}ouad {B}adran" 
    211493list_author_title[${iauthor}]="Fouad Badran" 
    212494list_author_file[${iauthor}]="Badran_fouad" 
    213 # 
    214 iauthor=$(( ${iauthor} + 1)) 
     495--> 
     496<userid>Badran_fouad</userid> 
     497<personname>     
     498<surname>Badran</surname> 
     499<firstname>Fouad</firstname>  
     500<othername role='mi'></othername> 
     501</personname> 
     502<email></email> 
     503</user> 
     504<user> 
     505<!-- 
    215506list_author_bibtool[${iauthor}]="{Y}oung-{H}yang {P}ark" 
    216 list_author_title[${iauthor}]="Young-Hyang {P}ark" 
     507list_author_title[${iauthor}]="Young-Hyang Park" 
    217508list_author_file[${iauthor}]="Park_younghyang" 
    218 # 
    219 iauthor=$(( ${iauthor} + 1)) 
     509--> 
     510<userid>Park_younghyang</userid> 
     511<personname>     
     512<surname>Park</surname> 
     513<firstname>Young-Hyang</firstname>  
     514<othername role='mi'></othername> 
     515</personname> 
     516<email></email> 
     517</user> 
     518<user> 
     519<!-- 
    220520list_author_bibtool[${iauthor}]="{J}uliette {M}ignot" 
    221521list_author_title[${iauthor}]="Juliette Mignot" 
    222522list_author_file[${iauthor}]="Mignot_juliette" 
    223 # 
    224 iauthor=$(( ${iauthor} + 1)) 
     523--> 
     524<userid>Mignot_juliette</userid> 
     525<personname>     
     526<surname>Mignot</surname> 
     527<firstname>Juliette</firstname>  
     528<othername role='mi'></othername> 
     529</personname> 
     530<email></email> 
     531</user> 
     532<user> 
     533<!-- 
    225534list_author_bibtool[${iauthor}]="{M}yriam {K}hodri" 
    226535list_author_title[${iauthor}]="Myriam Khodri" 
    227536list_author_file[${iauthor}]="Khodri_myriam" 
    228 # 
    229 iauthor=$(( ${iauthor} + 1)) 
     537--> 
     538<userid>Khodri_myriam</userid> 
     539<personname>     
     540<surname>Khodri</surname> 
     541<firstname>Myriam</firstname>  
     542<othername role='mi'></othername> 
     543</personname> 
     544<email></email> 
     545</user> 
     546<user> 
     547<!-- 
    230548list_author_bibtool[${iauthor}]="{H}ervé {{L}e {G}off}}" 
    231549list_author_title[${iauthor}]="Hervé Le Goff" 
    232550list_author_file[${iauthor}]="Legoff_herve" 
    233 # 
    234 iauthor=$(( ${iauthor} + 1)) 
     551--> 
     552<userid>Legoff_herve</userid> 
     553<personname>     
     554<surname>Le Goff</surname> 
     555<firstname>Hervé</firstname>  
     556<othername role='mi'></othername> 
     557</personname> 
     558<email></email> 
     559</user> 
     560<user> 
     561<!-- 
    235562list_author_bibtool[${iauthor}]="{C}éline {R}idame" 
    236563list_author_title[${iauthor}]="Céline Ridame" 
    237564list_author_file[${iauthor}]="Ridame_celine" 
    238 # 
    239 iauthor=$(( ${iauthor} + 1)) 
     565--> 
     566<userid>Ridame_celine</userid> 
     567<personname>     
     568<surname>Ridame</surname> 
     569<firstname>Céline</firstname>  
     570<othername role='mi'></othername> 
     571</personname> 
     572<email></email> 
     573</user> 
     574<user> 
     575<!-- 
    240576list_author_bibtool[${iauthor}]="{G}uillaume {M}assé" 
    241577list_author_title[${iauthor}]="Guillaume Massé" 
    242578list_author_file[${iauthor}]="Masse_guillaume" 
    243 # 
    244 iauthor=$(( ${iauthor} + 1)) 
     579--> 
     580<userid>Masse_guillaume</userid> 
     581<personname>     
     582<surname>Massé</surname> 
     583<firstname>Guillaume</firstname>  
     584<othername role='mi'></othername> 
     585</personname> 
     586<email></email> 
     587</user> 
     588<user> 
     589<!-- 
    245590list_author_bibtool[${iauthor}]="{A}line {T}ribollet" 
    246591list_author_title[${iauthor}]="Aline Tribollet" 
    247592list_author_file[${iauthor}]="Tribollet_aline" 
    248 # 
    249 iauthor=$(( ${iauthor} + 1)) 
     593--> 
     594<userid>Tribollet_aline</userid> 
     595<personname>     
     596<surname>Tribollet</surname> 
     597<firstname>Aline</firstname>  
     598<othername role='mi'></othername> 
     599</personname> 
     600<email></email> 
     601</user> 
     602<user> 
     603<!-- 
    250604list_author_bibtool[${iauthor}]="{A}lain {S}aliot" 
    251605list_author_title[${iauthor}]="Alain Saliot" 
    252606list_author_file[${iauthor}]="Saliot_alain" 
    253 # 
    254 iauthor=$(( ${iauthor} + 1)) 
     607--> 
     608<userid>Saliot_alain</userid> 
     609<personname>     
     610<surname>Saliot</surname> 
     611<firstname>Alain</firstname>  
     612<othername role='mi'></othername> 
     613</personname> 
     614<email></email> 
     615</user> 
     616<user> 
     617<!-- 
    255618list_author_bibtool[${iauthor}]="{G}iovanni {A}loisi" 
    256619list_author_title[${iauthor}]="Giovanni Aloisi" 
    257620list_author_file[${iauthor}]="Aloisi_giovanni" 
    258 # 
    259 iauthor=$(( ${iauthor} + 1)) 
     621--> 
     622<userid>Aloisi_giovanni</userid> 
     623<personname>     
     624<surname>Aloisi</surname> 
     625<firstname>Giovanni</firstname>  
     626<othername role='mi'></othername> 
     627</personname> 
     628<email></email> 
     629</user> 
     630<user> 
     631<!-- 
    260632list_author_bibtool[${iauthor}]="{Ch}ristian {B}runet" 
    261633list_author_title[${iauthor}]="Christian Brunet" 
    262634list_author_file[${iauthor}]="Brunet_christian" 
    263 # 
    264 iauthor=$(( ${iauthor} + 1)) 
     635--> 
     636<userid>Brunet_christian</userid> 
     637<personname>     
     638<surname>Brunet</surname> 
     639<firstname>Christian</firstname>  
     640<othername role='mi'></othername> 
     641</personname> 
     642<email></email> 
     643</user> 
     644<user> 
     645<!-- 
    265646list_author_bibtool[${iauthor}]="{S}abine {A}rnault" 
    266647list_author_title[${iauthor}]="Sabine Arnault" 
    267648list_author_file[${iauthor}]="Arnault_sabine" 
    268 # 
    269 iauthor=$(( ${iauthor} + 1)) 
     649--> 
     650<userid>Arnault_sabine</userid> 
     651<personname>     
     652<surname>Arnault</surname> 
     653<firstname>Sabine</firstname>  
     654<othername role='mi'></othername> 
     655</personname> 
     656<email></email> 
     657</user> 
     658<user> 
     659<!-- 
    270660list_author_bibtool[${iauthor}]="{J}ean-{L}uc {M}élice" 
    271661list_author_title[${iauthor}]="Jean-Luc Mélice" 
    272662list_author_file[${iauthor}]="Melice_jeanluc" 
    273 # 
    274 iauthor=$(( ${iauthor} + 1)) 
     663--> 
     664<userid>Melice_jeanluc</userid> 
     665<personname>     
     666<surname>Mélice</surname> 
     667<firstname>Jean-Luc</firstname>  
     668<othername role='mi'></othername> 
     669</personname> 
     670<email></email> 
     671</user> 
     672<user> 
     673<!-- 
    275674list_author_bibtool[${iauthor}]="{Ch}ristophe {H}erbaut" 
    276675list_author_title[${iauthor}]="Christophe Herbaut" 
    277676list_author_file[${iauthor}]="Herbaut_christophe" 
    278 # 
    279 iauthor=$(( ${iauthor} + 1)) 
     677--> 
     678<userid>Herbaut_christophe</userid> 
     679<personname>     
     680<surname>Herbaut</surname> 
     681<firstname>Christophe</firstname>  
     682<othername role='mi'></othername> 
     683</personname> 
     684<email></email> 
     685</user> 
     686<user> 
     687<!-- 
    280688list_author_bibtool[${iauthor}]="{M}arie-{N}oëlle {H}oussais" 
    281689list_author_title[${iauthor}]="Marie-Noëlle Houssais" 
    282690list_author_file[${iauthor}]="Houssais_marienoelle" 
    283 # 
    284 iauthor=$(( ${iauthor} + 1)) 
     691--> 
     692<userid>Houssais_marienoelle</userid> 
     693<personname>     
     694<surname>Houssais</surname> 
     695<firstname>Marie-Noëlle</firstname>  
     696<othername role='mi'></othername> 
     697</personname> 
     698<email></email> 
     699</user> 
     700<user> 
     701<!-- 
    285702list_author_bibtool[${iauthor}]="{E}mmanuelle {S}ultan" 
    286703list_author_title[${iauthor}]="Emmanuelle Sultan" 
    287704list_author_file[${iauthor}]="Sultan_emmanuelle" 
    288 # 
    289 iauthor=$(( ${iauthor} + 1)) 
     705--> 
     706<userid>Sultan_emmanuelle</userid> 
     707<personname>     
     708<surname>Sultan</surname> 
     709<firstname>Emmanuelle</firstname>  
     710<othername role='mi'></othername> 
     711</personname> 
     712<email></email> 
     713</user> 
     714<user> 
     715<!-- 
    290716list_author_bibtool[${iauthor}]="{B}enjamin {S}ultan" 
    291717list_author_title[${iauthor}]="Benjamin Sultan" 
    292718list_author_file[${iauthor}]="Sultan_benjamin" 
    293 # 
    294 iauthor=$(( ${iauthor} + 1)) 
     719--> 
     720<userid>Sultan_benjamin</userid> 
     721<personname>     
     722<surname>Sultan</surname> 
     723<firstname>Benjamin</firstname>  
     724<othername role='mi'></othername> 
     725</personname> 
     726<email></email> 
     727</user> 
     728<user> 
     729<!-- 
    295730list_author_bibtool[${iauthor}]="{Y}annis {C}uypers" 
    296731list_author_title[${iauthor}]="Yannis Cuypers" 
    297732list_author_file[${iauthor}]="Cuypers_yannis" 
    298 # 
    299 iauthor=$(( ${iauthor} + 1)) 
     733--> 
     734<userid>Cuypers_yannis</userid> 
     735<personname>     
     736<surname>Cuypers</surname> 
     737<firstname>Yannis</firstname>  
     738<othername role='mi'></othername> 
     739</personname> 
     740<email></email> 
     741</user> 
     742<user> 
     743<!-- 
    300744list_author_bibtool[${iauthor}]="{L}aurent {M}ortier" 
    301745list_author_title[${iauthor}]="Laurent Mortier" 
    302746list_author_file[${iauthor}]="Mortier_laurent" 
    303 # 
    304 iauthor=$(( ${iauthor} + 1)) 
     747--> 
     748<userid>Mortier_laurent</userid> 
     749<personname>     
     750<surname>Mortier</surname> 
     751<firstname>Laurent</firstname>  
     752<othername role='mi'></othername> 
     753</personname> 
     754<email></email> 
     755</user> 
     756<user> 
     757<!-- 
    305758list_author_bibtool[${iauthor}]="{M}ichel {C}répon" 
    306759list_author_title[${iauthor}]="Michel Crépon" 
    307760list_author_file[${iauthor}]="Crepon_michel" 
    308 # 
    309 iauthor=$(( ${iauthor} + 1)) 
     761--> 
     762<userid>Crepon_michel</userid> 
     763<personname>     
     764<surname>Crépon</surname> 
     765<firstname>Michel</firstname>  
     766<othername role='mi'></othername> 
     767</personname> 
     768<email></email> 
     769</user> 
     770<user> 
     771<!-- 
    310772list_author_bibtool[${iauthor}]="{N}icolas {M}artin" 
    311773list_author_title[${iauthor}]="Nicolas Martin" 
    312774list_author_file[${iauthor}]="Martin_nicolas" 
    313 # 
    314 iauthor=$(( ${iauthor} + 1)) 
     775--> 
     776<userid>Martin_nicolas</userid> 
     777<personname>     
     778<surname>Martin</surname> 
     779<firstname>Nicolas</firstname>  
     780<othername role='mi'></othername> 
     781</personname> 
     782<email></email> 
     783</user> 
     784<user> 
     785<!-- 
    315786list_author_bibtool[${iauthor}]="{A}drien {M}artin" 
    316787list_author_title[${iauthor}]="Adrien Martin" 
    317788list_author_file[${iauthor}]="Martin_adrien" 
    318 # 
    319 iauthor=$(( ${iauthor} + 1)) 
     789--> 
     790<userid>Martin_adrien</userid> 
     791<personname>     
     792<surname>Martin</surname> 
     793<firstname>Adrien</firstname>  
     794<othername role='mi'></othername> 
     795</personname> 
     796<email></email> 
     797</user> 
     798<user> 
     799<!-- 
    320800list_author_bibtool[${iauthor}]="{F}rédéric {V}ivier" 
    321801list_author_title[${iauthor}]="Fréderic Vivier" 
    322802list_author_file[${iauthor}]="Vivier_frederic" 
    323 # 
    324 iauthor=$(( ${iauthor} + 1)) 
     803--> 
     804<userid>Vivier_frederic</userid> 
     805<personname>     
     806<surname>Vivier</surname> 
     807<firstname>Fréderic</firstname>  
     808<othername role='mi'></othername> 
     809</personname> 
     810<email></email> 
     811</user> 
     812<user> 
     813<!-- 
    325814list_author_bibtool[${iauthor}]="{S}imon {M}orisset" 
    326815list_author_title[${iauthor}]="Simon Morisset" 
    327816list_author_file[${iauthor}]="Morisset_simon" 
    328 # 
    329 iauthor=$(( ${iauthor} + 1)) 
     817--> 
     818<userid>Morisset_simon</userid> 
     819<personname>     
     820<surname>Morisset</surname> 
     821<firstname>Simon</firstname>  
     822<othername role='mi'></othername> 
     823</personname> 
     824<email></email> 
     825</user> 
     826<user> 
     827<!-- 
    330828list_author_bibtool[${iauthor}]="{A}ntonio {L}ourenço" 
    331829list_author_title[${iauthor}]="Antonio Lourenço" 
    332830list_author_file[${iauthor}]="Lourenco_antonio" 
    333 # 
    334 iauthor=$(( ${iauthor} + 1)) 
     831--> 
     832<userid>Lourenco_antonio</userid> 
     833<personname>     
     834<surname>Lourenço</surname> 
     835<firstname>Antonio</firstname>  
     836<othername role='mi'></othername> 
     837</personname> 
     838<email></email> 
     839</user> 
     840<user> 
     841<!-- 
    335842list_author_bibtool[${iauthor}]="{G}illes {R}everdin" 
    336843list_author_title[${iauthor}]="Gilles Reverdin" 
    337844list_author_file[${iauthor}]="Reverdin_gilles" 
    338 # 
    339 iauthor=$(( ${iauthor} + 1)) 
     845--> 
     846<userid>Reverdin_gilles</userid> 
     847<personname>     
     848<surname>Reverdin</surname> 
     849<firstname>Gilles</firstname>  
     850<othername role='mi'></othername> 
     851</personname> 
     852<email></email> 
     853</user> 
     854<user> 
     855<!-- 
    340856list_author_bibtool[${iauthor}]="{X}avier {C}apet" 
    341857list_author_title[${iauthor}]="Xavier Capet" 
    342858list_author_file[${iauthor}]="Capet_xavier" 
    343 # 
    344 iauthor=$(( ${iauthor} + 1)) 
     859--> 
     860<userid>Capet_xavier</userid> 
     861<personname>     
     862<surname>Capet</surname> 
     863<firstname>Xavier</firstname>  
     864<othername role='mi'></othername> 
     865</personname> 
     866<email></email> 
     867</user> 
     868<user> 
     869<!-- 
    345870list_author_bibtool[${iauthor}]="{P}ierre {T}estor" 
    346871list_author_title[${iauthor}]="Pierre Testor" 
    347872list_author_file[${iauthor}]="Testor_pierre" 
    348 # 
    349 iauthor=$(( ${iauthor} + 1)) 
     873--> 
     874<userid>Testor_pierre</userid> 
     875<personname>     
     876<surname>Testor</surname> 
     877<firstname>Pierre</firstname>  
     878<othername role='mi'></othername> 
     879</personname> 
     880<email></email> 
     881</user> 
     882<user> 
     883<!-- 
    350884list_author_bibtool[${iauthor}]="{L}uc {O}rtlieb" 
    351885list_author_title[${iauthor}]="Luc Ortlieb" 
    352886list_author_file[${iauthor}]="Ortlieb_luc" 
    353 # 
    354 iauthor=$(( ${iauthor} + 1)) 
     887--> 
     888<userid>Ortlieb_luc</userid> 
     889<personname>     
     890<surname>Ortlieb</surname> 
     891<firstname>Luc</firstname>  
     892<othername role='mi'></othername> 
     893</personname> 
     894<email></email> 
     895</user> 
     896<user> 
     897<!-- 
    355898list_author_bibtool[${iauthor}]="{B}runo {T}urcq" 
    356899list_author_title[${iauthor}]="Bruno Turcq" 
    357900list_author_file[${iauthor}]="Turcq_bruno" 
    358 # 
    359 iauthor=$(( ${iauthor} + 1)) 
     901--> 
     902<userid>Turcq_bruno</userid> 
     903<personname>     
     904<surname>Turcq</surname> 
     905<firstname>Bruno</firstname>  
     906<othername role='mi'></othername> 
     907</personname> 
     908<email></email> 
     909</user> 
     910<user> 
     911<!-- 
    360912list_author_bibtool[${iauthor}]="{S}andrine {C}aquineau" 
    361913list_author_title[${iauthor}]="Sandrine Caquineau" 
    362914list_author_file[${iauthor}]="Caquineau_sandrine" 
    363 # 
    364 iauthor=$(( ${iauthor} + 1)) 
     915--> 
     916<userid>Caquineau_sandrine</userid> 
     917<personname>     
     918<surname>Caquineau</surname> 
     919<firstname>Sandrine</firstname>  
     920<othername role='mi'></othername> 
     921</personname> 
     922<email></email> 
     923</user> 
     924<user> 
     925<!-- 
    365926list_author_bibtool[${iauthor}]="{C}laire {E}. {L}azareth" 
    366927list_author_title[${iauthor}]="Claire Lazareth" 
    367928list_author_file[${iauthor}]="Lazareth_claire" 
    368 # 
    369 iauthor=$(( ${iauthor} + 1)) 
     929--> 
     930<userid>Lazareth_claire</userid> 
     931<personname>     
     932<surname>Lazareth</surname> 
     933<firstname>Claire</firstname>  
     934<othername role='mi'></othername> 
     935</personname> 
     936<email></email> 
     937</user> 
     938<user> 
     939<!-- 
    370940list_author_bibtool[${iauthor}]="{F}lorence {{L}e {C}ornec}" 
    371941list_author_title[$iauthor]="Florence Le Cornec" 
    372942list_author_file[${iauthor}]="Lecornec_florence" 
    373 # 
    374 iauthor=$(( ${iauthor} + 1)) 
     943--> 
     944<userid>Lecornec_florence</userid> 
     945<personname>     
     946<surname>Le Cornec</surname> 
     947<firstname>Florence</firstname>  
     948<othername role='mi'></othername> 
     949</personname> 
     950<email></email> 
     951</user> 
     952<user> 
     953<!-- 
    375954list_author_bibtool[${iauthor}]="{M}agloire {M}andeng-{Y}ogo" 
    376955list_author_title[$iauthor]="Magloire Mandeng-Yogo" 
    377956list_author_file[${iauthor}]="Mandengyogo_magloire" 
    378 # 
    379 iauthor=$(( ${iauthor} + 1)) 
     957--> 
     958<userid>Mandengyogo_magloire</userid> 
     959<personname>     
     960<surname>Mandeng-Yogo</surname> 
     961<firstname>Magloire</firstname>  
     962<othername role='mi'></othername> 
     963</personname> 
     964<email></email> 
     965</user> 
     966<user> 
     967<!-- 
    380968list_author_bibtool[${iauthor}]="{A}nne-{M}arie {S}émah" 
    381969list_author_title[$iauthor]="Anne-Marie Sémah" 
    382970list_author_file[${iauthor}]="Semah_annemarie" 
    383 # 
    384 iauthor=$(( ${iauthor} + 1)) 
     971--> 
     972<userid>Semah_annemarie</userid> 
     973<personname>     
     974<surname>Sémah</surname> 
     975<firstname>Anne-Marie</firstname>  
     976<othername role='mi'></othername> 
     977</personname> 
     978<email></email> 
     979</user> 
     980<user> 
     981<!-- 
    385982list_author_bibtool[${iauthor}]="{H}ugues {B}oucher" 
    386983list_author_title[$iauthor]="Hugues Boucher" 
    387984list_author_file[${iauthor}]="Boucher_hugues" 
    388 # 
    389 iauthor=$(( ${iauthor} + 1)) 
     985--> 
     986<userid>Boucher_hugues</userid> 
     987<personname>     
     988<surname>Boucher</surname> 
     989<firstname>Hugues</firstname>  
     990<othername role='mi'></othername> 
     991</personname> 
     992<email></email> 
     993</user> 
     994<user> 
     995<!-- 
    390996list_author_bibtool[${iauthor}]="{A}bdelfettah {S}ifeddine" 
    391997list_author_title[$iauthor]="Abdelfettah Sifeddine" 
    392998list_author_file[${iauthor}]="Sifeddine_abdelfettah" 
    393 # 
    394 iauthor=$(( ${iauthor} + 1)) 
     999--> 
     1000<userid>Sifeddine_abdelfettah</userid> 
     1001<personname>     
     1002<surname>Sifeddine</surname> 
     1003<firstname>Abdelfettah</firstname>  
     1004<othername role='mi'></othername> 
     1005</personname> 
     1006<email></email> 
     1007</user> 
     1008<user> 
     1009<!-- 
    3951010list_author_bibtool[${iauthor}]="{D}enis {W}irrmann" 
    3961011list_author_title[$iauthor]="Denis Wirrmann" 
    3971012list_author_file[${iauthor}]="Wirrmann_denis" 
    398 # 
    399 iauthor=$(( ${iauthor} + 1)) 
     1013--> 
     1014<userid>Wirrmann_denis</userid> 
     1015<personname>     
     1016<surname>Wirrmann</surname> 
     1017<firstname>Denis</firstname>  
     1018<othername role='mi'></othername> 
     1019</personname> 
     1020<email></email> 
     1021</user> 
     1022<user> 
     1023<!-- 
    4001024list_author_bibtool[${iauthor}]="{F}ethye {C}etin" 
    4011025list_author_title[$iauthor]="Fethye Cetin" 
    4021026list_author_file[${iauthor}]="Cetin_fethye" 
    403 # 
    404 iauthor=$(( ${iauthor} + 1)) 
     1027--> 
     1028<userid>Cetin_fethye</userid> 
     1029<personname>     
     1030<surname>Cetin</surname> 
     1031<firstname>Fethye</firstname>  
     1032<othername role='mi'></othername> 
     1033</personname> 
     1034<email></email> 
     1035</user> 
     1036<user> 
     1037<!-- 
    4051038list_author_bibtool[${iauthor}]="{S}abine {F}évrier" 
    4061039list_author_title[${iauthor}]="Sabine Février" 
    4071040list_author_file[${iauthor}]="Fevrier_sabine" 
    408 # 
    409 iauthor=$(( ${iauthor} + 1)) 
     1041--> 
     1042<userid>Fevrier_sabine</userid> 
     1043<personname>     
     1044<surname>Février</surname> 
     1045<firstname>Sabine</firstname>  
     1046<othername role='mi'></othername> 
     1047</personname> 
     1048<email></email> 
     1049</user> 
     1050<user> 
     1051<!-- 
    4101052list_author_bibtool[${iauthor}]="{J}érôme {S}irven" 
    4111053list_author_title[${iauthor}]="Jérôme Sirven" 
    4121054list_author_file[${iauthor}]="Sirven_jerome" 
    413 # 
    414 iauthor=$(( ${iauthor} + 1)) 
     1055--> 
     1056<userid>Sirven_jerome</userid> 
     1057<personname>     
     1058<surname>Sirven</surname> 
     1059<firstname>Jérôme</firstname>  
     1060<othername role='mi'></othername> 
     1061</personname> 
     1062<email></email> 
     1063</user> 
     1064<user> 
     1065<!-- 
    4151066list_author_bibtool[${iauthor}]="{G}uillaume {G}astineau" 
    4161067list_author_title[${iauthor}]="Guillaume Gastineau" 
    4171068list_author_file[${iauthor}]="Gastineau_guillaume" 
    418 # 
    419 iauthor=$(( ${iauthor} + 1)) 
     1069--> 
     1070<userid>Gastineau_guillaume</userid> 
     1071<personname>     
     1072<surname>Gastineau</surname> 
     1073<firstname>Guillaume</firstname>  
     1074<othername role='mi'></othername> 
     1075</personname> 
     1076<email></email> 
     1077</user> 
     1078<user> 
     1079<!-- 
    4201080list_author_bibtool[${iauthor}]="{É}ric {G}uilyardi" 
    4211081list_author_title[${iauthor}]="Éric Guilyardi" 
    4221082list_author_file[${iauthor}]="Guilyardi_eric" 
    423 # 
    424 iauthor=$(( ${iauthor} + 1)) 
     1083--> 
     1084<userid>Guilyardi_eric</userid> 
     1085<personname>     
     1086<surname>Guilyardi</surname> 
     1087<firstname>Éric</firstname>  
     1088<othername role='mi'></othername> 
     1089</personname> 
     1090<email></email> 
     1091</user> 
     1092<user> 
     1093<!-- 
    4251094list_author_bibtool[${iauthor}]="{D}iana {R}uiz-{P}ino" 
    4261095list_author_title[${iauthor}]="Diana Ruiz-Pino" 
    4271096list_author_file[${iauthor}]="Ruizpino_diana" 
    428 # 
    429 iauthor=$(( ${iauthor} + 1)) 
     1097--> 
     1098<userid>Ruizpino_diana</userid> 
     1099<personname>     
     1100<surname>Ruiz-Pino</surname> 
     1101<firstname>Diana</firstname>  
     1102<othername role='mi'></othername> 
     1103</personname> 
     1104<email></email> 
     1105</user> 
     1106<user> 
     1107<!-- 
    4301108list_author_bibtool[${iauthor}]="{R}obert {M}olcard" 
    4311109list_author_title[${iauthor}]="Robert Molcard" 
    4321110list_author_file[${iauthor}]="Molcard_robert" 
    433 # 
    434 iauthor=$(( ${iauthor} + 1)) 
     1111--> 
     1112<userid>Molcard_robert</userid> 
     1113<personname>     
     1114<surname>Molcard</surname> 
     1115<firstname>Robert</firstname>  
     1116<othername role='mi'></othername> 
     1117</personname> 
     1118<email></email> 
     1119</user> 
     1120<user> 
     1121<!-- 
    4351122list_author_bibtool[${iauthor}]="{D}avid {W}illiamson" 
    4361123list_author_title[${iauthor}]="David Williamson" 
    4371124list_author_file[${iauthor}]="Williamson_david" 
    438 # 
    439 iauthor=$(( ${iauthor} + 1)) 
     1125--> 
     1126<userid>Williamson_david</userid> 
     1127<personname>     
     1128<surname>Williamson</surname> 
     1129<firstname>David</firstname>  
     1130<othername role='mi'></othername> 
     1131</personname> 
     1132<email></email> 
     1133</user> 
     1134<user> 
     1135<!-- 
    4401136list_author_bibtool[${iauthor}]="{J}ean-{F}rançois {S}aliège" 
    4411137list_author_title[${iauthor}]="Jean-François Saliège" 
    4421138list_author_file[${iauthor}]="Saliege_jeanfrancois" 
    443 # 
    444 iauthor=$(( ${iauthor} + 1)) 
     1139--> 
     1140<userid>Saliege_jeanfrancois</userid> 
     1141<personname>     
     1142<surname>Saliège</surname> 
     1143<firstname>Jean-François</firstname>  
     1144<othername role='mi'></othername> 
     1145</personname> 
     1146<email></email> 
     1147</user> 
     1148<user> 
     1149<!-- 
    4451150list_author_bibtool[${iauthor}]="{T}akeshi {I}zumo" 
    4461151list_author_title[${iauthor}]="Takeshi Izumo" 
    4471152list_author_file[${iauthor}]="Izumo_takeshi" 
    448 # 
    449 export list_author_file 
    450 export list_author_title 
    451 export list_author_bibtool 
     1153--> 
     1154<userid>Izumo_takeshi</userid> 
     1155<personname>     
     1156<surname>Izumo</surname> 
     1157<firstname>Takeshi</firstname>  
     1158<othername role='mi'></othername> 
     1159</personname> 
     1160<email></email> 
     1161</user> 
     1162</users> 
Note: See TracChangeset for help on using the changeset viewer.