I'm new here. My problem is, that I'm using natbib but I need an ibid. function. Natbib does not provide something similar, therefore I must change to bibtex. I have two bibliographies.
Now i wrote the whole paper and have to turn it in soon, but I need this ibid. function.
My preamble:
\usepackage{hyperref}
\usepackage{natbib}
\usepackage{multibib}
\usepackage{url}
\newcites{online}{Web Archive}
If a paper goes into the normal bibliography I write \citep{Arthur2008} and if it has to go into the bibliography "Web Archive" I write \citeponline{Arthur2008}.
Now I have to change the whole think into biblatex to use the ibid. function (authoryear-ibid). Is there a possibility I can change only change the preambel, so everything stays the same, without changing \citep / \citeponline within the paper... Because this would mean soo much work..
I would prob. find it out myself, but I'm really in a hurry...
Thank you very much for all help
\usepackage[natbib=true]{biblatex}then you can use\citet,\citepetc. in your document withbiblatex. – Marijn Jun 18 '19 at 10:13onlineentries are actually specified as@onlineor a similar distinct type in your.bibfile, then you can just replace all\citeponlinecommands by\citep(you can do that in a few seconds with the search and replace function of your editor) and then use\printbibliography[type=online]for your online subbibliography and\printbibliography[nottype=online]for the bibliography with all other types. – Marijn Jun 18 '19 at 12:45.bibfile you can also cite them with regular\citepand print the different bib files are separate bibliographies, see for example https://tex.stackexchange.com/questions/358963/one-bibliography-section-per-bib-file-biblatex. For this the entries do not need to be of the same type, but they need to be in different.bibfiles. – Marijn Jun 18 '19 at 12:49@articlecould be online or not) and they are not in different.bibfiles, then you can add a category to each individual online entry and print a bibliography for that category only. You could automate that by defining\citeponlineas first\addtocategory{online}{citekey}and then\citep{citekey}. I could expand that into an answer if this is your situation (and when I have time...). – Marijn Jun 18 '19 at 12:56