我正在使用 Overleaf 中的书籍类编写希腊语常微分方程的讲义。一切都很顺利(没有错误,没有警告),直到我添加了 png 图片。由于我添加了图片(名为 1.png),因此章节标题中的每个字母都发出了警告。我从代码中删除了很多东西,以免代码太长。
\documentclass[a4paper,10pt]{book}
\usepackage[utf8]{inputenc}
\usepackage[english,greek]{babel}
\usepackage{amsmath}
\usepackage{amsthm}
\usepackage{graphicx}
\usepackage{amsfonts}
\usepackage[colorlinks]{hyperref}
\title{Συνήθεις Διαφορικές Εξισώσεις}
\author{}
\theoremstyle{definition}
\newtheorem{examp}{Παράδειγμα}[section]
\theoremstyle{definition}
\newtheorem{defin}[examp]{Ορισμός}
\theoremstyle{definition}
\newtheorem{notice}[examp]{Παρατήρηση}
\begin{document}
\maketitle
\newpage
\tableofcontents
\chapter{Γραμμικές ή ντετερμινιστικές εξισώσεις }
\includegraphics[width=5.5cm, height=4cm]{1}
Package hyperref Warning: Glyph not defined in PD1 encoding, removing
我在第 23 行输入第一个字母 \textGamma' 时收到警告。`
答案1
它应该使用当前的超链接运行而不会出错,否则使用
\usepackage[unicode]{hyperref}
因此书签可以使用 Unicode 而不是原始 PDF 字符串编码(不允许希腊语)。