Search found 4 matches

by GeoffRussell
Fri Nov 28, 2014 2:08 am
Forum: BibTeX, biblatex and biber
Topic: running biblatex with utf-8 bib data
Replies: 2
Views: 3384

Re: running biblatex with utf-8 bib data

Ah... thankyou.

But my real code still failed and I've now also realised I needed an \usepackage[utf8]{inputenc} for non-ascii chars in the bbl file. Now it all
runs :D
by GeoffRussell
Thu Nov 27, 2014 12:44 pm
Forum: BibTeX, biblatex and biber
Topic: running biblatex with utf-8 bib data
Replies: 2
Views: 3384

running biblatex with utf-8 bib data

Hi biblatex people ...

I'm trying to learn how to work with utf-8 bib entries and am having difficulties. Below is my example, I've tried using lualatex and pdflatex, but either way ... biber crashes ... which I don't understand, since I thought it could handle utf8.

Thanks,
Geoff

\begin ...
by GeoffRussell
Wed Nov 26, 2014 11:35 am
Forum: BibTeX, biblatex and biber
Topic: style=apa in biblatex problem
Replies: 2
Views: 14443

Re: style=apa in biblatex problem

Hi Johannes_B and thanks for the help. Your example
certainly works but my real bib
file doesn't play well with biber ... some kind of encoding problem. I have to go back to [natbibapa]{apacite} for now and learn a bit more about what I'm doing before the next project.
by GeoffRussell
Wed Nov 26, 2014 1:27 am
Forum: BibTeX, biblatex and biber
Topic: style=apa in biblatex problem
Replies: 2
Views: 14443

style=apa in biblatex problem

I'm new to biblatex and am trying to use it with biblatex-apa

My sample document is:
\documentclass{article}
\usepackage[backend=bibtex,style=apa]{biblatex}
\bibliography{demo}
\begin{document}
Book by \textcite{AAA}.
Book by \parencite{AAA}.
\printbibliography
\end{document}

--- demo ...