A rectangle and a square appeared when I used the command \draw[clip], but I only need the inner square. What should I do to remove the outer rectangle? When I used \path, both rectangle and square disappeared.

\documentclass[a4paper, 11pt]{article}
\usepackage[a4paper,
tmargin=2cm,%
rmargin=2cm,%
bmargin=2cm,%
lmargin=2cm,
vscale=1,%
hscale=1]{geometry}
\usepackage{tikz}
% only used for the example
\newlength{\skiplength}
\setlength{\skiplength}{1cm}
\setlength{\parskip}{\skiplength}
\setlength{\parindent}{0pt}
\begin{document}
\centering{
A1\\
\vspace{\skiplength}
\begin{tikzpicture}[x=11.1cm, y=7.5cm]
\draw [clip=true model=individual] (0, 0) -- (1, 0) -- (1, 1) -- (0, 1) -- cycle
(2cm, 0.5cm)
[rounded corners=5pt] -- (2cm, 2.5cm)
[rounded corners=10pt] -- (4cm, 2.5cm)
[rounded corners=0.5cm] -- (4cm, 0.5cm)
[sharp corners] -- cycle;
\node[anchor=south west,%
inner sep=0,%
outer sep=0pt] (image) at (0, 0) {\includegraphics{a1_03}};
\end{tikzpicture}
}
\end{document}

[and]has been replaced by\[and\], would you mind fixing that? – Torbjørn T. Feb 24 '17 at 13:32\documentclass\[ ... \]{article}, which should be\documentclass[...]{article}, and same for all the other[and]it seems. (This happens occasionally, don't know why. I assume those backslashes are not there in your.texfile) – Torbjørn T. Feb 24 '17 at 13:46\centeringdoes not take arguments, so it should be\centering A1and not\centering{ A1– samcarter_is_at_topanswers.xyz Feb 24 '17 at 14:01\[...\]? – samcarter_is_at_topanswers.xyz Feb 24 '17 at 14:02[and], not just the first one. – Torbjørn T. Feb 24 '17 at 14:05{}button, it is highlighted as code. If you then immediately clicks the button to insert in image (without first deselecting the code), the brackets are escaped with backslashes, probably because they're used in the Markdown for inserting images. So not really a bug, just user error: always deselect the code block before you insert an image. – Torbjørn T. Feb 25 '17 at 09:38