在 TeXLive 2011 中使用 texliveonfly

在 TeXLive 2011 中使用 texliveonfly

我测试texliveonfly使用tikzpagenodes 包

%fly.tex
\documentclass{standalone}
\usepackage{tikz,tikzpagenodes}
\begin{document}
\begin{tikzpicture}[remember picture,overlay]
  \draw[blue] (current page text area.south west)
    rectangle
    (current page text area.north east)
\end{tikzpicture}
\end{document}

我输入

sudo python texliveonfly.py --texlive_bin=/usr/local/texlive/2011/texmf-dist/ fly.tex

但错误信息:

/usr/local/texlive/2011/texmf-dist/tlmgr is not installed

我该怎么办?简而言之,正如其texliveonfly/usr/local/texlive/2011/

答案1

该脚本的安装texliveonfly与 TeXLive 2011 相同。因此只需运行

texliveonfly fly.tex

它应该能工作!至少对我来说是这样的 :-)

texliveonfly/usr/local/texlive/2011/bin/<system>/ 是Python 脚本的链接../../texmf-dist/scripts/texliveonfly/texliveonfly.py

相关内容