Neben Tabelle Pfeile erstellen
> ***
> Duplikat zu: [Zelle einer Tabelle durch Pfeile außerhalb beschriften](http://texwelt.de/wissen/fragen/13148/)
> ***
\documentclass[10pt,a4paper]{book}
\usepackage[utf8]{inputenc}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{tikz}
\usetikzlibrary{
quotes,
angles,
babel,
tikzmark,
calc,
positioning,
3d,
intersections,
shapes,
}
\usepackage{graphicx}
\begin{document}
\begin{table}[h]
\centering
\begin{tikzpicture}[
remember picture,
erkl/.style={text width=#1,align=left},
erkl/.default=.5\linewidth,% voreingestellt ist halbe Zeilenlänge
pfeil/.style={thick,-stealth},
]
\node(tabzelle){
\begin{tabular}{|c|c|c|c|c|c|c|c|c|c|c|c|}
\hline
X & A & B & C & D & E & F & G & H & I & J & K \\
\hline
15,0 & \tiny\begin{tabular}{@{}c@{}}42\\0,35\\0,05\end{tabular} & \tiny\begin{tabular}{@{}c@{}}42\\1,2\\0,05\end{tabular} & \tiny\begin{tabular}{@{}c@{}}42\\3,1\\0,05\end{tabular} &\tiny \begin{tabular}{@{}c@{}}42\\1,2\\0,05\end{tabular} & \tiny\begin{tabular}{@{}c@{}}42\\3,1\\0,05 \end{tabular} & \tiny\begin{tabular}{@{}c@{}}42\\6,1\\0,05\end{tabular} & \tiny\begin{tabular}{@{}c@{}}42\\7,6\\0,05\end{tabular} \tiny\begin{tabular} {@{}c@{}}42\\7,6\\0,05\end{tabular} & \tiny\begin{tabular}{@{}c@{}}42\\9,1\\0,05\end{tabular} & \tiny\begin{tabular}{@{}c@{}}42\\9,4\\0,05\end{tabular} & \tiny\begin{tabular}{@{}c@{}}42\\8,7\\0,05\end{tabular} \tiny\begin{tabular}{@{}c@{}}42 \\8,7\\0,05\end{tabular} & \tiny\begin{tabular}{@{}c@{}}42\\5,0\\0,05\end{tabular} & \tiny\begin{tabular}{@{}c@{}}42\\1,9\\0,05\end{tabular} & \tiny\begin{tabular}{@{}c@{}}42\\0,16\\0,05\end{tabular} \tiny\begin{tabular}{@{}c@{}} \subnode{r1}{42}\\\subnode{r2}{0,16}\\\subnode{r3}{0,05}\end{tabular}\\
\hline
10,0 & \tiny\begin{tabular}{@{}c@{}}42\\0,36\\0,05\end{tabular} & & & & \tiny\begin{tabular}{@{}c@{}}42\\11\\0,8\end{tabular} & \tiny\begin{tabular}{@{}c@{}}42\\13\\0,8 \end{tabular} & \tiny\begin{tabular}{@{}c@{}}42\\13\\0,8\end{tabular} & & & & \tiny\begin{tabular}{@{}c@{}}42\\0,17\\0,05\end{tabular} \\
\hline
\end{tabular}
};
\node(erkl_r)[erkl,right=of tabzelle]
{{\tiny Maximalwert}};
\path[pfeil=\tabcolsep](erkl_r.west|-r1)edge(r1-|tabzelle.east);
\node(erkl_r)[erkl,right=of tabzelle]
{{\tiny erreichter Wert}};
\path[pfeil=\tabcolsep](erkl_r.west|-r2)edge(r2-|tabzelle.east);
\node(erkl_r)[erkl,right=of tabzelle]
{{\tiny Minimalwert}};
\path[pfeil=\tabcolsep](erkl_r.west|-r3)edge(r3-|tabzelle.east);
\end{tikzpicture}
\end{table}
\end{document}
Hallo nochmals,
Ich würde gerne in die 2 Zeile neben die 42, neben die 0,16 und neben die 0,05 einen Pfeil zeichnen.
Dabei soll die Pfeilspitze jeweils auf die Zeile zeigen.
Sprich
42,0 <--asdf
0,16 <---jklö
0,05 <--- xyz
Kann Wieso positioniert er mir hier jemand helfen? Ich weiß, dass dies iwie mit TikZ gehen muss, doch wie genau, weiß ich leider nicht.
den Text in der Mitte der Tabelle?
Des Weiteren soll die Tabelle zentriert auf der Seite bleiben - falls sich dies nciht vermeiden lässt, auch nicht schlimm.
Gruß!