TeX Gyre Pagella 和 itemize 环境给出字体警告

TeX Gyre Pagella 和 itemize 环境给出字体警告
\documentclass{article}
\usepackage{tgpagella}

\begin{document}
\begin{itemize}
    \item test1
    \item test2
    \item test3
\end{itemize}
\end{document}

使用全新安装的TeX Live 2011在 Linux 上出现以下警告:

LaTeX Font Warning: Font shape `OMS/qpl/m/n' undefined
(Font)              using `OMS/cmsy/m/n' instead
(Font)              for symbol `textbullet' on input line 7.
...
LaTeX Font Warning: Some font shapes were not available, defaults substituted.

它与默认的 Computer Modern 字体配合得非常好。

看起来这只是tgpagella没有定义自己的项目符号的问题。处理这种警告的最佳方法是什么?可以安全地忽略它吗?有没有办法阻止它在每次编译时出现(而不禁用其他警告)?使用 Vim 时尤其烦人,因为每次编译文档时焦点都会移动到错误窗口!

答案1

加载textcomp包裹。

\documentclass{article}

\usepackage{textcomp}
\usepackage{tgpagella}

\begin{document}
\begin{itemize}
    \item test1
    \item test2
    \item test3
\end{itemize}
\end{document}

相关内容