在 Xelatex 中使用图像作为标记

在 Xelatex 中使用图像作为标记

我目前有一个大型文档,在章节和小节名称中使用符号来表示特定类型的章节,目前使用 Pifont 和宏化命令,以便在需要时轻松更改图标。我想知道是否可以使用 PNG 图像作为自定义 dingbat 来实现此目的。下面显示了我的代码的精简版本;实际文档使用的包远不止这些。

\documentclass[a4paper]{book}
\usepackage{fontspec}
\usepackage{pifont}
\usepackage{lipsum}
\usepackage{titlesec}
%
\setmainfont[Ligatures=TeX]{Caladea}
%
\newcommand*{\wc}{\ding{71} }
%
\begin{document}
\section*{Section Foo Here}
\subsection*{\wc Subsection Bar Here}
\subsection*{\wc Subsection Foobar Here}
\lipsum
\end{document}

答案1

在此处输入图片描述

\documentclass[a4paper]{book}
\usepackage{fontspec}
\usepackage{graphicx}
\usepackage{lipsum}
\usepackage{titlesec}
%
%\setmainfont[Ligatures=TeX]{Caladea}
%
\newcommand*{\wc}{\includegraphics[height=1em]{house.png}}
%
\begin{document}
\section*{Section Foo Here}
\subsection*{\wc Subsection Bar Here}
\subsection*{\wc Subsection Foobar Here}
\lipsum
\end{document}

相关内容