I am trying to draw a coordinate system with tikz on top of a picture. I am trying to re-recreate the coordinate system in the attached figure as a test, but I have a few problems
- How do I change the offset of the coordinate system so it is right at the south-west corner of the figure?
- How do I change the spacing of the x- and y-axis so that they run from a min-value to a max-value with a step I decide?
My code is the following so far. This draws the coordinate system, but now I have to move it to the corner and change the spacing and max/min values:
\documentclass[border=30pt]{standalone}
\usepackage{tikz}
\usepackage{tkz-euclide}
\begin{document}
\begin{tikzpicture}
\node[anchor=south west,inner sep=0] at (0,0) {\includegraphics[width=\textwidth]{test.jpg}};
\tkzInit[xmax=8,ymax=1,xmin=0,ymin=0]
\tkzAxeXY
\end{tikzpicture}
\end{document}


