我的工作流程

我的工作流程

我有一个包含以下内容的乳胶文件:

\documentclass{article}

\usepackage{graphicx}
\usepackage[inkscapearea=page]{svg}

\begin{document}
    \begin{figure}
        \includesvg[scale=1.0]{idea.svg}
    \end{figure}

\end{document}

我使用 编译了它latexmk -pdflatex --shell-escape idea.tex。生成的 PDF 不会根据 SVG 范围裁剪页面。如何获取根据包含的 svg 绘图范围裁剪的 PDF?

我的工作流程

根据@AlexG 的评论,这里是我的工作流程的澄清。

  1. 使用 LaTeX 将 SVG 文件编译为 PDF,只是因为 LaTeX 将在 SVG 文件的文本框中呈现数学运算。称之为image.pdf
  2. 将生成的 PDF 包含到 Markdown 文档中,如下所示![test](image.pdf
  3. 使用以下方式从 markdown 文档生成 PDFpandoc test.md -o test.pdf

相关内容