0

I use bibtex2html to produce a webpage and would like to change the bibstyle. I have a style first.bst produced with docstrip. The command

bibtex2html ../frank2link.bib -s first.bst

nor

bibtex2html ../frank2link.bib -s first

does not work. The file first.bst is in the local directory.

What styles are accepted? Anything else I do wrong? Help is appreciated!

user855443
  • 2,596
  • 3
  • 25
  • 37

1 Answers1

0

bibtex2html requires strictly to have the options before the .bib file. Thus something like

bibtex2html  --title "Publicationlist xx" --style  first.bst biblio.bib

works.

Processing may produce errors for commands set up in the style file but not used in bibex2html.

user855443
  • 2,596
  • 3
  • 25
  • 37