All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.elehack.gradle.science.LaTeXExtension.groovy Maven / Gradle / Ivy

The newest version!
package net.elehack.gradle.science

class LaTeXExtension {
    static String DEFAULT_COMPILER = 'pdflatex'
    /**
     * The program to use to compile LaTeX.
     */
    String compiler = DEFAULT_COMPILER

    /**
     * Set the LaTeX compiler.
     * @param comp
     * @return
     */
    def compiler(String comp) {
        compiler = comp
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy