The universal way to check if a file is available to TeX compilers is the
command-line tool kpsewhich.
1
|
$ kpsewhich tikz
|
/usr/share/texmf/tex/plain/pgf/frontendlayer/tikz.tex
kpsewhich will actually search for files only, not for packages.
It returns the path to the file. For more details on a specific
package use the command-line tool tlmgr(tex live only).
或者使用texdoc命令,比如,我们要查看flushend宏包的帮助文档,可以使用如下的命令查看,
1
2
3
4
5
6
7
|
# 如果记得清宏包的名称,可以直接使用下面的命令
$ texdoc flushend
# 如果记不清宏包的名称,可以使用-l选项,
$ texdoc -l flush
1 E:\texlive\texmf-dist\doc\latex\sttools\flushend.pdf
2 E:\texlive\texmf-dist\doc\generic\tex-virtual-academy-pl\latex2e\macro\flushend.html
# 可以看到有两个输出,我们可以输入相应的数字来查看文档即可。
本文转自 bigstone2012 51CTO博客,原文链接:http://blog.51cto.com/lavenliu/1537324
|