ChristianK
19-07-2012, 17:12
Hallo liebe LaTeX-Gemeinde,
ich benutze das Paket Bibatex mit dem Stil authortitle-icomp in Verbindung mit dem Paket Endnotes.
Momentaner Zustand ist, dass Referenzen (\cite) im Fließtext korrekt als Zahl angegeben werden (im Standard hochgestellt, bei mir z.B: [1]).
Referenzen in Fußnoten werden jedoch als "(Autor, Titel)" statt ebenso als [1] ausgegeben, was mich stört - denn in Fußnoten ist sowieso schon wenig Platz.
Gewollter Zustand ist, dass Endnotenverweise überall als [1] ausgegeben werden.
Minimalbeispiel:
\documentclass{scrartcl}
\usepackage{endnotes}
\renewcommand\makeenmark{~\textsf{[\theenmark]}}
\usepackage[backend=biber
,bibencoding=utf8
,style = authortitle-icomp
% Endnotes: authortitle, authortitle-icomp, alphabetic [\bibitemsep auskommentieren]
% End+Foot: verbose-trad3, verbose-ibid
,notetype = endonly %Endnotes oder Footnotes: foot+end, footonly, endonly (besser footonly falls genug Platz)
]{biblatex}
\bibliography{MeineBib}
\begin{document}
Text\smartcite{Bsp1}.\footnote{Test2\smartcite{Bsp 2}}
\section{Endnoten}
\theendnotes
\end{document}
MeineBib.bib
@ARTICLE{Bsp1,
author = {Mustermann},
title = {Titel},
}
@ARTICLE{Bsp2,
author = {Musterfrau},
title = {Titel},
}
Ausgabe: s. Anhang
Hat jemand eine Idee, wie das zu bewerkstelligen wäre?
Vielen Dank!
ich benutze das Paket Bibatex mit dem Stil authortitle-icomp in Verbindung mit dem Paket Endnotes.
Momentaner Zustand ist, dass Referenzen (\cite) im Fließtext korrekt als Zahl angegeben werden (im Standard hochgestellt, bei mir z.B: [1]).
Referenzen in Fußnoten werden jedoch als "(Autor, Titel)" statt ebenso als [1] ausgegeben, was mich stört - denn in Fußnoten ist sowieso schon wenig Platz.
Gewollter Zustand ist, dass Endnotenverweise überall als [1] ausgegeben werden.
Minimalbeispiel:
\documentclass{scrartcl}
\usepackage{endnotes}
\renewcommand\makeenmark{~\textsf{[\theenmark]}}
\usepackage[backend=biber
,bibencoding=utf8
,style = authortitle-icomp
% Endnotes: authortitle, authortitle-icomp, alphabetic [\bibitemsep auskommentieren]
% End+Foot: verbose-trad3, verbose-ibid
,notetype = endonly %Endnotes oder Footnotes: foot+end, footonly, endonly (besser footonly falls genug Platz)
]{biblatex}
\bibliography{MeineBib}
\begin{document}
Text\smartcite{Bsp1}.\footnote{Test2\smartcite{Bsp 2}}
\section{Endnoten}
\theendnotes
\end{document}
MeineBib.bib
@ARTICLE{Bsp1,
author = {Mustermann},
title = {Titel},
}
@ARTICLE{Bsp2,
author = {Musterfrau},
title = {Titel},
}
Ausgabe: s. Anhang
Hat jemand eine Idee, wie das zu bewerkstelligen wäre?
Vielen Dank!