- Questo topic ha 9 risposte, 5 partecipanti ed è stato aggiornato l'ultima volta 8 anni, 5 mesi fa da .
-
Topic
-
Uso biblatex con stile philosophy-verbose (ver. v1.9.8 – 2017/11/29)Nelle citazioni di contributi in opera collettanea riscontro un problema con la citazione dei curatori.
Si tratta di un comportamento limitato alle entries @incollection.Ora l’output è:
Citazione 1: Rahner, K., «Some Critical Thoughts on ‘Functional Specialties in Theology», in Foundations of Theology, a cura di P. McShane, University of Notre Dame Press, Notre Dame, Indiana 1971, pp. 194-196.
Citazione 2: Bultmann, R., «Das Problem der Hermeneutik», Zeitschrift für Theologie und Kirche, 47, 1 (1950), pp. 47-69; trad. it. «Il problema dell’ermeneutica», in Credere e comprendere, a cura di R. Bultmann, trad. da A. Rizzi, Queriniana, Brescia 1977, pp. 565-588.
Citazione 3: Léonard, A., «Expérience Spirituelle», in Dictionnaire de Spiritualité Ascétique et Mystique. Doctrine et Historire, a cura di F. Viller, F. Cavallera, J. De Guibert, A. Rayez e C. Baumgartner, 4, Paris 1961, pp. 2004-2026.
Mentre vorrei:
Citazione 1: Rahner, K., «Some Critical Thoughts on ‘Functional Specialties in Theology», in P. McShane (a cura di), Foundations of Theology, University of Notre Dame Press, Notre Dame, Indiana 1971, pp. 194-196.
Citazione 2: Bultmann, R., «Das Problem der Hermeneutik», Zeitschrift für Theologie und Kirche, 47, 1 (1950), pp. 47-69; trad. it. «Il problema dell’ermeneutica», in R. Bultmann (a cura di), Credere e comprendere, trad. da A. Rizzi, Queriniana, Brescia 1977, pp. 565-588.
Citazione 3: Léonard, A., «Expérience Spirituelle», in F. Viller, F. Cavallera, J. De Guibert, A. Rayez e C. Baumgartner (a cura di), Dictionnaire de Spiritualité Ascétique et Mystique. Doctrine et Historire, 4, Paris 1961, pp. 2004-2026.
Aggiungo una quarta citazione con un crossref, che dà un analogo risultato.
Vorrei invertire l’ordine di titolo-autore, mettendo “a cura di” tra parentesi.
Ecco di seguito un MWE
`
\documentclass{article}
\usepackage{polyglossia}
\setmainlanguage[spelling=new,babelshorthands=true]{italian}
\usepackage[autostyle]{csquotes}\usepackage[
backend=biber,
style=philosophy-verbose,
isbn=false,
giveninits=true,
idemtracker=context,
ibidtracker=context,
loccittracker=context,
opcittracker=context,
citetracker=context,
latinemph=true,
commacit=false,
scauthors=all,
lowscauthors=false,
annotation=true,
classical=true,
singletitle=false,
editionformat=superscript,
lowscauthors=false]{biblatex}\usepackage{filecontents}
\begin{filecontents}{file.bib}
@incollection{Rahner1971,
address = {Notre Dame, Indiana},
author = {Rahner, Karl},
title = {Some Critical Thoughts on ‘Functional Specialties in Theology},
booktitle = {Foundations of Theology},
publisher = {University of Notre Dame Press},
editor = {McShane, Philip},
pages = {194–196},
year = {1971}
}@article{Bultmann1950,
author = {Bultmann, Rudolf},
journal = {Zeitschrift f{\”{u}}r Theologie und Kirche},
keywords = {other,saggio},
number = {1},
pages = {47–69},
title = {{Das Problem der Hermeneutik}},
volume = {47},
year = {1950},
related = {Bultmann1977}
}
@incollection{Bultmann1977,
address = {Brescia},
author = {Bultmann, Rudolf},
booktitle = {Credere e comprendere},
editor = {Bultmann, Rudolf},
keywords = {other,saggio},
pages = {565–588},
publisher = {Queriniana},
title = {{Il problema dell'ermeneutica}},
translator = {Rizzi, A.},
year = {1977}
}@incollection{Leonard1961,
address = {Paris},
author = {L{\'{e}}onard, Augustin},
booktitle = {Dictionnaire de Spiritualit{\'{e}} Asc{\'{e}}tique et Mystique. Doctrine et Historire},
editor = {Viller, F. and Cavallera, F. and {De Guibert}, J. and Rayez, Andr{\'{e}} and Baumgartner, C.},
keywords = {dizionari,other},
pages = {2004–2026},
title = {{Exp{\'{e}}rience Spirituelle}},
number = {4},
year = {1961}
}@collection{Lonergan2016a,
title = {{A Second Collection}},
address = {Toronto},
editor = {Dadosky, John D. and Doran, Robert M.},
isbn = {1487520476},
keywords = {primary, collection},
publisher = {University of Toronto Press},
series = {\textit{CWL}},
number = {13},
year = {2016}
}
@incollection{insight_rev,
author = {Lonergan, Bernard Joseph Francis},
keywords = {primary, paper},
pages = {221–233},
title = {{\textit{Insight} Revisited}},
crossref = {Lonergan2016a}
}
\end{filecontents}\addbibresource{file.bib}
\begin{document}
Text \footcite{Rahner1971} Text2 \footcite{Bultmann1950} Text3 \footcite{Leonard1961}
Text4 \footcite{insight_rev}
\printbibliography
\end{document}
`
- Devi essere connesso per rispondere a questo topic.