LyX ⇒ Bibtex and quotation marks
Bibtex and quotation marks
I'm new to this forum because I have a problem using Lyx and Bibtex.
Writing my PhD in german I use the following quotation marks in my text: « ». If I export the file to pdf I looks great, no problems.
The problems begin if I include a bibtex-file (created with Bibdesk). All quotation marks written in the bib-file look strange after exporting the file to pdf. They look this way: « or »
I tried different things, I googled, I read websites, I have no clue!
Does anybody out there has an idea what my problem is and how I can solve it?
Thank you.
Regards
Butch
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
-
- Posts: 89
- Joined: Fri Jan 24, 2014 12:42 am
Re: Bibtex and quotation marks
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
Bibtex and quotation marks
If you want to stay with bibtex, you need to mask those symbols, using for example
Code: Select all
\documentclass{article}
\usepackage[T1]{fontenc}
\begin{document}
\guillemotleft Hallo\guillemotright
\end{document}
Re: Bibtex and quotation marks
I changed Bibdesk's preferences to Latin 1, so my bib-file is latin-1 encoded now. It worked, everything looks as it should now.
Butch