.png)
Tengo que usarlo authordate
en mi proyecto, a menos que se trate de entradas legales, como audiencias en el Congreso. En ese caso, se supone que debo hacer referencia a él en su totalidad la primera vez y utilizar la taquigrafía después. Lamentablemente esto no me funciona, si uso \autocite
, solo obtengo la taquigrafía. Me doy cuenta de que puedo usarlo \fullcite
la primera vez, pero esto requeriría mucha atención y, por lo tanto, es propenso a errores. Creo que probablemente tenga algo que ver con la configuración de la fecha de autor, ya que si uso notas en su lugar, funciona como se esperaba. Estas son en general las opciones del paquete:
Estas son las opciones que uso para biblatex-chicago
.
\usepackage[authordate,backend=biber,hyperref=true, cmsdate=both,sortcites, uniquename=init]{biblatex-chicago}
¿Esperaba estar pasando por alto de alguna manera una opción para el preámbulo? ¡Agradecería cualquier ayuda! ¡Gracias!
EDITAR
Estos son, por ejemplo, dos dorsales:
@legislation{Congress.20180417,
title = {Reinforcing the US--Taiwan relationship},
series = {115th Congress (2nd)},
subtitle = {House Hearing 115-147 before the Subcommittee on Asia and the Pacific of the Committee on Foreign Affairs House of Representatives},
abstract = {},
pagetotal = {75},
shorthand = {House Hearing 115-147},
entrysubtype = {hearing},
date = {2018-04-17}
}
@article{Diamond2000,
author = {Diamond, Larry and Myers, Ramon H.},
year = {2000},
title = {Introduction: Elections and democracy in greater China},
url = {https://www.state.gov/communist-china-and-the-free-worlds-future/},
pages = {365},
pagination = {page},
issn = {0305-7410},
journaltitle = {The China Quarterly},
abstract = {}}
y así es como los cito
\begin{document}
Lalalala\footcite{Congress.20180417}, which and then later \textcite{Diamond2000} confirms, and then back to blablabla{Congress.20180417}.
\printbibliography
Respuesta1
Aquí hay un intento de obligar biblatex-chicago
a authordate
producir primeras citas completas para citas legales ( ,, @legislation
) .@legal
@jurisdiction
El núcleo de la respuesta es introducir una prueba si esta es la primera cita de un trabajo legal en el cite
bibmacro original (que se puede encontrar en chicago-dates-common.cbx
).
\documentclass[american]{article}
\usepackage{babel}
\usepackage{csquotes}
\usepackage[authordate, backend=biber, cmsdate=both, sortcites, uniquename=init]{biblatex-chicago}
\makeatletter
\newcommand*{\iflegaltype}{%
\ifentrytype{legislation}
{\@firstoftwo}
{\ifentrytype{legal}
{\@firstoftwo}
{\ifentrytype{jurisdiction}}}}
\newcommand*{\iflegallongcite}{%
\ifciteseen
{\@secondoftwo}
{\iflegaltype}}
\renewbibmacro*{cite}{%
\ifthenelse{\ifciteibid\AND\NOT\iffirstonpage}%
{\usebibmacro{cite:ibid}}%
{\iflegallongcite
{\usebibmacro{cite:full}}
{\ifboolexpr{%
togl {cms@authortitle}%
or
test {\iffieldequalstr{entrysubtype}{classical}}%
}% Similar to notes+bib
{\iffieldundef{shorthand}%
{\ifthenelse{\ifnameundef{labelname}\OR
\ifentrytype{inreference}\OR
\ifentrytype{reference}\OR
\ifentrytype{mvreference}}% Simplified for CMS
{\usebibmacro{cite:label}%
\setunit{\cms@testspace}% Is this right?
\usebibmacro{cite:reinit}}%
{\iffieldequals{fullhash}{\cbx@lasthash}%
{\iffieldundef{postnote}%
{\setunit{\multicitedelim}}%
{}%
\usebibmacro{cite:label}}%
{\iffieldequals{fullhash}{\cbx@lastyear}%
{}%
{\usebibmacro{cmsbracketname}% For names in []
\ifthenelse{\ifentrytype{misc}\AND%
\iffieldequalstr{entrysubtype}{classical}}%
{\cms@testspace}{\newcunit}}% Wrong?
\ifthenelse{\ifentrytype{manual}\OR\ifentrytype{standard}}%
{\printtext[cmshyper]{\printfield[citetitle]{labeltitle}}}%
{\usebibmacro{cite:label}}%
\iffieldundef{postnote}%
{\savefield{fullhash}{\cbx@lasthash}}%
{\savefield{fullhash}{\cbx@lastyear}}}}}%
{\usebibmacro{cite:shorthand+title}}}%
{\iffieldundef{shorthand}%
{\ifthenelse{\ifnameundef{labelname}\OR
\ifentrytype{inreference}\OR
\ifentrytype{reference}\OR
\ifentrytype{mvreference}}% Simplified for CMS
{\usebibmacro{cite:label}%
\setunit{\nameyeardelim}%cms@testspace%
\usebibmacro{cmscitesortdate}%
\usebibmacro{cite:reinit}}%
{\iffieldequals{fullhash}{\cbx@lasthash}%
{\iffieldundef{postnote}%
{\setunit{\compcitedelim}}%
{}%
\usebibmacro{cmscitesortdate}}%
{\iffieldequals{fullhash}{\cbx@lastyear}% Is this right?
{}%
{\usebibmacro{cmsbracketname}%
\setunit{\nameyeardelim}}%
\usebibmacro{cmscitesortdate}%
\iffieldundef{postnote}%
{\savefield{fullhash}{\cbx@lasthash}}%
{\savefield{fullhash}{\cbx@lastyear}}}}}%
{\usebibmacro{cite:shorthand}}}}}%
\setunit{\multicitedelim}}% ???
\makeatother
\begin{filecontents}{\jobname.bib}
@legislation{Congress.20180417,
title = {Reinforcing the US--Taiwan relationship},
series = {115th Congress (2nd)},
subtitle = {House Hearing 115-147
before the Subcommittee on Asia and the Pacific
of the Committee on Foreign Affairs
House of Representatives},
pagetotal = {75},
shorthand = {House Hearing 115-147},
entrysubtype = {hearing},
date = {2018-04-17},
}
@article{Diamond2000,
author = {Diamond, Larry and Myers, Ramon H.},
year = {2000},
title = {Introduction: Elections and democracy in greater China},
url = {https://www.state.gov/communist-china-and-the-free-worlds-future/},
pages = {365},
pagination = {page},
issn = {0305-7410},
journaltitle = {The China Quarterly},
}
\end{filecontents}
\addbibresource{\jobname.bib}
\begin{document}
Lalalala\footcite{Congress.20180417},
which and then later \textcite{Diamond2000} confirms,
and then back to blablabla\footcite{Congress.20180417}.
\printbibliography
\end{document}