I am doing a book document which has 3 chapters. Each chapter has 4 sections. I need to put the bibliography per section, so I am using \refsection enviorment to do the job.
It works perfectly but, the problem is I need to compile 12 times manually the bibliography each time.
I am working with this example code with 2 chapters with 1 bibliography section per chapter:
\documentclass[12pt,twoside]{book}
\title{\LaTeX test for several things in my thesis}
\author{John Doe}
%% Biblio %%
\usepackage[backend = bibtex8,citestyle=numeric-comp,]{biblatex}
\addbibresource{biblio_1.bib}
\addbibresource{biblio_2.bib}
%% Document %%
\begin{document}
\begin{refsection}
\chapter{This is the 1$^{st}$ chapter}
Hello world, this is one reference \cite{Ex1}, and this is other \cite{Ex2}.
\printbibliography
\end{refsection}
%%
\begin{refsection}
\chapter{This is the 2$^{nd}$ chapter}
Hello world, this is one reference \cite{Ex3}, and this is other \cite{Ex1}.
\printbibliography
\end{refsection}
\end{document}
Is there any way to do a batch compilation in TeXMaker to avoid compiling 12 times (changing the .aux name by hand in the compiler each time) and read all the .aux documents (FileName1-blx.aux, FileName2-blx.aux...FileName12-blx.aux) in one sigle command?
Thank you so much in advance
biblatexfeatures anyway. BibTeX and BibTeX8 only provide a reduced set of features. Just changebackend=bibtex8tobackend=biberand tell your editor to run Biber for you: https://tex.stackexchange.com/q/154751/35864 – moewe Jun 05 '18 at 19:56