我设置了一个LaTeX项目:
tex/
- documents/
- some_file.tex
- support/
- todonotes.sty
其中
some_file.tex
使用todonotes
:\usepackage[colorinlistoftodos,textwidth=0.9\marginparwidth]{todonotes}
但是,当我尝试在TextMate中构建PDF时,出现“LaTeX错误:找不到文件`todonotes.sty'”。如何告诉LaTex或TextMate我的.sty文件?
稍后
具体来说,我正在使用MacPorts中的
tetex
,尽管到目前为止已经给出了答案,但我还是可以尝试其他发行版。 最佳答案
在Mac OS X(Snow Leopard 10.6.7)中,将.sty
文件放入
/usr/local/texlive/2010basic/texmf-dist/tex/latex/base/
然后,运行
texhash
命令。不要忘记以root用户身份保留(例如sudo -s
)关于macos - 如何在OSX上安装LaTeX .sty文件?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/1390828/