General ⇒ Keyboard character used is undefined
Keyboard character used is undefined
I'm not familiar with latex so my friend just sent me his final graduation work in order to help me to build my one.
The problem is because he built it on linux, and when I'm opening his work with my macos, there are many words with characters problems and when I'm trying to generate a pdf I'm getting this error:
"! Package inputenc Error: Keyboard character used is undefined
(inputenc) in inputencoding `latin1'.
See the inputenc package documentation for explanation.
Type H <return> for immediate help.
...
l.123 Management ��
� Part 1: General(Revised)},'' in \emph{NIST Special
? "
So, do I have to configure something on my editor? do I have to use other keyboard definition package? which one? where should I find the one which is currently being used in order to change it?
Sorry for the big post, I'm really confused trying to fix that... it's gonna help a lot use this ready to go template from my friend.
Thanks a lot!
Bruno
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
Keyboard character used is undefined
welcome to the board!
As your friend uses Linux, I guess the encoding is UTF-8. So I suggest
- ensure that your editor uses UTF-8
- change
to
Code: Select all
\usepackage[latin1]{inputenc}
Code: Select all
\usepackage[utf8]{inputenc}
Stefan