Source -- http://craftcms.stackexchange.com/a/6996
Untested, but you should be able to do this by using the merge filter in Twig to join the two results together.
Get the top level 'landing page' for this section:
{% set landingPage = entry.getAncestors().level(1) %}
Get the descendants for this section:
{% set childPages = entry.getAncestors().level(1).getDescendants() %}
Merge the two results together:
{% set sectionPages = [ landingPage ]|merge(childPages) %}
Now create the navigation for the section using the sectionPages variable:
<nav>
<ul>
{% nav page in sectionPages %}
<li>
{{ page.getLink() }}
{% ifchildren %}
<ul>
{% children %}
</ul>
{% endifchildren %}
</li>
{% endnav %}
</ul>
</nav>