itemize 问题(可能与字体有关)

itemize 问题(可能与字体有关)

我在使用“itemize”命令时遇到问题。我正常输入了该命令,但我的 MakeTeX 编译器中出现了 2 个警告:

  1. Font shape `OMS/udidot/m/n' undefined, using `OMS/cmsy/m/n' instead for symbol `textbullet'

  2. Some font shapes were not available, defaults substituted

我应该告诉你类似的命令“enumerate”工作正常。

请问有什么帮助吗?

我的序言是

\documentclass[10pt,a4paper]{book}
\usepackage[utf8]{inputenc}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage[english,greek]{babel}
\usepackage{amsmath}
\usepackage{mathtools}
\usepackage{graphicx}
\usepackage{enumerate} 
\usepackage{tcolorbox}
\usepackage{array}
\makeatletter
\newcommand{\thickhline}{%
    \noalign {\ifnum 0=`}\fi \hrule height 1pt
    \futurelet \reserved@a \@xhline
}
\newcolumntype{"}{@{\hskip\tabcolsep\vrule width 1pt\hskip\tabcolsep}}
\makeatother
\tcbuselibrary{theorems}
\usepackage{calrsfs}
\DeclareMathAlphabet{\pazocal}{OMS}{zplm}{m}{n}
\renewcommand{\rmdefault}{udidot}

\begin{document}
\title{\Huge{asd}\\
\huge{asd}}
\author{\Large{asd}\\ asd}

\newcommand{\Ra}{\mathcal{R}}
\newcommand{\Rb}{\pazocal{R}}
\newcommand*\quot[2]{{^{\textstyle #1}\big/_{\textstyle #2}}}
\newtheorem{theo}{Θεώρημα}[section]
\newtheorem{defin}{Ορισμός}[section]
\newtheorem{prt}{Παρατήρηση}[section]
\newtheorem{prts}{Παρατηρήσεις}[section]
\newtheorem{exmp}{Παράδειγμα}[section]
\newtheorem{exmps}{Παραδείγματα}[section]
\newtheorem{por}{Πόρισμα}[section]
\newtcbtheorem[number within=section]{mytheo}{\textsc{Θεώρημα}}%
{colback=red!5,colframe=red!30!black,fonttitle=\bfseries}{th}
\newtcbtheorem[number within=section]{myprop}{\textsc{Πρόταση}}%
{colback=blue!5,colframe=red!52!black,fonttitle=\bfseries}{th}
\newtcbtheorem[number within=section]{mylm}{\textsc{Λήμμα}}%
{colback=blue!5,colframe=red!52!black,fonttitle=\bfseries}{th}
\newtcbtheorem[number within=section]{mypor}{\textsc{Πόρισμα}}%
{colback=red!5,colframe=red!52!black,fonttitle=\bfseries}{th}

\begin{itemize}
    \item We define the set $\mathbb{N}=\{0,1,2,...\}.$
\end{itemize}
\end{document}

非常感谢。

答案1

为了访问某些文本符号,您通常需要该textcomp包。这也解决了本例中的警告。请注意,如果需要,它可能会从不同的字体中选择一个符号(据我所知)

相关内容