I'm trying to put a description environment with some data in my presentation. But pdflatex compiles it without showing the part in [] of \item.
Minimal reproducing example:
\documentclass{beamer}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usetheme{Bergen}
\usefonttheme[onlymath]{serif}
\usecolortheme{orchid}
\begin{document}
\begin{frame}
\begin{description}
\item[equ] lorem
\item[$p = -\left(1 + \left(\dfrac{k}{k_g}\right)^2\right)$] ipsum.
\end{description}
\end{frame}
\end{document}
Result:

I've found that this is a problem with the color theme: orchid. But I have no idea how to fix it.
\usepackage{enumitem}in the preamble? – hpesoj626 Dec 20 '12 at 10:15Bergentheme loads\usecolortheme{orchid}and\useinnertheme{inmargin}, and it seems to be the combination of the two that causes the issue (removing\usecolortheme{orchid}from your MWE has no improvement). The description headings are there but they are in white, the same as the background colour. – cyberSingularity Dec 20 '12 at 11:10