I'm having trouble using chapter-based bibliography and subappendices from the appendix package.
I have the following setup:
Code: Select all
Code, edit and compile here:
\usepackage[refsection=chapter,style=ieee,citestyle=numeric-comp]{biblatex}\usepackage{appendix}\begin{document}\chapter{Chapter 1}\section{Section 1.1}Some text with \cite[reference1].\begin{subappendices}\section{Appendix 1.A}Appendix text with \cite[reference2].\end{subappendices}\printbibliography\chapter{Chapter 2}rest of the document....
In another attempt, I tried to print the bibliography before the appendix, but that messes up the citation in the appendix (it cites as [1], which is not correct with the printed bibliography).
Can someone help me?