I use BibDesk to construct my .bib files. This program gives me some fields to put information, depending on the type of reference (book, article, etc.). However, LaTeX doesn't print all the information I put into the .bib file... e.g.:
\documentclass[12pt]{amsart}
\usepackage[backend=bibtex]{biblatex}
\bibliography{myrefs}
\begin{document}
\printbibliography
\end{document}
with 'myrefs.bib':
@url{gaussianintegrals,
Date-Added = {2015-12-09 18:25:08 +0000},
Date-Modified = {2015-12-09 18:26:49 +0000},
Lastchecked = {9-12-2015},
Title = {Gaussian Integrals},
Url = {http://www.umich.edu/~chem461/Gaussian%20Integrals.pdf},
I only get:
Gaussian Integrals. url: http://www.umich.edu/~chem461/Gaussian% 20Integrals.pdf.
How do I get it to also print, for example, the 'last-checked' field?
\addbibresource{myrefs.bib}. See Is there any advantage to using\addbibresourceover\bibliography? andbiblatexfor idiots. – Werner Dec 15 '15 at 20:08@url{...}entries are displayed. Fields likeDate-Added,Date-ModifiedandLastcheckedare unknown in terms of the generic placement. – Werner Dec 15 '15 at 20:12urldatewhich specifies the date you accessed the URL. If there is nodate,yearetc., this will also be used where those are required. What is printed depends on the style and options you use. However, as @Werner says, those are simply not standard fields. You would need to add them and specify suitable formatting etc. These are not standard details included in entries by most bibliographical styles. Are you sure you need this information and that you don't need something more standard instead? – cfr Dec 16 '15 at 02:40biblatexthere is no fieldLastchecked, you can give this information in theurldatefield. Please note that all date fields inbiblatexmust be given in YYYY-MM-DD format (with leading zeroes).date-addedanddate-modfiedare probably not fields you need to see in the bibliography in your document at all. – moewe Dec 16 '15 at 07:29