How to make BibLaTeX print
Elérhető: http://digitus.itk.ppke.hu/~lazar/cnn/SegedFileok/ZA_TemplTervArt.pdf (elérés dátuma 2014. 04. 22.).
instead of
Available: http://digitus.itk.ppke.hu/~lazar/cnn/SegedFileok/ZA_TemplTervArt.pdf (visited on 04/22/2014).
?
MWE:
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[magyar]{babel}
\usepackage{lmodern, filecontents}
\usepackage[style=ieee]{biblatex}
\begin{filecontents}{\jobname.bib}
@article{zarandy_art_temdesign,
author = {Zarándy, Ákos},
title = {The art of {CNN} template design},
journal = {International Journal of Circuit Theory and Applications},
volume = {27},
number = {1},
publisher = {John Wiley & Sons, Ltd.},
issn = {1097-007X},
url = {http://digitus.itk.ppke.hu/~lazar/cnn/SegedFileok/ZA_TemplTervArt.pdf},
urldate = {2014-04-22},
pages = {5--23},
year = {1999}
}
\end{filecontents}
\addbibresource{\jobname.bib}
\begin{document}
\cite{zarandy_art_temdesign}
\printbibliography
\end{document}
urlandurlseen. Or is there any other problem? (I assume you know how to deal with bibstrings, because of this question of yours.) Of course the date format is another matter. – moewe Dec 20 '14 at 18:30urlis the bibstring I'm looking for. Thank you. So how to format the date? – marczellm Dec 20 '14 at 18:47mkbibdatelongandmkbibdateshortmacros found in the.lbxfiles (english.lbxandgerman.lbxfor example, the latter of the two might even contain the definition you want). – moewe Dec 20 '14 at 20:28