Annotation of rpl/src/tex.h, revision 1.1

1.1     ! bertrand    1: /*
        !             2: ================================================================================
        !             3:   RPL/2 (R) version 4.0.9
        !             4:   Copyright (C) 1989-2010 Dr. BERTRAND Joël
        !             5: 
        !             6:   This file is part of RPL/2.
        !             7: 
        !             8:   RPL/2 is free software; you can redistribute it and/or modify it
        !             9:   under the terms of the CeCILL V2 License as published by the french
        !            10:   CEA, CNRS and INRIA.
        !            11:  
        !            12:   RPL/2 is distributed in the hope that it will be useful, but WITHOUT
        !            13:   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
        !            14:   FITNESS FOR A PARTICULAR PURPOSE.  See the CeCILL V2 License
        !            15:   for more details.
        !            16:  
        !            17:   You should have received a copy of the CeCILL License
        !            18:   along with RPL/2. If not, write to info@cecill.info.
        !            19: ================================================================================
        !            20: */
        !            21: 
        !            22: 
        !            23: #ifndef INCLUSION_TEX
        !            24: #define INCLUSION_TEX
        !            25: 
        !            26: #define ds_tex_commande            "%s/bin/rpliconv " \
        !            27:                                "`%s/bin/rplfile -m %s/share/rplfiles " \
        !            28:                                " -i %s | awk '{ print $3; }' " \
        !            29:                                "| awk -F= '{ if ($2 != \"\") " \
        !            30:                                "printf(\"-f %%s\", $2); }'` -t utf8 %s " \
        !            31:                                "> %s 2> /dev/null; " \
        !            32:                                "(cd %s; echo x | latex %s 1> /dev/null " \
        !            33:                                "2> /dev/null); "\
        !            34:                                "dvips %s -o %s 1> /dev/null 2> /dev/null"
        !            35: #define ds_tex_postscript      "gv %s"
        !            36: 
        !            37: #define ds_tex_classe_document "article"
        !            38: #define ds_tex_taille_corps        "10pt"
        !            39: #define ds_tex_encodage_1      "T1"
        !            40: #define ds_tex_encodage_2      "utf8"
        !            41: #define ds_tex_langue          "frenchb"
        !            42: #define ds_tex_style           "plain"
        !            43: 
        !            44: #define ds_tex_separateur      '/'
        !            45: 
        !            46: #endif
        !            47: 
        !            48: // vim: ts=4

CVSweb interface <joel.bertrand@systella.fr>