[Tex/LaTex] Remove the URL labels in IEEE bibliography

bibtexieee-styleieeetran

The following figure is generated by

\documentclass[10pt, conference]{IEEEtran}
\bibliographystyle{IEEEtran}
\bibliography{IEEEabrv,myReferences} 

The myReferences is simpe as follows:

@Misc{Pig,
  title =    {{Apache Pig}},
  url = {http://pig.apache.org}
}

@Misc{MAT,
  title =    {{Eclipse Memory Analyzer}},
  url = {http://www.eclipse.org/mat}
}

enter image description here

The labels (i.e., [Online] and Available) are automatically generated by IEEEtran.bst. Is there a way to remove the label "Available"? Thanks!

The IEEE templates can be found here.

Best Answer

You could put the information on the URL in the note field instead of the url field:

@Misc{Pig,
  title =    {{Apache Pig}},
  note = {\url{http://pig.apache.org}}
}

@Misc{MAT,
  title =    {{Eclipse Memory Analyzer}},
  note = {\url{http://www.eclipse.org/mat}}
}

(the command \url change the font and, together with \usepackage{hyperref}, adds a link to the corresponding URL)