Following the post here I was wondering how can we format bibtex to use the title of the reference as a href description. That is without having to modify the bibtex entry itself.
For example using this entry as it is,
@inproceedings{DBLP:conf/osdiDeanG04,
author = {Jeffrey Dean and Sanjay Ghemawat},
title = {MapReduce: Simplified Data Processing on Large Clusters},
booktitle = {OSDI},
year = {2004},
url = {http://www.usenix.org/events/osdi04/tech/dean.html},
crossref = {DBLP:conf/osdi 2004},
bibsource = {DBLP, http://dblp.uni-trier.de}
}
Is it possible to use the url and the title as the description of a \href{url}{title}
I have tried the following command which does not work as expected. I'm using plainnat.
FUNCTION {format.title}
{ title empty$
{ "" }
{"\href{" url * "}{" title "t" change.case$ "}"}
if$
}