I have troubles with a publisher. I have a book script with a lot of references but for some reason they want no reference to a bibliography file but want the text that BibLaTeX generates IN the TeX-code. So they want a document without \cite{} but full information about the reference text that I want.
Here is a MWE for the situation right now:
\documentclass[english]{scrbook}
\usepackage{babel}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{microtype}
\usepackage{lmodern}
\usepackage{filecontents}
\usepackage[style=authortitle,backend=biber]{biblatex}
\bibliography{\jobname}
\begin{filecontents}{\jobname.bib}
@book{Test,
author = {Bernd Test},
year = {1986},
title= {Some Publication},
}
\end{filecontents}
\begin{document}
This works, yeah!\footnote{\cite{Test}.}
\printbibliography
\end{document}
Here is what the (probably) want:
\documentclass[english]{scrbook}
\usepackage{babel}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{microtype}
\usepackage{lmodern}
\begin{document}
This works, yeah!\footnote{Test: \emph{Some publication}.}
\section{References}
Test, Bernd. \emph{Some publication}. 1986.
\end{document}
My question now is: Is there a way to get from one code to the other code automatically? The important thing is to have the footnote and reference text in the document in such a way that the pdf looks the same.
Thanks in advance, Alex
biblatexworks. Unlike for BibTeX, there is no point at which you can 'intercept' the formatted bibliography. It is possible but very unlikely that a work-around mentioned in https://tex.stackexchange.com/q/12175/35864 works for you. Otherwise you will have to use BibTeX or produce the bibliography by hand. – moewe Jun 15 '18 at 11:26thebibliography(I guess many publishers know how to deal with that and will be OK with it, but you never know). – moewe Jun 15 '18 at 11:32