我正在尝试在演示文稿mindmaps
中使用该库beamer
。排版后,我得到了未包含的问号。我只是不知道它们从何而来。有人能告诉我为什么会发生这种情况以及如何避免它吗?这些是我的 MWE 和输出幻灯片:
\documentclass{beamer}
\usepackage{tikz}
\usetikzlibrary{mindmap}
\title{Presentation}
\author{Author}
\date{\today}
\begin{document}
\begin{frame}
\frametitle{Basic concepts}

\begin{tikzpicture}[mindmap,concept color=blue!80]
\node [concept] {Root concept};
\node [extra concept] at (10,0) {extra concept};
\end{tikzpicture}
\end{frame}
\end{document}
答案1
这是没有这些不可见字符的代码:
\documentclass{beamer}
\usepackage{tikz}
\usetikzlibrary{mindmap}
\title{Presentation}
\author{Author}
\date{\today}
\begin{document}
\begin{frame}
\frametitle{Basic concepts}
\begin{tikzpicture}[mindmap,concept color=blue!80]
\node [concept] {Root concept};
\node [extra concept] at (3,0) {extra concept};
\end{tikzpicture}
\end{frame}
\end{document}
效果很好。