Fonction Scilab
eng - fr


analyse_bbl_file - modifie un fichier bbl LaTex

Librairie

Séquence d'appel

analyse_bbl_file(name)

Paramètres

Description

Add here a paragraph of the function description. Other paragraph can be added

Add here a paragraph of the function description

Exemple

Add here scilab instructions and comments

Contenu du fichier


//analyse_bbl_file
//fonction qui modifie un fichier bbl
//produit par bibtex avec IEETransBST
//pour pouvoir correctement etre compiler
//par latex2html
//
//Entrée : name : nom du fichier à analyser.

function analyse_bbl_file(name)
 if fileinfo(name)<>[] then
  tt=mgetl(name);
  a=[];
  b=[];
  for i=1:size(tt,1)
   if strindex(tt(i),'\csname url@rmstyle\endcsname')<>[] then
    a=i;
   end
   if strindex(tt(i),'\bibitem{')<>[] then
    b=i;
    break;
   end
  end
  if a<>[] & b<>[] then
   new_tt=[tt(1:a-1);tt(b:size(tt,1))];
   mputl(new_tt,name);
  end
 end
 
endfunction 

Fonction(s) utilisée(s)

Add here the used function name and references

Auteurs

enter here the author name Add here the author references