You should use svn:externals as external references from different repositories. So svn:externals should refer to components, modules, 3rd party tools, etc.
You should not use svn:externals to emulate a "symbolic link"-behaviour by using externals to point into the same repository.
You can solve such issues most of the time by modifying your build-structure, or use checkout-scripts and sparse checkout feature.
svn:externals have a lot of problems most of them are difficult to see, track and repair: see an example here
- commits cannot span over externals(no atomic commits)
- branches will not branch their externals(as you pointed out)
- tags will not "freeze" their externals so latter builds may result in different/broken builds
- merging and reeintegrate merge will not work on externals
If you use externals to point to other repositories, you will most of the time do not have these problems.
