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
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
-
- 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