I have managed to get biblatex and biber to include a QR code for bibliography items that contain a URL -- like so:
\documentclass{scrartcl}
\begin{filecontents}[overwrite]{\jobname.bib}
@book { texlive-home,
shorthand = {TLD1},
author = {The TeX User Group},
title = {TeX Live},
note = {some text to make the entry appear more voluminous},
url = {https://www.tug.org/texlive/}
}
\end{filecontents}
\begin{filecontents}[overwrite]{biblatex.cfg}
\DeclareFieldFormat
[book]
{url}{\par{\scriptsize\ttfamily\url{#1}}\par\vspace{1.5mm}\qrcode{#1}\vspace{3mm}}
\end{filecontents}
\usepackage{qrcode}
\usepackage[style=alphabetic]{biblatex}
\appto{\biburlsetup}{\renewcommand*{\UrlFont}{\scriptsize\ttfamily}}
\addbibresource{\jobname.bib}
\begin{document}
\nocite{*}
\printbibliography
\end{document}
This works, but it wastes a lot of space:
I would like for the QR code to be positioned to the right of the entry like so:
Within a document I would probably use a simple tabular environment for this, but all I've managed to create are impressive error messages. Could anybody point me in the right direction?




hvqrurlis what you are looking for? – schtandard Jul 26 '22 at 09:30It's easy to get images and other material into entries, and positioned
– Aubrey Blumsohn Jul 26 '22 at 09:51