如何在 LaTeX 中的 tikz 图形中缩放图案?

如何在 LaTeX 中的 tikz 图形中缩放图案?

我有带阴影的椭圆。我想使用线条或砖块阴影,但比默认的要少用。

我可以用这种方式改变行之间的跨度自定义和内置 TikZ 填充图案。虽然成功了,但是太丑了,而且我不知道如何缩放砖块。

我尝试过https://tex.stackexchange.com/a/125545/53834,但这并没有什么帮助——舱口适应了新的规模。

所以我的形象是

\documentclass{standalone}    
\usepackage{pgfplots}
\usetikzlibrary{patterns}

\begin{document}
  % defining the new dimensions
  \newlength{\hatchspread}
  \newlength{\hatchthickness}
  % declaring the keys in tikz
  \tikzset{hatchspread/.code={\setlength{\hatchspread}{#1}},
           hatchthickness/.code={\setlength{\hatchthickness}{#1}}}
  % setting the default values
  \tikzset{hatchspread=.5cm,
           hatchthickness=0.4pt}
  % declaring the pattern
  \pgfdeclarepatternformonly[\hatchspread,\hatchthickness]% variables
     {custom north west lines}% name
     {\pgfqpoint{-2\hatchthickness}{-2\hatchthickness}}% lower left corner
     {\pgfqpoint{\dimexpr\hatchspread+2\hatchthickness}{\dimexpr\hatchspread+2\hatchthickness}}% upper right corner
     {\pgfqpoint{\hatchspread}{\hatchspread}}% tile size
     {% shape description
      \pgfsetlinewidth{\hatchthickness}
      \pgfpathmoveto{\pgfqpoint{0pt}{\hatchspread}}
      \pgfpathlineto{\pgfqpoint{\dimexpr\hatchspread+0.15pt}{-0.15pt}}
      \pgfusepath{stroke}
     }
  \begin{tikzpicture}
    \draw[pattern=custom north west lines] (-2,0) ellipse (1cm and 2cm);
    \draw (2,0) ellipse (.7cm and 1.5cm);
  \end{tikzpicture}
\end{document}

我这样包括它

\begin{figure}[h!]
  \center\includestandalone[width=4cm]{tikz/indistinguishableValuesImage}
\end{figure}

我想要获得更优雅的解决方案,以处理更稀有的图案,或者正常缩放(使用图案缩放)。我不想将其设为 PNG——我想使用矢量图形,或者,如果没有什么帮助的话,使用 SVG。

相关内容