I've made a start, using TikZ, though if I can be shown how this might be done more efficiently I would be grateful. Note that I am using XeLaTeX in TeXShop on a Mac. This is not the complete chart, and I make apologies if I have got any of the Chinese characters wrong. This is meant as a starting point.
% !TEX encoding = UTF-8 Unicode
% !TEX TS-program = XeLaTeX
\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{positioning,decorations.pathreplacing,calc}
\usepackage{fontspec}
\setmainfont{Adobe Song Std L}
\begin{document}
\begin{tikzpicture}[node distance=0.5em]
\node (main) at (0,0) {《内经》学术体系};
\node (t1) at (1in,5\baselineskip) {医学理论};
\node (t2) at (1in,-5\baselineskip) {医学基础};
\draw[decorate,decoration={brace,mirror}] (t1.west) -- (t2.west);
\node [right =of t1,yshift=7\baselineskip] (st1) {藏象};
\node [right =of t1,yshift=2\baselineskip] (st2) {疾病};
\node [right =of t1,yshift=-1.5\baselineskip] (st3) {诊法};
\node [right =of t1,yshift=-4\baselineskip] (st4) {论治};
\node [right =of t1,yshift=-6.5\baselineskip] (st5) {养生};
\draw[decorate,decoration={brace,mirror,aspect=0.525}] (st1.west) -- (st5.west);
\node [right =of st1,yshift=1.5\baselineskip] (sst1) {脏腑};
\node [right =of st1] (sst2) {经络};
\node [right =of st1,yshift=-1.5\baselineskip] (sst3) {精气神};
\node [right =of st2, yshift =1\baselineskip] (sst4){病机};
\node [right =of st2, yshift =-2.5\baselineskip] (sst5){病证};
\draw[decorate,decoration={brace,mirror}] (sst1.west) -- (sst3.west);
\node [right =of sst4, yshift=1.5\baselineskip] (ssst1) {病因};
\node [right =of sst4, yshift=0.5\baselineskip] (ssst2) {发病};
\node [right =of sst4, yshift=-0.5\baselineskip] (ssst3) {病理};
\node [right =of sst4, yshift=-1.5\baselineskip] (ssst4) {传变};
\draw[decorate,decoration={brace,mirror}] (ssst1.west) -- (ssst4.west);
\draw[decorate,decoration={brace,mirror}] (sst4.west|-ssst1) -- (sst5.west);
\end{tikzpicture}

WARNING It does take a bit of fiddling to get this to come out the way you want it to.
Some background and explanation:
This problem shows off two powerful TikZ tools:
Relative placement of nodes. The `right = of * relieves gentle user of having to calculate distances and fiddle with dimensions. (Chapter 13 of the TikZ documention.)
Using the names of the nodes is also liberating in that you do not have to note precisely where a node is -- you just refer to its name. (Chapter 16 of the TikZ documentation.) The interesting part of this was in the fourth column of characters, the second group from the top: The bracket extends above the top pair of glyphs. This was accomplished with:
\draw[decorate,decoration={brace,mirror}] (sst4.west|-ssst1) -- (sst5.west);
which starts at sst5.west and extends to the x-coordinate off sst4.west but ends at the y-coordinate of ssst1.
I approached this by treating the original as columns of characters. Each vertical group could be broken up into smaller groups, and have brackets drawn next to them.
If I can find the time, I may finish this. I think all the hard work is done...
\documentclass{...}and ending with\end{document}. – mvkorpel Jul 16 '14 at 08:31root-1-2-1. But from the red marked parts, I guess that the OP is interested only in the first level. – JLDiaz Jul 16 '14 at 09:06