Text Formatting ⇒ beamer font
beamer font
Also, I would like to combine serif text with sans-serif math. Is there a way to do it?
Thanks a lot for your help!
Ignacio
\documentclass[serif ,mathsansserif ,professionalfont]{beamer}
\usepackage{amsfonts}
\usepackage{beamerprosper}
\usepackage{mathptmx}
\usepackage{palatino}
\usepackage[T1]{fontenc}
\usepackage[english]{babel}
\usepackage{lmodern}
\usepackage{hyperref}
\usepackage[latin1]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{color}
\usepackage{amsmath}
\usepackage{mathpazo}
\usepackage{hyperref}
\usepackage{multimedia}
\usepackage{amssymb}
\usepackage{amscd}
\usepackage[longnamesfirst]{natbib}
\usepackage{epstopdf}
\usepackage{floatflt}
\usepackage{ifthen}
\usepackage{pgfmath}
\usepackage{tikz,ifthen}
\mode<presentation>
{\usefonttheme{serif} % structureitalicserif,structureitalicserif
\usetheme{Boadilla}
\setbeamercovered{transparent}
}
\setbeamerfont{frametitle}{shape=\scshape,series=\bfseries}
\setbeamerfont{title}{shape=\scshape,series=\bfseries}
\renewcommand{\rmdefault}{rm}
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
beamer font
What are you hoping to accomplish with:
Code: Select all
\renewcommand{\rmdefault}{rm}
In general, your preamble makes little sense with regard to fonts. First you load mathptmx, which sets the fonts to Times. Then you load palatino, which sets it to Palatino. Then you load lmodern, which sets it to Latin Modern. Then you load mathpazo, which is a different way of loading Palatino. No wonder your document is confused about fonts! You also load certain packages like ifthen more than once. Try to keep your preamble clean.
What fonts do you actually want?
Using the command:Also, I would like to combine serif text with sans-serif math. Is there a way to do it?
Code: Select all
\usefonttheme[stillsansserifmath]{serif}
Re: beamer font
I think I realise now that the command \renewcommand{\rmdefault}{rm}
was useless because this was already exectued by some of the packages. Is there any way to select some particular font among the lmodern? ,i.e. instead of using rm, e.g. using crm10.
Thanks again.
\documentclass[]{beamer}
\usepackage{amsfonts}
\usepackage{beamerprosper}
%\usepackage{palatino}
\usepackage{lmodern}
\mode<presentation>
{\usefonttheme[stillsansserifmath]{serif} % structureitalicserif,structureitalicserif
\usetheme{Boadilla}
\setbeamercovered{transparent}}
\setbeamerfont{frametitle}{shape=\scshape,series=\bfseries}
\begin{document}
\begin{frame}
\frametitle{Frame Title}
This is a slide
\end{frame}
\end{document}
beamer font
This works for me:
Code: Select all
\documentclass{beamer}
\usepackage{amsfonts}
\usepackage{beamerprosper}
\usepackage[T1]{fontenc}
\mode<presentation>
{\usefonttheme[stillsansserifmath]{serif} % structureitalicserif,structureitalicserif
\usetheme{Boadilla}
\setbeamercovered{transparent}}
\setbeamerfont{frametitle}{shape=\scshape,series=\bfseries}
\begin{document}
\begin{frame}
\frametitle{Frame Title}
This is a slide
\end{frame}
\end{document}
Re: beamer font
How can I select a particular kind of letter in this familiy?
thanks.