More "doxygenish" syntax.
authorladanyi
Tue, 01 Aug 2006 10:26:15 +0000
changeset 2166c67e8b928a95
parent 2165 947d36fb3b49
child 2167 7e109b222053
More "doxygenish" syntax.
doc/tutorial.dox
     1.1 --- a/doc/tutorial.dox	Thu Jul 27 11:49:15 2006 +0000
     1.2 +++ b/doc/tutorial.dox	Tue Aug 01 10:26:15 2006 +0000
     1.3 @@ -1,79 +1,67 @@
     1.4  /**
     1.5  \page Tutorial LEMON Tutorial
     1.6  
     1.7 -<H2>Table of Contents</H2>
     1.8 +\section toc Table of Contents
     1.9  
    1.10 -<OL>
    1.11 -  <LI><A href="#intro">Introduction</A>
    1.12 -  <LI><A href="#get_start">Getting Started</A>
    1.13 -  <UL>
    1.14 -    <LI><A href="#hello_world">Hello World in LEMON</A>
    1.15 -    <LI><A href="#compile">Compiling Hello World</A>
    1.16 -  </UL>
    1.17 -  <LI><A href="#basic">Basic concepts</A>
    1.18 -  <UL>
    1.19 -    <LI><A href="#list_graph">ListGraph - a versatile directed graph</A>
    1.20 -    <LI><A href="#maps1">Maps I.</A>
    1.21 -  </UL>
    1.22 -  <LI><A href="#file">Lemon Graph File Format</A>
    1.23 -  <LI><A href="#algos">Algorithms</A>
    1.24 -  <UL>
    1.25 -    <LI><A href="#bfs_dfs">Bfs/Dfs</A>
    1.26 -    <LI><A href="#dijkstra">Dijkstra</A>
    1.27 -    <LI><A href="#kruskal">Kruskal</A>
    1.28 -  </UL>
    1.29 -  <LI><A href="#maps2">Maps II.</A>
    1.30 -  <UL>
    1.31 -    <LI><A href="#custom_maps">Writing Custom ReadMap</A>
    1.32 -    <LI><A href="#map_adaptors">Map Adaptors</A>
    1.33 -    <LI><A href="#spec_maps">Special Purpose Maps</A>
    1.34 -  </UL>
    1.35 -  <LI><A href="#show">Show a graph</A>
    1.36 -  <LI><A href="#misc">Miscellaneous Tool</A>
    1.37 -  <UL>
    1.38 -    <LI><A href="#lp">LP solver</A>
    1.39 -    <LI><A href="#simann">Simulated Annealing</A>
    1.40 -  </UL>
    1.41 -</OL>
    1.42 +-# \ref intro
    1.43 +-# \ref get_start
    1.44 +  - \ref hello_world
    1.45 +  - \ref compile
    1.46 +-# \ref basic
    1.47 +  - \ref list_graph
    1.48 +  - \ref maps1
    1.49 +-# \ref file
    1.50 +-# \ref algos
    1.51 +  - \ref bfs_dfs
    1.52 +  - \ref dijkstra
    1.53 +  - \ref kruskal
    1.54 +-# \ref maps2
    1.55 +  - \ref custom_maps
    1.56 +  - \ref map_adaptors
    1.57 +  - \ref spec_maps
    1.58 +-# \ref show
    1.59 +-# \ref misc
    1.60 +  - \ref lp
    1.61 +  - \ref simann
    1.62  
    1.63 -<H2 id="intro">Introduction</H2>
    1.64 +\section intro Introduction
    1.65  
    1.66 -<H2 id="get_start">Getting Started</H2>
    1.67 +\section get_start Getting Started
    1.68  
    1.69 -  <H3 id="hello_world">Hello World in LEMON</H3>
    1.70 +  \subsection hello_world Hello World in LEMON
    1.71  
    1.72 -  <H3 id="compile">Compiling Hello World</H3>
    1.73 +  \subsection compile Compiling Hello World
    1.74  
    1.75 -<H2 id="basic">Basic concepts</H2>
    1.76 +\section basic Basic concepts
    1.77  
    1.78 -  <H3 id="list_graph">ListGraph - a versatile directed graph</H3>
    1.79 +  \subsection list_graph ListGraph - a versatile directed graph
    1.80  
    1.81 -  <H3 id="maps1">Maps I.</H3>
    1.82 +  \subsection maps1 Maps I.
    1.83  
    1.84 -<H2 id="file">Lemon Graph File Format</H2>
    1.85 +\section file Lemon Graph File Format
    1.86  
    1.87 -<H2 id="algos">Algorithms</H2>
    1.88 +\section algos Algorithms
    1.89  
    1.90 -  <H3 id="bfs_dfs">Bfs/Dfs</H3>
    1.91 +  \subsection bfs_dfs Bfs/Dfs
    1.92  
    1.93 -  <H3 id="dijkstra">Dijkstra</H3>
    1.94 +  \subsection dijkstra Dijkstra
    1.95  
    1.96 -  <H3 id="kruskal">Kruskal</H3>
    1.97 +  \subsection kruskal Kruskal
    1.98  
    1.99 -<H2 id="maps2">Maps II.</H2>
   1.100 +\section maps2 Maps II.
   1.101  
   1.102 -  <H3 id="custom_maps">Writing Custom ReadMap</H3>
   1.103 +  \subsection custom_maps Writing Custom ReadMap
   1.104  
   1.105 -  <H3 id="map_adaptors">Map Adaptors</H3>
   1.106 +  \subsection map_adaptors Map Adaptors
   1.107  
   1.108 -  <H3 id="spec_maps">Special Purpose Maps</H3>
   1.109 +  \subsection spec_maps Special Purpose Maps
   1.110  
   1.111 -<H2 id="show">Show a graph</H2>
   1.112 +\section show Show a graph
   1.113  
   1.114 -<H2 id="misc">Miscellaneous Tool</H2>
   1.115 +\section misc Miscellaneous Tool
   1.116  
   1.117 -  <H3 id="lp">LP solver</H3>
   1.118 +  \subsection lp LP solver
   1.119  
   1.120 -  <H3 id="simann">Simulated Annealing</H3>
   1.121 +  \subsection simann Simulated Annealing
   1.122  
   1.123  */