net.elehack.gradle.science.LaTeXExtension.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle-science Show documentation
Show all versions of gradle-science Show documentation
Gradle tasks for scientific publication.
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
}
}