我正在使用 sphinx 为一个 python 项目构建文档;文档中包含要由 Latex 执行的数学符号。我知道当我从命令行构建文档时,我需要在我的 (linux 系统) 计算机上指定 Latex 的位置,类似于 sphinx 文档给出的以下示例:
sphinx-build -b html -D imgmath_latex=C:\tex\latex.exe . _build/html
我刚刚使用命令安装了 latexsudo apt-get install texlive
我如何找出 Latex 的安装位置以及如何在构建命令中使用它?
当我尝试命令时dpkg -l texlive
输出是
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend
|/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)
||/ Name Version Architecture Description
+++-===============================================-============================-============================-===================================================================================================
ii texlive 2016.20160819-2 all TeX Live: A decent selection of the TeX Live packages
答案1
找出 latex 可执行文件安装位置的一种方法是
which latex