La presentación de Beamer con fuente Palatino se ve diferente a la tesis

La presentación de Beamer con fuente Palatino se ve diferente a la tesis

En mi tesis utilicé la fuente Palatino en todo el documento (específicamente lamatepazopaquete), por lo tanto me gustaría usar la misma fuente en una presentación que estoy preparando. El problema es que cuando configuro \usepackage{mathpazo}, la fuente que sale en la presentación no se ve igual que la fuente de la tesis. A continuación se muestra un ejemplo de cómo se ve mi tesis:

Ejemplo de tesis

Cuando uso esta presentación del proyector 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}

Obtengo lo siguiente:

Ejemplo de presentación

Las fuentes de los dos documentos no son las mismas aunque uso el mismo paquete. ¿Cuál es la razón para esto? Intenté agregar el paquete palatinopero nuevamente las fuentes no se ven iguales.

Respuesta1

Para habilitar el uso de Palatino tanto en modo texto como matemático, le sugiero que agregue las instrucciones \usefonttheme{professionalfonts}y \renewcommand\familydefault{\rmdefault}.

ingrese la descripción de la imagen aquí

\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}

información relacionada