I have multiple website references on my document. I'm using bibtex with @misc to specify them.
I need to keep switching between referencing this sites in the normal way together with all the other references, or have them in footnotes. I want to make this switches as painless as possible and so my idea is to use a new command to cite a website, say \wcite. I would define it as:
\newcommand{\wcite}[1]{\cite{#1}} %normal cite
\newcommand{\wcite}[1]{\footnote{\bibtitle{#1} - \bibhowpublished{#1}}} %footnote cite
Then I would comment the one I'm not using at the moment. This allows me to switch from citations to footnotes quickly, writing the website's data only once. I can also easily change the format of the footnote.
My obvious problem is that \bibtitle or \bibhowpublished do not exist. I couldn't find a way to get the string values from a bib entry.