Skip to content

Instantly share code, notes, and snippets.

@locusf
Last active April 21, 2019 06:17
Show Gist options
  • Select an option

  • Save locusf/6edbd0d521b82b84e95c26f10a7284fd to your computer and use it in GitHub Desktop.

Select an option

Save locusf/6edbd0d521b82b84e95c26f10a7284fd to your computer and use it in GitHub Desktop.
\documentclass{standalone}
\usepackage{tikz}
\usepackage{relsize}
\usepackage{wrapfig}
\usepackage{lmodern}
\usepackage{tgothic}
\usepackage[T1]{fontenc}
\usetikzlibrary{lindenmayersystems,
shapes.geometric,shapes,
arrows,snakes,matrix,backgrounds,intersections,
arrows.meta,
calc,
positioning,matrix,
decorations.pathreplacing,decorations.text,decorations.markings,
bending}
\newlength{\dangle}
\setlength{\dangle}{87}
\input GotIn.fd
\newcommand*\initfamily{\usefont{U}{GotIn}{xl}{n}}
\begin{document}
\begin{tikzpicture}[remember picture,x=1cm,y=1cm, every node/.style={transform shape},scale=0.67mm]
\node[minimum height=6cm, minimum width=15cm]{};
\draw[black,line width=2,xshift=-91,rotate=190,yshift=-2]
l-system
[l-system={
rule set={X -> X+YF+,Y->-FX-Y},
axiom=FX,
angle=\dangle,
order=8,
step=5
}
];
\node[draw,xshift=-37.4,yshift=14, regular polygon, regular polygon sides=17,minimum width=45,line width=2,label=center:\fontsize{22}{22}\selectfont$\Xi$,
label=above:\fontsize{18}{18}\tgothfamily\bfseries\selectfont{REGALIS},
label=below:\fontsize{22}{22}\tgothfamily\bfseries\selectfont{LUDORUM}]{};
\draw[black, line width=2,xshift=16,rotate=-10,yshift=2]
l-system
[l-system={
rule set={X -> X-YF+,Y->-FX+Y},
axiom=FX,
angle=\dangle,
order=8,
step=5
}
];
\end{tikzpicture}
\end{document}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment