如何将图形放入文本中?

如何将图形放入文本中?

我想在文本旁边放置图形(控制器按钮图标),作为游戏手册,如下图所示:

截屏

来源:http://www.zeldacapital.com/manual/ootmanual.pdf第 17 页

答案1

如果您有图形,您可以直接在文本中使用包(而不是在类似 或 的环境中\includegraphics[scale=0.1]{*filename*})。您可以使用因子来适应文本中的图形。graphicxcenterfigurescale

答案2

使用 TikZ:

\documentclass{article}
\usepackage{tikz}

\begin{document}

Press the \tikz[baseline=-1.3ex]\node[circle,fill=blue!80,inner sep=1pt] (O) {\LARGE\bfseries\sffamily\textcolor{white}{A}}; Button

\end{document}

在此处输入图片描述

答案3

与@Gonazalo Medina 类似:

\documentclass[letterpaper]{article}
\usepackage{tikz}
\newcommand*\circled[1]{\tikz[baseline=(char.base)]{
  \node[shape=circle,fill=blue!80,inner sep=2pt,text=white] (char) {\bfseries\sffamily #1};}}
\begin{document}
text on the left \circled{A}  text on the right
\end{document}

得出:

在此处输入图片描述

相关内容