public enum LatexDev extends Enum<LatexDev>
pdf and dvips
the latter representing dvi
but html and odt are also desirable.
The backend also affects the natural graphic formats:
Whereas for the backend pdf,
also pdf is used,
dvips uses postscript-based formats.
Created: Tue Oct 18 10:06:30 2016| Modifier and Type | Method and Description |
|---|---|
(package private) static LatexDev |
devViaDvi(boolean pdfViaDvi) |
(package private) abstract String |
getGnuplotInTexLanguage()
Returns the name of the language
used by the
Settings.getGnuplotCommand()
to specify graphic without text of a gnuplot-picture. |
(package private) abstract String |
getGraphicsInTexSuffix()
Returns the suffix of the file to be
embedded with
\includegraphics in latex-code
representing all but text. |
(package private) abstract String |
getLatexOutputFormat()
Returns the name of the target language
latex2dev uses
to convert the latex files into. |
(package private) abstract String |
getSvgExportOption()
Returns the export option
used by the command
Settings.getSvg2devCommand()
which determines the export format. |
(package private) abstract String |
getXFigInTexLanguage()
Returns the name of the language
used by the
Settings.getFig2devCommand()
to specify graphic without ``special'' text of an xfig-picture. |
(package private) abstract boolean |
isViaDvi() |
(package private) abstract File |
latexTargetFile(LatexProcessor.LatexMainDesc desc)
Returns the target file of a LaTeX run.
|
static LatexDev |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LatexDev[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static LatexDev[] values()
for (LatexDev c : LatexDev.values()) System.out.println(c);
public static LatexDev valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullabstract String getXFigInTexLanguage()
Settings.getFig2devCommand()
to specify graphic without ``special'' text of an xfig-picture.
The converse is specified
by LatexPreProcessor.XFIG_TEX_LANGUAGE.
In fact, a file of that format is created which is
embedded with \includegraphics in latex-code
representing text.abstract String getGnuplotInTexLanguage()
Settings.getGnuplotCommand()
to specify graphic without text of a gnuplot-picture.
In fact, there is a file of that format
embedded with \includegraphics in latex-code
representing text.abstract String getSvgExportOption()
Settings.getSvg2devCommand()
which determines the export format.
In fact, there is a file of that format
to be embedded with \includegraphics in latex-code.abstract String getGraphicsInTexSuffix()
\includegraphics in latex-code
representing all but text.
This is used for processing fig-files and for processing svg-files
in LatexPreProcessor.runFig2DevInTex(File, LatexDev) and
in LatexPreProcessor.runSvg2Dev(File, LatexDev, boolean),
whereas for conversion of gnuplot-files,
this suffix is set automatically.
Note also that this is used to clear the created files
in all three cases.abstract String getLatexOutputFormat()
latex2dev uses
to convert the latex files into.
This is set via option -output-format=.abstract boolean isViaDvi()
abstract File latexTargetFile(LatexProcessor.LatexMainDesc desc)
getLatexOutputFormat().static LatexDev devViaDvi(boolean pdfViaDvi)
Copyright © 2016–2018 Simuline Organization (l2r). All rights reserved.