如何使用 Latex 制作本章装饰的复制品

如何使用 Latex 制作本章装饰的复制品

有人可以制作或告诉我如何(涉及的步骤)使用 Latex 制作以下书籍章节装饰(最好是pdflatex)吗?

在此处输入图片描述

我知道存在允许人们上传这样的图片的外部资源,然后生成 LaTeX 代码——但我不知道如何做到这一点。

答案1

没有太多时间来做出详细回答,但因为可能,我会为您简化一些步骤。

  1. 观看有关如何在 Inkscape 中将任何图像转换为矢量的视频。
  2. 查看此答案如何将 svg 导出到 tikz
  3. 观看有关如何安装 inkscape 插件的视频。
  4. 在 inkscape 中,使用你的矢量化图像,转到扩展>>导出>>导出到 tikZ 路径。
  5. 使用此选项[抱歉,UI 是西班牙语]:

在此处输入图片描述

  1. 这将生成一个很长的代码[此代码无法作为 MWE 放置,因为它有超过 3000 个字符并且页面不允许复制它。]:

\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{tikz}
\usepackage[active,tightpage]{preview}
\PreviewEnvironment{tikzpicture}
\begin{document}
\def \globalscale {1.000000}
\begin{tikzpicture}[y=0.80pt, x=0.80pt, yscale=-\globalscale, xscale=\globalscale, inner sep=0pt, outer sep=0pt]
\begin{scope}[shift={(-54.5242,-89.3565)}]% layer1
  % path847
  \path[fill=black,line width=0.056pt]
    (26.5695,47.2394) 
        .. controls (26.3421,47.0120) and (25.5522,46.5029)
        .. (25.4268,46.5029) .. controls (25.3729,46.5029) and (25.1336,46.6614)
        .. (27.2576,24.6615) .. controls (27.2406,24.6615) and (27.2267,24.6300) 
        .. (27.2267,24.5915) -- cycle(27.0273,24.2495) 
        .. controls (26.9057,24.1725) and (26.9516,23.9265) ... very long code ....
        ... very long code ....
        ... very long code ....
        .. (27.0876,23.9265) .. controls (27.1491,23.9265) and (27.2008,24.0053) 
        .. (27.2138,24.1190) .. controls (27.2368,24.3185) and (27.1889,24.3520) 
        .. (27.0273,24.2495) -- cycle;
  % path847
\end{scope}
\end{tikzpicture}
\end{document}

下一步...

  1. 将路径复制到您想要的位置并在 tikzpicture 环境属性中缩放它。
  2. 当然,您可以跳过所有这些步骤,因为您已将图像转换为矢量,因为在 inkscape 中您可以将其导出为 PDF,然后使用您想要的所有矢量属性将其导入,即使在 tikz 环境中也是如此。
  3. 查看此帖子在章节开头插入图片
  4. 然后你也可以玩导入矢量 pdf tikz 生成的图像将 tikzpicture 的不同组件缩放在一起。

相关内容