Ich möchte den Graphen linksbündig haben, aber bei meinem Beispiel ist die Bildunterschrift mittig. Mit raggedright habe ich sie zwar schon ein wenig nach links bekommen, aber noch nicht genug. Wie bekomme ich auch noch die unterschrift mittig nach links? Open in Online-Editor
\documentclass{scrartcl} \usepackage{tikz,pgfplots} \usepackage{caption} \pgfplotsset{width=8cm,height=6cm} \begin{document} \begin{tikzpicture} \begin{axis}[ axis x line=middle, axis y line=middle, xlabel={$t$}, ylabel={$v$}, x=0.1cm, y=1cm, grid =major, xtick={0,10,...,70}, ytick={-100,-99,...,100}, xmin=0, xmax=75, ymin=-2.5, ymax=3.5, scale = 1 ] \end{axis} \end{tikzpicture} \captionsetup{justification=raggedright, singlelinecheck=false, width=0.4\linewidth} \captionof{figure}{Sample picture} \label{tikz} \end{document} gefragt 18 Aug '15, 23:15 typ42 |
Gibt man beim Paket Das Paket bietet aber auch die Möglichkeit, die Ränder über Option Open in Online-Editor
\documentclass{scrartcl} \usepackage{tikz,pgfplots} \usepackage{caption} \pgfplotsset{width=8cm,height=6cm} \begin{document} \begin{tikzpicture} \begin{axis}[ axis x line=middle, axis y line=middle, xlabel={$t$}, ylabel={$v$}, x=0.1cm, y=1cm, grid =major, xtick={0,10,...,70}, ytick={-100,-99,...,100}, xmin=0, xmax=75, ymin=-2.5, ymax=3.5, scale = 1 ] \end{axis} \end{tikzpicture} \captionsetup{singlelinecheck=false,width=0.4\linewidth,margin={0pt,\fill}} \captionof{figure}{Sample picture} \label{tikz} \end{document} Im konkreten Fall würde es auch schlicht genügen, die Open in Online-Editor
\documentclass{scrartcl} \usepackage{tikz,pgfplots} \usepackage{caption} \pgfplotsset{width=8cm,height=6cm} \begin{document} \begin{tikzpicture} \begin{axis}[ axis x line=middle, axis y line=middle, xlabel={$t$}, ylabel={$v$}, x=0.1cm, y=1cm, grid =major, xtick={0,10,...,70}, ytick={-100,-99,...,100}, xmin=0, xmax=75, ymin=-2.5, ymax=3.5, scale = 1 ] \end{axis} \end{tikzpicture} \captionsetup{singlelinecheck=false} \captionof{figure}{Sample picture} \label{tikz} \end{document} Da Ich vermute allerdings, dass Du eigentlich möchtest, dass die Bildunterschrift auf die Breite der Abbildung beschränkt wird. Das geht sehr einfach mit dem Paket Open in Online-Editor
\documentclass[captions=nooneline]{scrartcl} \usepackage{tikz,pgfplots} \usepackage{threeparttable} \pgfplotsset{width=8cm,height=6cm} \begin{document} \begin{measuredfigure} \begin{tikzpicture} \begin{axis}[ axis x line=middle, axis y line=middle, xlabel={$t$}, ylabel={$v$}, x=0.1cm, y=1cm, grid =major, xtick={0,10,...,70}, ytick={-100,-99,...,100}, xmin=0, xmax=75, ymin=-2.5, ymax=3.5 ] \end{axis} \end{tikzpicture} \captionof{figure}{Sample picture} \label{tikz} \end{measuredfigure} \end{document} Zu Demonstrationszwecken habe ich dabei außerdem auf das Paket Bei schmalen Abbildungen wie dieser bietet sich außerdem die Verwendung von beantwortet 19 Aug '15, 08:24 saputello |