Putting a nil node is not tricky but rather good maths. Adding manually some space would be ugly.
In pstree you manipulate (ordered) n-ary trees so there is no notion of left or right child node. You can only give a list of child nodes (ordered).
Think of how you will implement binary trees (t := () | (t, t)) with ordered n-ary trees (t := list of trees). The two following binary trees are different.
* *
/ != \
* *
While they are equal as n-ary trees. You need to explicitly encode the skip of the left child node to simulate that in n-ary trees.
The pstree creators proposed you a distinguished \Tn
node (nil node) for that purpose.
\pstree{\TR{a}}{
\Tn
\TR{b}
}
Just like when a missing information is an information.
Some marginal improvements can be achieved by setting the width of all the boxes, as I have done below. However, this particular choice of tree-structure (even for an organization chart is difficult to accomodate on an A3 or A4 paper). Imagine the grandchildren spaced horizontally and we are in trouble if we need to grow the tree one further level.

A better approach is to draw such charts as a directory tree. These type of grids are more economical in terms of horizontal spacing. Here is an example drawn using dirtree
.

Since the figure mostly consist of text, the using of boxing is extraneous in the example above, however the dirtree
can easily be extended to hold tikz nodes rather than text.
Another advantage of the above is that in the particular example I have shown in the illustration information was captured in a more intuitive and semantic way,
.6 \addCADMech{\hl{Dhanish Chandran}}.
.6 \addCADMech{\hl{Sogy George}}.
.6 \addCADMech{\hl{Jhonas Marquez}}.
.6 \addCADMech{\hl{Prasad Balakrishnan}}.
This also permitted automatic recalculation of totals and the production of a summary table. This is perhaps not a full answer, but you are asking to produce a layout which will break in most circumstances. The proper solution is to produce a dirtree
type solution either with dirtree
or with TikZ following such a pattern.
The MWE would produce the image above.
\documentclass{minimal}
\usepackage{xcolor}
\usepackage{tikz}
\usetikzlibrary{trees}
\def\name#1{\hbox to 50pt{#1\rule{10pt}{0pt}}}
\begin{document}
\begin{tikzpicture}[
man/.style={rectangle,draw,fill=gray!30},
woman/.style={rectangle,draw,fill=gray!10},
grandchild/.style={grow=down,xshift=1em,anchor=west,
edge from parent path={(\tikzparentnode.south) |- (\tikzchildnode.west)}},
first/.style={level distance=6ex},
second/.style={level distance=12ex},
third/.style={level distance=18ex},
level 1/.style={sibling distance=70pt}]
% Parents
\coordinate
child[grow=left] {node[man,anchor=east]{\name{Jim}}}
child[grow=right] {node[woman,anchor=west]{\name{Jane}}}
child[grow=down,level distance=0ex]
[edge from parent fork down]
% Children and grandchildren
child{node[man] {\name{Alfred}}
child[grandchild,first] {node[man]{\name{Joe}}}
child[grandchild,second] {node[woman]{\name{Heather}}}
child[grandchild,third] {node[woman] {\name{Barbara}}}}
child{node[woman] {\name{Berta}}
child[grandchild,first] {node[man]{\name{Howard}}}}
child {node[man] {\name{Charles}}
child[grandchild,first] {node[man]{\name{Howard}}}}
child {node[woman]{\name{Doris}}
child[grandchild,first] {node[man]{\name{Nick}}}
child[grandchild,second] {node[woman]{\name{Liz}}}};
\end{tikzpicture}
\end{document}
Best Answer
tikz-qtree
is an awesome package for more convenient tree drawing intikz
.