General ⇒ Romanian diacritics don't show up in PDF
Romanian diacritics don't show up in PDF
I would like to request your help regarding Romanian characters not sowing in my PDF. I have written a document in which I have written characters like ș,ț,ă,î,â, but these do not appear in the output file. Strangely, in a PDF I have downloaded from another site, these charaters seem to appear.
Is there any explanation to it?
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
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
Romanian diacritics don't show up in PDF
welcome to the board!
I recommend to use T1 font encoding, and also a suitable input encoding, such as:
Code: Select all
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}% if the editor supports utf8
Romanian diacritics don't show up in PDF
Welcome to the LateX community!
Have you ensured you have the right input encoding? Are you using a font that has those diacritics? It would probably help if you would post a

Regards
PS: tss, Stefan beat me again

Romanian diacritics don't show up in PDF
As Mr. cgnieder suggested, I will try to detail what the problem was. Suppose the following code was built:
Code: Select all
\documentclass{article}
aaaăăăîîîbb
\end{article}
In other words, it would "ignore" the diacritics ă,î.aaabb
Thank you very much to both of you for your help!
Problem Solved
Romanian diacritics don't show up in PDF
However, the code you posted is completely impossible for a standard LaTeX document! It should rather look something like this:
Code: Select all
\documentclass{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\begin{document}
aaaăăăîîîbb
\end{document}
Re: Romanian diacritics don't show up in PDF
I forgot the \begin{document} command. Pardon me. I wanted to post the code which generated the problem. The one you posted would be the solution

Re: Romanian diacritics don't show up in PDF

- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
Re: Romanian diacritics don't show up in PDF
Stefan