4

I'm using Biblatex and having trouble getting an @ONLINE to cite correctly in the bibliography. Here's the preamble:

\documentclass[a4paper,12pt]{scrartcl}
\usepackage[style=authoryear]{biblatex}
\usepackage{hyperref}
\addbibresource{soarBib}

I have an entry in my bibliography that looks like this:

@ONLINE{Google5gram,
    author = {Alex Franz and Thosten Brants},
    organization = {Google Machine Translation Team},
    url = {http://googleresearch.blogspot.com/2006/08/all-our-n-gram-are-belong-to-you.html},
    title = {All Our N-Gram are Belong to You},
    month = aug,
    year = {2006},
}

After \printbibliography, the citation gets printed without any url in the bibliography, like this: "Alex Franz and Thosten Brants. Google Machine Translation Team." How do I get it to print the date and URL?

Nate Glenn
  • 1,614

2 Answers2

1

Very strange, I've tested what you are doing, and I'm getting printed the url in the reference section.

By the way, I'm using pdflatex and compile the bib file with bibtex.

The minimal test I did is this:

\documentclass[a4paper,12pt]{scrartcl}
\usepackage[style=authoryear]{biblatex}
\usepackage{hyperref}
\addbibresource{test}

\title{Minimal test}
\date{}

\begin{document}
\maketitle
\nocite{Google5gram}
\printbibliography
\end{document}

Perhaps you could see in detail the logfile you get when compiling your latex file.

0

This problem resolved itself when I restarted my IDE (TexMaker).

Nate Glenn
  • 1,614