이미지 크기에 영향을 주지 않고 컨트롤 사용

이미지 크기에 영향을 주지 않고 컨트롤 사용

나는 다음과 같은 트리를 가지고 있습니다 forest:

\documentclass{article}                          


\usepackage{forest}

\usetikzlibrary{arrows}
\tikzset{
    %Define standard arrow tip
    >=stealth'}



\begin{document}
\begin{figure}
\begin{forest}
for tree={parent anchor=south, child anchor=north,align=center,base=bottom}
[AgrP
        [Spec-AgrP,name=specagr]
        [Agr$'$
                [Agr
                        [\textit{-ait},name=ait]]
                [NegP
                        [Spec-NegP
                                [\textit{pas},name=pas]]
                        [Neg$'$
                                [Neg
                                        [\textit{ne},name=ne]]
                                [TP
                                        [Spec-TP]
                                        [T$'$
                                                [T
                                                        [\textit{-er-},name=er]]
                                                [VP
                                                        [Spec-VP
                                                                [\textit{Marie},name=marie]]
                                                        [V$'$
                                                                [V
                                                                        [\textit{parl-},name=parl]]]]]]]]]]
\draw[->,dotted] (parl.south west) .. controls +(225:1cm) and +(south:0.4cm) .. (er.south);
\draw[->,dotted] (er.south west) .. controls +(left:1cm) and +(south:0.4cm) .. (ne.south);
\draw[->,dotted] (ne.south west) .. controls +(left:1cm) and +(south:0.4cm) .. (ait.south);
\draw[->,dotted] (marie.-90) .. controls +(225:6cm) and +(250:3cm) .. (specagr.-90);
\end{forest}
\caption{\label{abb-Pollock} Pollock's Analysis of \emph{Marie ne parlerait pas}}
\end{figure}


\end{document}

편집해 보니 캡션이 사진과 멀리 떨어져 있네요. 그 이유는 컨트롤 포인트에 6cm 규격이 있기 때문입니다. 따라서 tikz이미지 크기를 결정할 때 제어점을 고려하는 것 같습니다. 이에 대해 제가 할 수 있는 일이 있나요? 6cm를 줄였지만 이로 인해 다른 곡선이 생겼습니다.

답변1

\draw환경 에 명령을 배치할 수 있습니다 pgfinterruptboundingbox.

여기에 이미지 설명을 입력하세요

\documentclass{article}                          


\usepackage{forest}

\usetikzlibrary{arrows}
\tikzset{
    %Define standard arrow tip
    >=stealth'}



\begin{document}
\begin{figure}
\centering
\begin{forest}
for tree={parent anchor=south, child anchor=north,align=center,base=bottom}
[AgrP
        [Spec-AgrP,name=specagr]
        [Agr$'$
                [Agr
                        [\textit{-ait},name=ait]]
                [NegP
                        [Spec-NegP
                                [\textit{pas},name=pas]]
                        [Neg$'$
                                [Neg
                                        [\textit{ne},name=ne]]
                                [TP
                                        [Spec-TP]
                                        [T$'$
                                                [T
                                                        [\textit{-er-},name=er]]
                                                [VP
                                                        [Spec-VP
                                                                [\textit{Marie},name=marie]]
                                                        [V$'$
                                                                [V
                                                                        [\textit{parl-},name=parl]]]]]]]]]]
\begin{pgfinterruptboundingbox}
\draw[->,dotted] (parl.south west) .. controls +(225:1cm) and +(south:0.4cm) .. (er.south);
\draw[->,dotted] (er.south west) .. controls +(left:1cm) and +(south:0.4cm) .. (ne.south);
\draw[->,dotted] (ne.south west) .. controls +(left:1cm) and +(south:0.4cm) .. (ait.south);
\draw[->,dotted] (marie.-90) .. controls +(225:6cm) and +(250:3cm) .. (specagr.-90);
\end{pgfinterruptboundingbox}
\end{forest}
\caption{\label{abb-Pollock} Pollock's Analysis of \emph{Marie ne parlerait pas}}
\end{figure}


\end{document}

관련 정보