Let's say that I have two documents. Is it possible to print the references from citation of the first file into the second one? (something like this) 1) Presentation:
\documentclass{beamer}
\usepackage[backen=biber]{biblatex}
\begin{document}
lipsum \textcite{something}
\end{document}
2) Article
\documentclass{article}
\usepackage[backen=biber]{biblatex}
\begin{document}
\printbibliography
\end{document}
What I want to achieve is to generate a document with the reference of {something}
biblatex, but there are workarounds for specific situations if you are willing to put in some manual work: https://tex.stackexchange.com/q/426964/35864, https://tex.stackexchange.com/q/273596/35864 – moewe Oct 15 '18 at 12:09