Skip to content

Instantly share code, notes, and snippets.

@Liam0205
Created September 15, 2017 02:42
Show Gist options
  • Save Liam0205/87689ad4b7e87bdda4379f803fc4857b to your computer and use it in GitHub Desktop.
Save Liam0205/87689ad4b7e87bdda4379f803fc4857b to your computer and use it in GitHub Desktop.
\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{decorations.pathmorphing, decorations.text}
\begin{document}
\begin{tikzpicture}
\path decorate [decoration={text along path,
text={some text along a path}}]{ (0,2) .. controls (2,2) and (1,0) .. (3,0) };
\draw (0,2) .. controls (2,2) and (1,0) .. (3,0);
\end{tikzpicture}
\end{document}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment