[Tex/LaTex] Getting Not defining \perthousnad and Not defining \micro when compiling beamer with Kile

beamerkile

I have some experience using LaTeX with Miktex on windows, but am only taking baby steps in learning how to do it on Ubuntu. I am using Kile as IDE for making beamer presentations. The pdf file is nicely generated after the compilation, however, I get the following error message:

./file.tex:0: Not defining \perthousnad 
./file.tex:0: Not defining \micro

I don't know what is going with Kile during compilation of beamer document classe! Could anyone suggest me any thing that may help!! thank you.

Best Answer

They are not errors, but warnings from the gensymb package, and if you look in the .log file I think you'll find:

Package gensymb Warning: Not defining \perthousand.

Package gensymb Warning: Not defining \micro.

So it has nothing to with either beamer or Kile. If you don't use those two symbols, don't worry about it. If you want to get rid of those warnings anyway, you can load the textcomp package before gensymb with \usepackage{textcomp, gensymb}. (Reference: http://www.latex-community.org/forum/viewtopic.php?f=4&t=3364#p13124)