Como adicionar urldate à primeira citação em referências online

Como adicionar urldate à primeira citação em referências online

Quero adicionar a data em que visitei minhas referências online na primeira menção delas. Eu uso biblatexcom o authoryear-compestilo. Aqui está um 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}

Alguém pode me ajudar com esse problema?

Observação do usuáriohttps://tex.stackexchange.com/users/14649: Esta é uma pergunta complementarComo acessar urldate em texto.

Responder1

Você pode tentar algo assim. A opção citetrackeré necessária para o \ifciteseenteste. A definição de citeé a definição original authoryear-comp.cbxcom as duas linhas a seguir

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

adicionado no final.

O mesmo pode ser feito para textcite, mas deve-se notar que ele \textcitepossui alguns casos especiais (citações compactadas, citações sem nome ou ano, abreviações) que podem fornecer resultados um pouco inesperados com esta configuração. Não consegui pensar em uma solução geral melhor, então recomendo examinar cuidadosamente o resultado.

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

(Ninguém 2019, visitado em 25/11/2019)//(Ninguém 2019)

informação relacionada