Tengo elipses con trampilla. Quiero usar líneas o sombreado de ladrillos, pero es más raro que el predeterminado.
Puedo cambiar la dispersión entre líneas de esta manera.Patrones de relleno TikZ personalizados y integrados. Funcionó, pero es tan feo y no sé cómo escalar ladrillos.
Intenté hacerlohttps://tex.stackexchange.com/a/125545/53834, pero no ayudó: hatch se adapta a la nueva escala.
Entonces mi imagen es
\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}
lo incluyo de esta manera
\begin{figure}[h!]
\center\includestandalone[width=4cm]{tikz/indistinguishableValuesImage}
\end{figure}
Quiero obtener una solución más elegante para escotillas más raras o escalarla normalmente (con escala de escotilla). Y no quiero que sea PNG; quiero usar gráficos vectoriales o, si nada ayuda, SVG.