I have a document
\documentclass{beamer}
\usepackage[utf8x]{inputenc}
\usepackage[L7x]{fontenc}
\usepackage[lithuanian]{babel}
\usepackage{amsmath}
\begin{document}
\frame{
\frametitle{sample}
\begin{itemize}
\item A
\item B
\end{itemize}
}
\end{document}
It gives an error message
! Corrupted NFSS tables.
wrong@fontshape ...message {Corrupted NFSS tables}
error@fontshape else let f...
l.15 }
what's the problem?
\usepackage[L7x]{fontenc}is the problem.\usepackage{paralist}and then you can play around with different symbols by saying something like\begin{itemize}[--]or[\textbullet]or[\bfseries\textendash]or whatever. You can also set this document-wide with\setdefaultitem{\textasteriskcentered}{}{}{}. The Comprehensive LaTeX Symbol List will have more inspirations for what might look good.L7xencoding. I'll try to find a way out. You can "cure" the problem by saying\usepackage{lmodern}, but the font used will be the serif one.