I am using forest to construct trees. I have one (minor but persistent) issue: sometimes I would like to place a node at a point that is a proper part of (e.g.) a leaf, in particular so that I can draw movement arrows targeting proper parts of nodes. Here is an example of what I'm after:

One low-tech option is to simply name the entire node (here, John see x) and then tweak the arrow's origin on a case-by-case basis (which is how I made the tree above). But that's pretty annoying to do multiple times in a single document, or (gasp) if the tree's layout ever needs to change substantially.
User cfr defined a nice workaround here. However, it is not obvious to me how to turn this into a general solution:
For example, this solution only allows for one such sub-part to be targeted. It's straightforward enough to modify cfr's code to handle e.g. the case where there are two adjacent sub-parts, but in the general case, the regions of interest may be non-adjacent, or there may be more than two.
In addition, the linked solution makes use of a "global" length
\sourcetextaddwidth, which prevents one from reusing the code multiple times in a single document without repeated manual adjustments.Finally (most importantly for me), one may wish to shape the arrow in certain ways, but the linked approach locates the arrow drawing inside the
movestyle/"macro", which doesn't allow for this. Again, achieving the desired effect requires repeated manual adjustments.
What I think would be preferable is a reusable macro/forest style that allows one to create a tikz node at a sub-part of a forest tree node. Then, one can simply use those nodes to draw movement arrows (or whatever) in the usual way. I am not sure whether this is possible, but if it is, it's certainly beyond my pay grade.
Edited to add a MWE with a simple tree for folks to play around with (no arrows, per the nature of the question). The hope is to have an arrow relating the two occurrences of B:
\documentclass{article}
\usepackage{forest}
\begin{document}
\begin{forest}
[A
[B]
[C
[D]
[E B F]
]
]
\end{forest}
\end{document}


pdflatexers in our midst. – SEC Jul 15 '15 at 16:35