使用 \DefineBibliographyStrings 时出错。如何更正?

使用 \DefineBibliographyStrings 时出错。如何更正?

当我尝试使用\DefineBibliographyStrings这些代码时,

\documentclass{scrbook}
\usepackage{biblatex}

\DefineBibliographyStrings{english}{%
  bibliography = {References},
  references = {Works Cited},
}
\begin{document}



This is by first title..
\cite{small}


\bibliographystyle{plain}
\bibliography{mybib}
\end{document}

它给出了以下错误,

包 biblatex 错误:文件‘d.bbl’不是由 biblatex 创建。

包 biblatex 错误:“\bibliographystyle”无效。

我该如何纠正这个问题?

答案1

根据以上评论以及 @moewe 的请求,我发布了这个答案,但有一个小错误。那就是参考列表中的编号不正确,但是,对于该参考这个问题

这是更正后的代码,

\documentclass[12pt,a4paper,footinclude=true,headinclude=true,openany]{scrbook} % 
\usepackage[backend=bibtex]{biblatex}
\bibliography{mybib}
\DeclareBibliographyCategory{cited}
\AtEveryCitekey{\addtocategory{cited}{\thefield{entrykey}}}
\nocite{*}
\usepackage{filecontents}

\begin{filecontents*}{mybib.bib}
@Book{bapat2013combinatorial,
 author = {Bapat, R. B.},
 title = {Combinatorial matrix theory and generalized inverses of matrices},
 publisher = {Springer},
 year = {2013},
 address = {New Delhi New York},
 isbn = {8132210522}
 }

@book{nashed1976generalized,
  title={Generalized Inverses and Applications: Proceedings of an Advanced Seminar on Generalized Inverses and Applications},
  author={Nashed, M.Z.},
  series={Academic Press rapid manuscript reproduction},
  url={https://books.google.co.in/books?id=YXbyQwAACAAJ},
  year={1976},
  publisher={Academic Press}
} 

@book{kesavan2014functional,
  title={Functional Analysis},
  author={Kesavan, S.},
  series={Texts and Readings in Mathematics},
  url={https://books.google.co.in/books?id=YXbyQwAACAAJ},
    year={2014},
  publisher={Hindustan Book Agency(India)}
  Number={52}
  isbn={978-93-80250-62-5}
} 

@article{mos,
author = {Moslehian},
title = {A Survey Of The Complemented Subspace Problem},
journal = {Trends in Mathematics,
Information Center for Mathematical Sciences},
year = {June, 2006},
volume = {9}
Number = {1}
Pages={91–98},
note = {tohbhhjhj appear},
}
\end{filecontents*}

\begin{document}
%\maketitle
%\input{tit.tex}
\pagenumbering{roman}
\tableofcontents


\chapter{A Unified Operator Theory of Generalized Inverses}

See this \cite{kesavan2014functional} gives [2] as the reference number, but I want that this has to be [1], since I am citing this as my first citation in my first page of my notes. 


\addcontentsline{toc}{chapter}{References}
\printbibliography[title={Works cited},category=cited]% default title for `article` class: "References"
\printbibliography[title={Further Reading},notcategory=cited]


\end{document}

输出是,

在此处输入图片描述

在此处输入图片描述

相关内容