I want to use my own bibtex style (from a .bst file) in combination with the biblatex package (I want to use this package to have separate bibliographies for each part). Since the \bibliographystyle{} command cannot be used with the biblatex package, how do I import it?
\documentclass[b5paper, twoside, 11pt]{book}
\usepackage{blindtext}
\usepackage[hmargin=2.5cm,vmargin=2.5cm]{geometry}
\usepackage[style=numeric,doi=false,isbn=false,eprint=false,url=false,firstinits=true,backend=bibtex,refsection=part]{biblatex} % used to make seperate references for each part
\addbibresource{bibfile.bib}
%\bibliographystyle{style} % <- want to include a style.bst file here
\begin{document}
\cleardoublepage
\part*{Introduction}
\Blindtext
\cite{...}
\Blindtext
\printbibliography
\part{Part I}
\Blindtext
\cite{...}
\Blindtext
\printbibliography
\end{document}
biblatexuses a completely different system for citations and bibliography than classical BibTeX and does not allow you to use your custom.bstfiles. See https://tex.stackexchange.com/q/61956/35864, https://tex.stackexchange.com/q/281358/35864, https://tex.stackexchange.com/q/174676/35864 – moewe Jun 10 '19 at 09:30biblatex's advanced features (that are not implemented for BibTeX), you can simply dropbiblatexand go with the BibTeX approach of producing bibliographies (\bibliographystyle&\bibliography). If you needbiblatex, you will have to re-implement your style withbiblatex. There is no conversion tool or even guide available for.bst->biblatexstyles. You'll have to start from generic advice such as https://tex.stackexchange.com/q/12806/35864 – moewe Jun 10 '19 at 09:36