BibTeX, biblatex and biberUsing Greek characters in a biblatex/biber bibliography

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
proxxi
Posts: 3
Joined: Mon Aug 18, 2014 9:58 pm

Using Greek characters in a biblatex/biber bibliography

Post by proxxi »

Hello,

I am writing my master-thesis in german and I also use literature which is in greek. Therefore I need to add them to my bibliography. When I add a reference with greek characters, I get the following error messages:

Code: Select all

! Package inputenc Error: Unicode char \u8:Δ not set up for use with LaTeX.
See the inputenc package documentation for explanation.
Type H <return> for immediate help.
...
l.45
Your command was ignored.
Type I <command> <return> to replace it with another command,
or <return> to continue without it.
! Package inputenc Error: Unicode char \u8:ι not set up for use with LaTeX.
See the inputenc package documentation for explanation.
Type H <return> for immediate help.
...
And so on.

My Main.tex:

Code: Select all

\RequirePackage[ngerman = ngerman-x-latest]{hyphsubst}

% Seitenlayout:
\documentclass{scrbook}

% load packages:
\usepackage[ngerman]{babel}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[babel,german=quotes]{csquotes}

\usepackage[backend=biber, style=authoryear-luh-ipw]{biblatex}
\addbibresource{literature.bib}

\title{test}

\begin{document}

\cite{test1}

\printbibliography

\end{document}
My literature.bib:

Code: Select all

@online{test1,
  title = {{Διακήρυξη του}},
  url = {http://www.xy.com},
  author = {{franz ferdinand}},
  urldate = {2014-08-18},
}
Hope somebody can help me with this, I would very much appreciate it! :)

Yours
Jannis

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX books
User avatar
Johannes_B
Site Moderator
Posts: 4182
Joined: Thu Nov 01, 2012 4:08 pm

Using Greek characters in a biblatex/biber bibliography

Post by Johannes_B »

The very simplest solutoin seems to be to use a unicode aware engine like XeLateX or LuaLaTeX. This should solve your problems.

Was ist der Unterschied zwischen `latex`, `pdflatex`, `lualatex` und `xelatex`?
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
User avatar
cgnieder
Site Moderator
Posts: 2000
Joined: Sat Apr 16, 2011 7:27 pm

Using Greek characters in a biblatex/biber bibliography

Post by cgnieder »

Hi proxxi,

Welcome to the LaTeX community!

With pdflatex you could try something along those lines:

Code: Select all

\documentclass{article}
\usepackage[LGR,T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{textalpha}
\begin{document}
Διακήρυξη του
\end{document}
Regards
site moderator & package author
proxxi
Posts: 3
Joined: Mon Aug 18, 2014 9:58 pm

Re: Using Greek characters in a biblatex/biber bibliography

Post by proxxi »

I tried the solution with pdflatex and it works just fine.
Thanks a lot for your help!
Post Reply