For example, see p. 22 in the PDF of the following:
https://sites.google.com/site/tarekalex ... ssan/files
(File "BurchardiHassan2010_Slides.pdf")
Below if my current code. I'd like all of the text demphasized EXCEPT for the lines
Code: Select all
\textbf{1. Framework}
\begin{itemize}
\item Clarification 1
\item Clarification 2
\end{itemize}
Code: Select all
\documentclass[professionalfont]{beamer}
\mode<presentation>
\usetheme{CambridgeUS}
\useoutertheme{miniframes}
\beamertemplatenavigationsymbolsempty
\begin{document}
\addtocounter{framenumber}{-1}
\section*{}
\frame
{
\frametitle{Outline of Presentation}
\textbf{1. Framework}
\begin{itemize}
\item Clarification 1
\item Clarification 2
\end{itemize}
\vspace{0.5cm}
2. Section 2
\vspace{0.5cm}
3. Section 3
\vspace{0.5cm}
4. Section 4
\vspace{0.5cm}
5. Section 5
}
\section{Section 1}
\subsection{}
\end{document}
I very much appreciate any help you can provide.