Text Formatting ⇒ dcu: lastchecked and urldate in misc entries?
dcu: lastchecked and urldate in misc entries?
this is hopefully the last query for my thesis. I'm going to create a proper preset for my university with the hope others won't have so much trouble.
As already mentioned, I'm using natbib with scrreprt. In my BibTeX-Bibliography I have several entries as 'misc', like Blog- or Wiki-articles. As there's a rule to put at least a date for each url, I used Urldate and Lastchecked variables in BibTeX. How can I display these variables in my bibliography?
Thanks in advance!
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Re: natbib: lastchecked and urldate in misc entries?
\bibliographystyle{dcu}
Re: dcu: lastchecked and urldate in misc entries?
I tried to modify the URL function in dcu.bst, but that's horrible.
Re: dcu: lastchecked and urldate in misc entries?
-
SianKJones
- Posts: 1
- Joined: Mon Jun 21, 2010 4:21 pm
dcu: lastchecked and urldate in misc entries?
I use abbrv and booklet to format my webpages in my references:
Code: Select all
@BOOKLET{aref,
title = {A Title},
author = {A. Author},
howpublished = {Available at: \url{http://www.google.com}},
lastchecked = {29/09/09},
year = {2005},
}1. Add lastchecked in
Code: Select all
ENTRYCode: Select all
FUNCTION {format.lastchecked}
{ lastchecked empty$
{ "" }
{ inbrackets "Last Accessed: " lastchecked * }
if$
}Code: Select all
format.lastchecked outputSian