Biblatex-chicago 처음으로 전체 인용 후 속기(저자)

Biblatex-chicago 처음으로 전체 인용 후 속기(저자)

authordate의회 청문회와 같은 법적 항목이 아닌 이상 내 프로젝트에 사용해야 합니다 . 그런 경우에는 처음에는 전체 내용을 참조하고 나중에는 약칭을 사용해야 합니다. 불행히도 이것은 나에게는 작동하지 않습니다. 를 사용하면 \autocite속기 만 얻을 수 있습니다. \fullcite처음으로 사용할 수 있다는 것을 알고 있지만 이렇게 하려면 많은 주의가 필요하므로 실수가 발생하기 쉽습니다. 아마도 작성자 날짜 설정과 관련이 있는 것 같습니다. 대신 메모를 사용하면 예상대로 작동하기 때문입니다. 일반적으로 패키지 옵션은 다음과 같습니다.

에 사용하는 옵션은 다음과 같습니다 biblatex-chicago.

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

나는 서문에 대한 옵션을 간과하고 있기를 바랐습니다. 도움을 주시면 감사하겠습니다! 감사해요!


편집하다

예를 들어 다음은 두 개의 턱받이 항목입니다.

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

이것이 내가 인용하는 방법입니다

\begin{document}

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

\printbibliography

답변1

다음은 에서 법적 인용( , , ) 에 대한 전체 첫 번째 인용을 생성하도록 강제 biblatex-chicago하려는 시도입니다 .authordate@legislation@legal@jurisdiction

대답의 핵심은 원본 citebibmacro(에서 찾을 수 있음 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}

1. 미국-대만 관계 강화: 제115차 하원 외교위원회 아시아태평양 소위원회 하원 청문회 115-147(2차)(2018.4.17) [이하 하원 청문회 115- 147].//2. 하원 공청회 115-147 2018.

관련 정보