TeX(不是 LaTeX)?包含图形?树形包

TeX(不是 LaTeX)?包含图形?树形包

我如何才能真正将图形包含到 TeX 文档中?没有什么比\includegraphics{}……

此外,如何在 TeX 中制作图形,是否有任何树形包或类似的包?

答案1

TDS:tex/plain/graphics-pln/graphicx.tex请参阅包含纯 TeX 中的 LaTeX包的文件graphicx,其中miniltx.tex定义了纯 TeX 所需的 LaTeX 部分:

% Plain TeX interface to graphicx package.
% David Carlisle

\input miniltx

\def\Gin@driver{dvips.def}
\input graphicx.sty

\resetatcatcode

驱动程序不是通过选项声明的,而是通过驱动程序文件名声明的。版本和示例如下pdftex

\input miniltx
\def\Gin@driver{pdftex.def}
\input graphicx.sty
\resetatcatcode

\includegraphics{example-image}
\bye

第二个问题

例如,pgf/TikZ也适用于纯 TeX。

相关内容