Possible Duplicate:
urldate in BibTeX gets ignored
My university has their own .bst file for outputting references. But the urldate of internet articles is not included. There is a function format.url:
FUNCTION {format.url}
{ url empty$
{ "" }
{ new.block "URL \url{" url * "}" * }
if$
}
Not familiar with bibtex syntax. How can I modify it to also print e.g. "(visited on 2012-04-12)"
Thanks!