我已经texlive-fonts-extra
安装了:
$ port installed texlive-fonts-extra
The following ports are currently installed:
texlive-fonts-extra @22691_0+doc (active)
根据https://trac.macports.org/wiki/TeXLivePackages,texlive-fonts-extra
有doublestroke
然而,在编译($ pdflatex article.tex
)包含以下内容的 .tex 文件时
\usepackage{mathtools, doublestroke}
我明白了
! LaTeX Error: File `doublestroke.sty' not found.
我正在使用正确的 latex 副本,因为
$ which pdflatex
/opt/local/bin/pdflatex
我应该怎样做才能排除故障?
答案1
我认为没有这样的doublestroke
方案。根据doublestroke 的文档你需要
\usepackage{dsfont}
或者,您可以按如下方式访问字体,但包是更好的选择。
\documentclass{article}
\font\dsrom=dsrom10
\begin{document}
\[\hbox{\dsrom N}=\{0,1,2,\ldots\}\]
\[\hbox{\dsrom ABCDEFGHIJKLMNOPQRSTUVWXYZ}\]
\end{document}