I adapted the example in the tikz manual (48.5: Arbitrary Markings):
\documentclass{article}
\usepackage{polyglossia}
\setdefaultlanguage{english}
\usepackage{tikz}
\usetikzlibrary{decorations.markings}
\begin{document}
\begin{tikzpicture}[decoration = {
markings,
mark =
between positions 0 and 1 step 5mm % adjust step size here
with
{
% adjust size of plus signs here
\draw (0pt, 2pt) -- (0pt, -2pt);
\draw (-2pt, 0pt) -- (2pt, 0pt);
}
}
]
\path[decorate] (0, 0) -- (2, 0);
\end{tikzpicture}
\end{document}
With this, you get

You can adjust the step to get closer or more widely spaced plus signs.
As pointed out in the comments, the two drawing commands can be replaced by a simple \node{+};, which could be simpler.
withby a simplewith {\node{+};}– JLDiaz Jan 25 '17 at 10:25