with the US order of month followed by day. How can I change this to the UK order of day followed by month?(Accessed: 05/11/2013)
Thanks
Graham
with the US order of month followed by day. How can I change this to the UK order of day followed by month?(Accessed: 05/11/2013)
NEW: TikZ book now 40% off at Amazon.com for a short time.
urldate
option? It can have one of the following values: short, long, terse, comp, iso8601
. It seems yo have set it to short
or terse
while you want long
or comp
.which is not exactly what I wanted (I wanted 11/5/2013), but at least this version can be understood correctly by a UK audience - this is a rushed submission for a coursework so I will probably leave it in the 'long' format rather than spending more time on it!(Accessed: May 11, 2013)
Code: Select all
\documentclass{article}
\usepackage[british]{babel}
\usepackage[urldate=long]{biblatex}
\addbibresource{\jobname.bib}
% a sample bib file from within the tex file:
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@online{ltxcom,
title = {\LaTeX{} community},
url = {http://www.latex-community.org},
urldate = {2013-05-11}
}
\end{filecontents}
\begin{document}
\cite{ltxcom}
\printbibliography
\end{document}
Code: Select all
\documentclass[fontsize=11pt]{scrartcl}
\usepackage{graphicx}
\usepackage{latexsym}
\usepackage{setspace}
\usepackage{appendix}
\usepackage[urldate=short,backend=bibtex,firstinits=true,style=gsbibstyle,citestyle=authoryear,sorting=nty,doi=false,isbn=false]{biblatex}
Code: Select all
\usepackage[british]{babel}
And you can change the sentence to Accessed: if you please.\renewbibmacro*{urldate}{
(visited on \printfield{urlday}/\printfield{urlmonth}/\printfield{urlyear})
}
Code: Select all
\documentclass{article}
\usepackage[british]{babel}
\usepackage{biblatex}
\renewbibmacro*{urldate}{
(visited on \printfield{urlday}/\printfield{urlmonth}/\printfield{urlyear})
}
\addbibresource{\jobname.bib}
% a sample bib file from within the tex file:
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@online{ltxcom,
title = {\LaTeX{} community},
url = {http://www.latex-community.org},
urldate = {2013-05-11}
}
\end{filecontents}
\begin{document}
\cite{ltxcom}
\printbibliography
\end{document}
NEW: TikZ book now 40% off at Amazon.com for a short time.