I am using the following codes for my notes..
\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}
Question:
I wish my "work cited" must give me the references list in the order whatever i am maintaining in my citation in my notes. That is, if I cite the
mosin my first page is has to be the first reference in my work cited.And in the
Further reading, I should restart the numbering.And I dont want the url for a book in my Reference list.
Here is my output,
First page
Works cited page.
All are in distinct pages, to give minimal i am croping only the contents.





