Hi,

ich erstelle gerade eine Präsentation.
Dabei möchte ich auf einer Folie unten in einer reihe 7 Bilder.
Nach meinem Verständnis müsste ich jedes mal die gleiche y Position nehmen und jeweils die x position ändern. Mir verschiebt es jedoch jedes mal beide Positionen. die BIlder tauchen also nicht in einer horizontalen reihe auf, sondern in einer linie die schräg nach rechts unten geht.

Code:
\documentclass{beamer}
%\documentclass[hyperref={pdfpagelabels=false}]{beamer}
\usepackage{lmodern}%{ngerman}
\title{Postnationale Ansätze als Lösung für das Unlösbare}   
\author{David Hofmann} 
\date{15.01.2013} 
%\usepackage{beamerthemesplit} % kam neu dazu
% Alternativ kann man auch das Usetheme Warsaw nutzen

\usetheme{PaloAlto}

\useinnertheme{default}
\usepackage{tikz}
\usepackage{lipsum} % <= to insert dummy text
\usepackage[absolute,overlay]{textpos}

%\usepackage{fontspec}
\usepackage{pgf}
\linespread{1.5}

\setbeamertemplate{footline}[frame number]



\end{frame} 

\begin{frame}
	\begin{tikzpicture}
		 \node at (current page.south west) {%
			\begin{tikzpicture}[overlay]%
				\node[anchor=west,xshift=0cm,yshift=-2.5cm] {\includegraphics[width=0.15\textwidth]{bilder/saeulenpal.jpg}};%
			\end{tikzpicture}%
		};%
	\end{tikzpicture}

	\begin{tikzpicture}
		 \node at (current page.south west) {%
			\begin{tikzpicture}[overlay]%
				\node[anchor=west,xshift=2cm,yshift=-2.5cm] {\includegraphics[width=0.15\textwidth]{bilder/saeulenpal.jpg}};%
			\end{tikzpicture}%
		};%
	\end{tikzpicture}

	\begin{tikzpicture}
		 \node at (current page.south west) {%
			\begin{tikzpicture}[overlay]%
				\node[anchor=west,xshift=4cm,yshift=-2.5cm] {\includegraphics[width=0.15\textwidth]{bilder/saeulenpal.jpg}};%
			\end{tikzpicture}%
		};%
	\end{tikzpicture}

	\begin{tikzpicture}
		 \node at (current page.south west) {%
			\begin{tikzpicture}[overlay]%
				\node[anchor=west,xshift=6cm,yshift=-2.5cm] {\includegraphics[width=0.15\textwidth]{bilder/saeulenpal.jpg}};%
			\end{tikzpicture}%
		};%
	\end{tikzpicture}

	\begin{tikzpicture}
		 \node at (current page.south west) {%
			\begin{tikzpicture}[overlay]%
				\node[anchor=west,xshift=8cm,yshift=-2.5cm] {\includegraphics[width=0.15\textwidth]{bilder/saeulenpal.jpg}};%
			\end{tikzpicture}%
		};%
	\end{tikzpicture}

	\begin{tikzpicture}
		 \node at (current page.south west) {%
			\begin{tikzpicture}[overlay]%
				\node[anchor=west,xshift=10cm,yshift=-2.5cm] {\includegraphics[width=0.15\textwidth]{bilder/saeulenpal.jpg}};%
			\end{tikzpicture}%
		};%
	\end{tikzpicture}


	\begin{tikzpicture}
		 \node at (current page.south west) {%
			\begin{tikzpicture}[overlay]%
				\node[anchor=west,xshift=12cm,yshift=-2.5cm] {\includegraphics[width=0.15\textwidth]{bilder/saeulenpal.jpg}};%
			\end{tikzpicture}%
		};%
	\end{tikzpicture}

	\begin{tikzpicture}
		 \node at (current page.south west) {%
			\begin{tikzpicture}[overlay]%
				\node[anchor=west,xshift=14cm,yshift=-2.5cm] {\includegraphics[width=0.15\textwidth]{bilder/saeulenpal.jpg}};%
			\end{tikzpicture}%
		};%
	\end{tikzpicture}
	
	
\end{frame}
\end{document}
Wo liegt mein Fehler?