Biblatex-Chicago, erstes vollständiges Zitat, dann Kurzschrift (Autordatum)

Biblatex-Chicago, erstes vollständiges Zitat, dann Kurzschrift (Autordatum)

Ich muss authordatein meinem Projekt verwenden, es sei denn, es handelt sich um juristische Einträge wie Anhörungen im Kongress. In diesem Fall muss ich beim ersten Mal vollständig darauf verweisen und danach die Kurzform verwenden. Leider funktioniert das bei mir nicht, wenn ich verwende \autocite, erhalte ich nur die Kurzform. Mir ist klar, dass ich beim ersten Mal verwenden kann \fullcite, aber dies würde viel Aufmerksamkeit erfordern und ist daher fehleranfällig. Ich denke, es hat wahrscheinlich etwas mit der Einstellung „authordate“ zu tun, denn wenn ich stattdessen Notizen verwende, funktioniert es wie erwartet. Dies sind im Allgemeinen die Paketoptionen:

Dies sind die Optionen, die ich für verwende biblatex-chicago.

\usepackage[authordate,backend=biber,hyperref=true, cmsdate=both,sortcites, uniquename=init]{biblatex-chicago}

Ich hoffe, dass ich irgendwie eine Option für die Präambel übersehe. Ich wäre für jede Hilfe dankbar! Danke!


BEARBEITEN

Dies sind beispielsweise zwei Startnummerneinträge:

@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 = {}}

und so zitiere ich sie

\begin{document}

Lalalala\footcite{Congress.20180417}, which and then later \textcite{Diamond2000} confirms, and then back to blablabla{Congress.20180417}.

\printbibliography

Antwort1

Hier wird versucht, biblatex-chicago's zu zwingen authordate, vollständige Erstzitate für juristische Zitate ( @legislation, @legal, @jurisdiction) anzugeben.

Der Kern der Antwort besteht darin, einen Test einzuführen, ob dies die erste Zitierung einer juristischen Arbeit im ursprünglichen citeBibmacro (zu finden unter chicago-dates-common.cbx) ist.

\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}

1. Stärkung der Beziehungen zwischen den USA und Taiwan: Anhörung 115-147 vor dem Unterausschuss für Asien und den Pazifik des Ausschusses für auswärtige Angelegenheiten des Repräsentantenhauses, 115. Kongress (2.) (17. April 2018) [im Folgenden „Anhörung 115-147“].//2. Anhörung 115-147 2018.

verwandte Informationen