Ich versuche, am Anfang meiner Arbeit einen QR-Code einzufügen, dessen Inhalt der entsprechende BibTeX-Eintrag ist.
Gibt es eine Möglichkeit, den Rohtext einzubetten \psbarcode
?
\documentclass[a4paper,12pt]{minimal}
\usepackage[utf8]{inputenc}
\usepackage{pst-barcode}
\usepackage{auto-pst-pdf}
\begin{document}
\begin{pspicture}(1.378in, 1.5in)
\psbarcode{
\begin{verbatim} % won't work
@MastersThesis{,
author = {J\'ulio ...},
title = {...},
year = {...},
...
}
\end{verbatim}
}{}{qrcode}
\end{pspicture}
\end{document}
Es scheint,AbonnierenBVerbatim
Das Paket stellt hierfür eine Umgebung bereit.
Antwort1
Ich glaube nicht, dass Sie ohnehin wörtliche Kopien wünschen, da Sie sich auch um PostScript-Zitate wie \\
z . B. kümmern müssen \
.
was laut einem Online-Decoder
Raw text @MastersThesis{, author = {J\'ulio ...}, title = {...}, year = {...}, ... }
Raw bytes 44 d2 04 04 d6 17 37 46 57 27 35 46 86 57 36 97 37 b2 c2 06 17 57 46 86 f7 22 03 d2 07 b4 a5 c2 77 56 c6 96 f2 02 e2 e2 e7 d2 c2 07 46 97 46 c6 52 03 d2 07 b2 e2 e2 e7 d2 c2 07 96 56 17 22 03 d2 07 b2 e2 e2 e7 d2 c2 02 e2 e2 e2 07 d2 00 ec 11 ec 11 ec 11 ec 11 ec 11 ec 11 ec
Barcode format QR_CODE
Parsed Result Type TEXT
Parsed Result @MastersThesis{, author = {J\'ulio ...}, title = {...}, year = {...}, ... }
tex:
\documentclass[a4paper,12pt]{minimal}
\usepackage[utf8]{inputenc}
\usepackage{pst-barcode}
\usepackage{auto-pst-pdf}
\begin{document}
\begin{pspicture}(1.378in, 1.5in)
\psbarcode{
@MastersThesis{,
author = {J\string\\'ulio ...},
title = {...},
year = {...},
...
}
}{}{qrcode}
\end{pspicture}
\end{document}
Für Zeilenumbrüche funktioniert dies:
\begin{pspicture}(1.378in, 1.5in)
\psbarcode{\string\n
@MastersThesis{,\string\n
author = {J\string\\'ulio ...},\string\n
title = {...},\string\n
year = {...},\string\n
...\string\n
}
}{}{qrcode}
\end{pspicture}
Antwort2
verwenden Sie die optionalen Argumente parse
und Dezimalwerte für die Zeichen:
\documentclass{minimal}
\usepackage[utf8]{inputenc}
\usepackage{pst-barcode}
\begin{document}
\begin{pspicture}(1.378in, 1.5in)
\psbarcode{%
@MastersThesis^123,author=^123J^250lio ...^125,title=^123...^125,year=^123...^125,...^125}{parse}{qrcode}
\end{pspicture}
\end{document}
^123
Dezimal-ASCII für {
,
^125
für }
und ^250
fürú