BibTeX, biblatex and biberBibliography and subappendices

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
Homophyly
Posts: 1
Joined: Sat Oct 19, 2024 9:48 am

Bibliography and subappendices

Post by Homophyly »

Hi everyone,
I'm having trouble using chapter-based bibliography and subappendices from the appendix package.
I have the following setup:

Code: Select all

\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....
However, the bibliography only prints the citation in the appendix, and not the one in section 1.1...
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?
...

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
Post Reply