I have a Latex file with citation keys which are translated into formatted literature references in the pdf (I use biblatex). Let us assume I want to have the formatted footnotes, as I see them in the pdf text, in the latex file, for whatever reason.
I can only think of the manual solution, I could manually copy each reference in the pdf file, replace the citation key in the latex file with the copied reference, and edit the reference appropriately (for instance include \textit{} for the title of the book etc.)
Is there any smart and faster way to do this?
Edit: I use a bib-file which include the relevant information for the literature references
Edit 2: To clarify: Let's say I use this minimal example and bib file from here (The most basic biblatex example)
\documentclass[a4paper,11pt]{article}
\usepackage[style=numeric,backend=biber]{biblatex}
\addbibresource{\jobname.bib}
\begin{document}
As first example citation here is \cite{Chomsky1957}.
Here is another example citation \cite{Labov1972}
\printbibliography
\end{document}
Here is the Bib File
\begin{filecontents}{\jobname.bib}
@book{Labov1972,
Address = {Philadelphia},
Author = {William Labov},
Publisher = {University of Pennsylvania Press},
Title = {Sociolinguistic Patterns},
Year = {1972}}
@book{Chomsky1957,
Address = {The Hague},
Author = {Noam Chomsky},
Publisher = {Mouton},
Title = {Syntactic Structures},
Year = {1957}}
\end{filecontents}
When I compile the PDF I will receive a formatted citation
Is there any smart way to replace in the Latex file the citation key "\cite{Chomsky1957}" with the formatted reference that can be found in the PDF (Chomsky, Noam, 1957, Syntactic Structures. Mouton, The Hague.)
The aim would be to have a latex file which already contains the formatted references

biblatextypesets the citations (and bibliography entries) in such a way that the equivalent "plain-text LaTeX code" is not easily accessed (it might be possible to export and re-import LaTeX into different formats). There isbiblatex2bibitemas a workaround that works OK in many simple cases (https://tex.stackexchange.com/q/624703/35864), but it is by no means universal. – moewe Sep 02 '22 at 10:16