Third message, solution:
You must force LaTeX to use cmr by the following command BEFORE anything else:
Code: Select all
\documentclass{foils}
\fontfamily{cmr}\selectfont
\usepackage[utf8x]{inputenc}
\usepackage[english,russian]{babel}
\begin{document}
Some text in english.
Малко текст на български.
Какой-то текст на русском языке.
\end{document}
There will be no errors now.
http://tex.loria.fr/general/new/fntguide.html
Second message, error bypassed:
I receive the same error.
Workaround: when you get the error input "x" and enter. No file will be produced. Now compile again and it will work.
Next time you compile it will give error again, press "x". Compile again and it will work.
I tested this. You should NOT specify the font encoding, it will not compile at all.
Code: Select all
\documentclass{foils}
\usepackage[utf8x]{inputenc}
\usepackage[english,russian]{babel}
\begin{document}
Some text in english.
Малко текст на български.
Какой-то текст на русском языке.
\end{document}
Actually fonts fcmss and fcmr are not installed, and you have to force it to use cmr. (I have no idea from where you can get them.)
LaTeX Font Warning: Font shape `T2A/fcmss/m/n' undefined
(Font) using `T2A/cmr/m/n' instead on input line 5.
LaTeX Font Warning: Font shape `T2A/fcmr/m/n' undefined
(Font) using `T2A/cmr/m/n' instead on input line 9.
First message, original:
Here are installation instructions for the package, but I have no idea how to add it to the distribution.
Download package from here:
http://www.ctan.org/tex-archive/macros/ ... ib/foiltex
Extract somewhere, open command prompt, navigate to directory, run the command "latex foiltex.ins".
Copy your files to this directory and compile them (you will be using this version of the package).
Nikolay