オンライン参考文献の最初の引用に URL 日付を追加する方法

オンライン参考文献の最初の引用に URL 日付を追加する方法

オンライン リファレンスを最初に参照したときに、その参照先を訪問した日付を追加したいと思います。スタイルbiblatexを使用しますauthoryear-comp。MWE は次のとおりです。

\documentclass{scrreprt}
\usepackage[style=authoryear-comp]{biblatex}
\addbibresource{\jobname.bib}
\usepackage{filecontents}

\begin{filecontents}{\jobname.bib}
@online{key,
    title = {Very nice online reference},
    url = {https://www.example.com/},
    urldate = {2019-11-25},
    author = {Nobody},
}
\end{filecontents}

% Start of the document.
\begin{document}

% Your content.
I want to cite here with the urldate in the citation.
\parencite{key} should look like:
(Author 2001, visited on 25.11.2019) but just when I first reference it.
In every later cication it shall just look (Author 2001).

% End of the document.
\end{document}

誰かその問題を解決してくれませんか?

ユーザーによるコメントhttps://tex.stackexchange.com/users/14649: これは次の質問に対するフォローアップですテキストでURLdateにアクセスする方法

答え1

次のようなものを試すことができます。テストにはオプションcitetrackerが必要です\ifciteseen。の定義は、次の2行のcite元の定義です。authoryear-comp.cbx

  \setunit{\addcomma\space}%
  \usebibmacro{cite:urlinfo}%

最後に追加しました。

についても同じことができますtextciteが、 には\textciteいくつかの特殊なケース(圧縮された引用、名前や年のない引用、省略形)があり、この構成では少し予期しない出力が生成される可能性があることに注意してください。これより良い一般的な解決策は思いつきませんでしたので、出力を注意深く精査することをお勧めします。

\documentclass{scrreprt}
\usepackage[style=authoryear-comp, citetracker]{biblatex}

\newbibmacro*{cite:urlinfo}{%
  \ifciteseen
    {}
    {\DeclareFieldFormat{urldate}{\bibstring{urlseen}\space##1}%
     \printurldate}}

\makeatletter
\renewbibmacro*{cite}{%
  \iffieldundef{shorthand}
    {\ifthenelse{\ifnameundef{labelname}\OR\iffieldundef{labelyear}}
       {\usebibmacro{cite:label}%
        \setunit{\printdelim{nonameyeardelim}}%
        \usebibmacro{cite:labeldate+extradate}%
        \usebibmacro{cite:reinit}}
       {\iffieldequals{namehash}{\cbx@lasthash}
          {\ifthenelse{\iffieldequals{labelyear}{\cbx@lastyear}\AND
                       \(\value{multicitecount}=0\OR\iffieldundef{postnote}\)}
             {\setunit{\addcomma}%
              \usebibmacro{cite:extradate}}
             {\setunit{\compcitedelim}%
              \usebibmacro{cite:labeldate+extradate}%
              \savefield{labelyear}{\cbx@lastyear}}}
          {\printnames{labelname}%
           \setunit{\printdelim{nameyeardelim}}%
           \usebibmacro{cite:labeldate+extradate}%
           \savefield{namehash}{\cbx@lasthash}%
           \savefield{labelyear}{\cbx@lastyear}}}}
    {\usebibmacro{cite:shorthand}%
     \usebibmacro{cite:reinit}}%
  \setunit{\addcomma\space}%
  \usebibmacro{cite:urlinfo}%
  \setunit{\multicitedelim}}

\renewbibmacro*{textcite}{%
  \iffieldequals{namehash}{\cbx@lasthash}
    {\iffieldundef{shorthand}
       {\ifthenelse{\iffieldequals{labelyear}{\cbx@lastyear}\AND
                    \(\value{multicitecount}=0\OR\iffieldundef{postnote}\)}
          {\setunit{\addcomma}%
           \usebibmacro{cite:extradate}}
          {\setunit{\compcitedelim}%
           \usebibmacro{cite:labeldate+extradate}%
           \savefield{labelyear}{\cbx@lastyear}}}
       {\setunit{\compcitedelim}%
        \usebibmacro{cite:shorthand}%
        \global\undef\cbx@lastyear}}
    {\ifnameundef{labelname}
       {\iffieldundef{shorthand}
          {\usebibmacro{cite:label}%
           \setunit{%
             \global\booltrue{cbx:parens}%
             \printdelim{nonameyeardelim}\bibopenparen}%
           \ifnumequal{\value{citecount}}{1}
             {\usebibmacro{prenote}}
             {}%
           \usebibmacro{cite:labeldate+extradate}}
          {\usebibmacro{cite:shorthand}}}
       {\printnames{labelname}%
        \setunit{%
          \global\booltrue{cbx:parens}%
          \printdelim{nameyeardelim}\bibopenparen}%
        \ifnumequal{\value{citecount}}{1}
          {\usebibmacro{prenote}}
          {}%
        \iffieldundef{shorthand}
          {\iffieldundef{labelyear}
             {\usebibmacro{cite:label}}
             {\usebibmacro{cite:labeldate+extradate}}%
           \savefield{labelyear}{\cbx@lastyear}}
          {\usebibmacro{cite:shorthand}%
           \global\undef\cbx@lastyear}}%
     \stepcounter{textcitecount}%
     \savefield{namehash}{\cbx@lasthash}}%
  \setunit{\addcomma\space}%
  \usebibmacro{cite:urlinfo}%
  \setunit{%
    \ifbool{cbx:parens}
      {\bibcloseparen\global\boolfalse{cbx:parens}}
      {}%
    \textcitedelim}}
\makeatother

\begin{filecontents}{\jobname.bib}
@online{key,
  title   = {Very nice online reference},
  url     = {https://www.example.com/},
  urldate = {2019-11-25},
  author  = {Nobody},
}
\end{filecontents}
\addbibresource{\jobname.bib}

\begin{document}
\parencite{key}

\parencite{key}
\end{document}

(Nobody 2019、2019年11月25日訪問)//(Nobody 2019)

関連情報