Na minha tese usei a fonte Palatino em todo o documento (especificamente nomatemáticapazopackage), portanto gostaria de usar a mesma fonte em uma apresentação que estou preparando. O problema é que quando eu defino \usepackage{mathpazo}
, a fonte que sai na apresentação não fica igual à fonte da tese. Abaixo está um exemplo de como é minha tese:
Quando eu uso esta apresentação do beamer MWE
\documentclass{beamer}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{mathpazo}
\usepackage{palatino}
\mode<presentation> {
\usetheme{Copenhagen}
\setbeamertemplate{footline}[frame number]
\setbeamertemplate{navigation symbols}{}
\setbeamersize{text margin left=5mm,text margin right=5mm}
}
\begin{document}
\begin{frame}{Info}
Various ways that AM could help to develop the space industry:
{\footnotesize \begin{itemize}
\item Printing of components and replacements
\item Recycling of materials
\item Creation of structures that are hard to produce on Earth or difficult to transport to orbit
\item ISRU
\item The creation of new materials and parts that may one day be made in microgravity only and may only function there, i.e. they would be truly space based
\begin{equation}
F=kx
\end{equation}
\end{itemize}}
\end{frame}
\end{document}
Eu recebo o seguinte:
As fontes nos dois documentos não são iguais, embora eu use o mesmo pacote. Qual é a razão para isto? Tentei adicionar o pacote palatino
, mas novamente as fontes não parecem iguais.
Responder1
Para habilitar o uso do Palatino tanto no modo texto quanto no modo matemático, sugiro que você adicione as instruções \usefonttheme{professionalfonts}
e \renewcommand\familydefault{\rmdefault}
.
\documentclass{beamer}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\mode<presentation> {%
\usetheme{Copenhagen}
\setbeamertemplate{footline}[frame number]
\setbeamertemplate{navigation symbols}{}
\setbeamersize{text margin left= 5mm,
text margin right=5mm}
}
\usefonttheme{professionalfonts}
\usepackage{mathpazo} % or: {newpxtext,newpxmath}
\renewcommand\familydefault{\rmdefault}
\begin{document}
\begin{frame}[t]{Info}
Various ways that AM could help to develop the space industry:
\begin{itemize}
\item Printing of components and replacements
\item The creation of new materials and parts that may one day be
made in microgravity only and may only function there, i.e.,
they would be truly space based
\begin{equation}
F=kx
\end{equation}
\end{itemize}
\end{frame}
\end{document}