내 논문에서는 문서 전체에 Palatino 글꼴을 사용했습니다(특히수학파조패키지)이므로 제가 준비하고 있는 프레젠테이션에서도 동일한 글꼴을 사용하고 싶습니다. 문제는 을 설정했을 때 \usepackage{mathpazo}
프레젠테이션에 나오는 글꼴이 논문에 나온 글꼴과 똑같이 보이지 않는다는 것입니다. 다음은 내 논문이 어떻게 보이는지에 대한 예입니다.
이 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}
나는 다음을 얻습니다 :
동일한 패키지를 사용하더라도 두 문서의 글꼴이 동일하지 않습니다. 그 이유는 무엇입니까? 패키지를 추가하려고 시도했지만 palatino
글꼴이 동일하게 보이지 않습니다.
답변1
텍스트 모드와 수학 모드 모두에서 Palatino를 사용하려면 지침 \usefonttheme{professionalfonts}
과 \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}