von skater » Mo 30. Jul 2012, 23:32
Ich hab da mal etwas vorbereitet. Ist zwar nicht so ganz das, was dein Beispiel zeigt, aber vielleicht hilft es (dir) ja trotzdem:
\documentclass[fontsize=12pt]{scrartcl}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[ngerman]{babel}
\usepackage{lmodern}
\usepackage{textcomp}
\usepackage[alwaysadjust]{paralist}
\usepackage{tikz}
\usetikzlibrary{arrows,shapes,backgrounds}
\typearea{calc}
\begin{document}
\tikzstyle{every picture}+=[remember picture]
\tikzstyle{na}=[baseline=-.3em]
\begin{minipage}{.2\textwidth}
\begin{itemize}
\item CPU \emph{(6510)} \tikz[na] \coordinate (cpu);
\item SID \tikz[na] \coordinate (sid);
\item VIC \tikz[na] \coordinate (vic);
\end{itemize}
\end{minipage}
\hfill
\begin{minipage}{8.15cm}
\begin{tikzpicture}
\node [inner sep=0pt,above right]{\includegraphics{motherboard.jpg}}; % 640x298 pixel, 8.13x3.78 cm
\path (3.8,3.1) coordinate (CPU)
(4.2,1.5) coordinate (SID)
(5.2,0.7) coordinate (VIC);
\end{tikzpicture}
\end{minipage}
\begin{tikzpicture}[overlay]
\path[->,red] (cpu) edge [out=0,in=90] (CPU);
\path[->,blue] (sid) edge [out=0,in=180] (SID);
\path[->,yellow] (vic) edge [out=0, in=-90] (VIC);
\end{tikzpicture}
\end{document}
- Dateianhänge
-
- pic-with-numbers.pdf
- (102.01 KiB) 393-mal heruntergeladen
-

- motherboard.jpg (69.47 KiB) 2107 mal betrachtet
-
- pic-with-numbers.tex
- (1.09 KiB) 446-mal heruntergeladen
Ich hab da mal etwas vorbereitet. Ist zwar nicht so ganz das, was dein Beispiel zeigt, aber vielleicht hilft es (dir) ja trotzdem:
[code]\documentclass[fontsize=12pt]{scrartcl}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[ngerman]{babel}
\usepackage{lmodern}
\usepackage{textcomp}
\usepackage[alwaysadjust]{paralist}
\usepackage{tikz}
\usetikzlibrary{arrows,shapes,backgrounds}
\typearea{calc}
\begin{document}
\tikzstyle{every picture}+=[remember picture]
\tikzstyle{na}=[baseline=-.3em]
\begin{minipage}{.2\textwidth}
\begin{itemize}
\item CPU \emph{(6510)} \tikz[na] \coordinate (cpu);
\item SID \tikz[na] \coordinate (sid);
\item VIC \tikz[na] \coordinate (vic);
\end{itemize}
\end{minipage}
\hfill
\begin{minipage}{8.15cm}
\begin{tikzpicture}
\node [inner sep=0pt,above right]{\includegraphics{motherboard.jpg}}; % 640x298 pixel, 8.13x3.78 cm
\path (3.8,3.1) coordinate (CPU)
(4.2,1.5) coordinate (SID)
(5.2,0.7) coordinate (VIC);
\end{tikzpicture}
\end{minipage}
\begin{tikzpicture}[overlay]
\path[->,red] (cpu) edge [out=0,in=90] (CPU);
\path[->,blue] (sid) edge [out=0,in=180] (SID);
\path[->,yellow] (vic) edge [out=0, in=-90] (VIC);
\end{tikzpicture}
\end{document}[/code]