1 package SQL::Translator::Producer::Latex;
3 # -------------------------------------------------------------------
4 # $Id: Latex.pm,v 1.1 2006-03-21 20:07:21 cmungall Exp $
5 # -------------------------------------------------------------------
6 # Copyright (C) 2002-6 SQLFairy Authors
8 # This program is free software; you can redistribute it and/or
9 # modify it under the terms of the GNU General Public License as
10 # published by the Free Software Foundation; version 2.
12 # This program is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 # General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with this program; if not, write to the Free Software
19 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
21 # -------------------------------------------------------------------
27 SQL::Translator::Producer::Latex -
28 Produces latex formatted tables ready for import from schema.
33 my $translator = SQL::Translator->new(
35 filename => 'foo_schema.sql',
38 print $translator->translate;
42 Currently you will get one class (with the a table
43 stereotype) generated per table in the schema. The fields are added as
44 attributes of the classes and their datatypes set. It doesn't currently set any
45 of the relationships. It doesn't do any layout, all the classses are in one big
46 stack. However it is still useful as you can use the layout tools in Dia to
47 automatically arrange them horizontally or vertically.
57 # -------------------------------------------------------------------
61 use vars qw[ $DEBUG $VERSION @EXPORT_OK ];
62 $VERSION = sprintf "%d.%02d", q$Revision: 1.1 $ =~ /(\d+)\.(\d+)/;
63 $DEBUG = 0 unless defined $DEBUG;
65 use SQL::Translator::Utils 'debug';
68 my $translator = shift;
69 my $schema = $translator->schema;
71 for my $table ( $schema->get_tables ) {
72 my $table_name = $table->name or next;
73 my $n = latex($table_name);
83 \begin{tabular}{l l p{8cm}}
84 Column & Datatype & Description \\\\ \hline
86 $n, latex($table->comments), $n, $table_name;
88 foreach my $f ($table->get_fields) {
89 $o .= sprintf '%s & %s & %s \\\\', map {latex($_)} ($f->name, $f->data_type, $f->comments || '');
104 return '' unless defined $s;
105 $s =~ s/([\&\_\$\{\#])/\\$1/g;
111 # -------------------------------------------------------------------