1. with Ada.Strings.Unbounded; use Ada.Strings.Unbounded; 
  2. with HTML;                  use HTML; 
  3. package LaTex is 
  4.  
  5.    subtype Line_Type is HTML.Line_Type; 
  6.    function Table 
  7.      (Parameter : Unbounded_String := To_Unbounded_String ("{c|c|c}"); 
  8.       Lines     : Unbounded_String := Null_Unbounded_String) return Unbounded_String; 
  9.    function Line (Item_List : Line_Type; First_Line : Boolean := False) return Unbounded_String; 
  10.    function Table (Matrix : String_Matrix_Type; Head_Line : Boolean := False; Formular_Elements : Boolean := true) return Unbounded_String; 
  11.  
  12.    function Table_Short_Form (Matrix : String_Matrix_Type) return Unbounded_String; 
  13.  
  14. end LaTex;