.png)
Tenho que usar authordate
no meu projeto, a não ser que sejam entradas legais como audiências no Congresso. Nesse caso, devo referenciá-lo por completo na primeira vez e usar a abreviação depois. Infelizmente isso não funciona para mim, se eu usar \autocite
, só recebo a abreviatura. Sei que posso usar \fullcite
na primeira vez, mas isso exigiria muita atenção e, portanto, está sujeito a erros. Acho que provavelmente tem algo a ver com a configuração da data de autoria, pois se eu usar notas, ela funcionará conforme o esperado. Estas são em geral as opções de pacote:
Estas são as opções que uso para biblatex-chicago
.
\usepackage[authordate,backend=biber,hyperref=true, cmsdate=both,sortcites, uniquename=init]{biblatex-chicago}
Eu esperava estar de alguma forma negligenciando uma opção para o preâmbulo. Eu apreciaria qualquer ajuda! Obrigado!
EDITAR
Estas são, por exemplo, duas entradas de babador:
@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 = {}}
e é assim que eu os cito
\begin{document}
Lalalala\footcite{Congress.20180417}, which and then later \textcite{Diamond2000} confirms, and then back to blablabla{Congress.20180417}.
\printbibliography
Responder1
Aqui está uma tentativa de forçar biblatex-chicago
a authordate
produção de primeiras citações completas para citações legais ( @legislation
, @legal
, @jurisdiction
).
O cerne da resposta é introduzir um teste se esta for a primeira citação de uma obra jurídica ao cite
bibmacro original (que pode ser encontrado em 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}