tufte-latex icon indicating copy to clipboard operation
tufte-latex copied to clipboard

Cite behavior

Open chbuschmann opened this issue 9 years ago • 2 comments

Hi guys,

When using \cite, every single item in the bibtex entry appears, URL's and the lot. This is insane. Is there a way to make the normal cite behavior include only name, tittel and year? I see in the .def that normal cite is defined but i dont understand the code well enough to alter it. Help!

chbuschmann avatar May 15 '15 20:05 chbuschmann

Same here!

k0ala avatar Nov 30 '15 18:11 k0ala

I added this to my header. I'm not sure if it depends on some other things I've customized, but maybe it'll set you on the right track:

\AtEveryCitekey{%
    \clearfield{volume}%
    \clearfield{chapter}%
    \clearfield{eventtitle}%
    \clearlist{institution}%
    \clearfield{issue}%
    \clearfield{journaltitle}%
    \clearfield{booktitle}%
    \clearfield{part}%
    \clearlist{publisher}%
    \clearfield{issn}%
    \clearfield{isbn}%
    \clearfield{url}%
    \clearfield{doi}%
    \clearlist{language}%
    \clearfield{number}%
    \clearfield{urldate}%
    \clearfield{urlyear}%
    \clearfield{urlmonth}%
    \clearfield{urlday}%
    \clearfield{accessed}%
    \clearfield{issue}%
    \clearfield{pages}%
    \clearfield{publication}%
    \renewbibmacro{in:}{}}

ssfrr avatar Apr 07 '20 17:04 ssfrr