I organize my source with biblatex (version 3.8, BibTeX backend) and got everything setup. This is my preamble:
\documentclass[12pt]{report}
\usepackage[utf8]{inputenc}
\usepackage{mathptmx}
\usepackage[T1]{fontenc}
\usepackage[ngerman]{babel}
\usepackage{geometry}
\usepackage[expansion, final]{microtype}
\usepackage[style=verbose-ibid, backend=bibtex, dashed=false]{biblatex}
\usepackage{csquotes}
\usepackage{setspace}
% Style Setup
\geometry{a4paper, top=25mm, left=25mm, right=40mm, bottom=25mm}
\setstretch{1.5}
\interfootnotelinepenalty=10000
\widowpenalty=10000
\clubpenalty=10000
% Chapter Style
\usepackage{titlesec}
\titlespacing{\chapter}{0pt}{0pt}{20pt}
\titleformat{\chapter}[hang]
{\normalfont\huge\bfseries}{\thechapter.}{1em}{}
% Bibliography Style
\bibliography{library}
\renewcommand\mkbibnamefamily[1]{\textsc{#1}}
\DeclareNameAlias{sortname}{family-given}
\DeclareNameAlias{default}{family-given}
\DefineBibliographyStrings{ngerman}{
bibliography={Literaturverzeichnis}
}
\usepackage{filecontents}
\begin{filecontents*}{\jobname.bib}
@book{Knu86,
author = {Knuth, Donald E.},
year = {1986},
title = {The \TeX book},
}
\end{filecontents*}
\bibliography{\jobname}
\begin{document}
\chapter{Introduction}
\noindent Some text\footcite[p. 38]{Knu86} ....
\newpage
\chapter{Second}
\noindent Some other text \footcite[p. 39]{Knu86}
\end{document}
I am using \footcite[p. x]{author2018} to create source references. Say I am on page 7 and the last citation on this page is Book B from Author A. On page 8, biblatex writes "ibid" in the footnote instead of writing the source again. But when compile the same .tex document on another computer, which uses biblatex 3.3 everything works just fine. I am guessing it's because of the biblatex version but who knows.
So I would like to fix this behavior, so that "ibid" won't be used on the following page.
biblatex3.8 is also slightly outdated now, the current version is 3.11. I just completed your code into a fully working example and got the expected output (i.e. no "ibid." as first citation on a new page), but there might be something going on at your end that I don't know about. So a fully working example that reproduces your issue is required to investigate the problem further. – moewe Oct 01 '18 at 09:18tlmgr, see https://tex.stackexchange.com/q/55437/35864. (Depending on how you installed TeX live, you may not have all available updates installed on your system. If you want to make sure all packages are fully updated, you need to runtlmgrto update after you installed MacTeX/TeX live.) But I'm not sure if the difference between 3.8 and 3.11 is the explanation here. Anyway, we'll be able to say more once the MWE is ready. – moewe Oct 01 '18 at 09:31\DefineBibliographyStrings{ngerman}{...}, then everything worked just fine. After adding it in again it still works. But if I clean up my folder, leaving just the.texfile, and compile it completely new, then the same error appears again. I've updated my question, it now includes the MWEB – Codey Oct 01 '18 at 09:39.logto some plain-text sharing website (pastebin, hastebin, GitHub Gists, GitLab snippets, ...). I can not reproduce the issue with the currentbiblatexversion 3.11 and also failed to reproduce the issue withbiblatex3.8. – moewe Oct 01 '18 at 10:40.texdocument in a clean folder, then startbiblatexand then compile again, the error is still present. But if I compile it again the error is gone. I am pretty sure that I've done that before and it didn't help, but now it does. I still uploaded the log (before I recompiled and the error disappeared) here: https://pastebin.com/Dp5wHYZy. You can find the PDF here: https://file.io/KyoGnR. Note that "Ebd." is the german equivalent of "Ibid." – Codey Oct 01 '18 at 11:54.logcontains isPackage biblatex Warning: Please rerun LaTeX. Page breaks have changed.which asks you to run LaTeX again to get page breaks and labels right. – moewe Oct 01 '18 at 11:57