xetex:tldr:49a3e
This command is used to run XeTeX, a typesetting engine, with specified output directory and source file.
Here is the breakdown of the command:
-
xetex
: This is the command used to invoke the XeTeX engine. -
-output-directory=${path-to-directory}
: This flag specifies the directory where the output files should be placed.${path-to-directory}
should be replaced with the desired path to the directory where you want the output files to be generated. For example, if you want the output files to be placed in a directory named "output" located in the current directory, you can replace${path-to-directory}
with./output
. -
${source-tex}
: This represents the source .tex file that you want XeTeX to process.${source-tex}
should be replaced with the actual filename of your source .tex file. For example, if your source file is named "document.tex", you would replace${source-tex}
withdocument.tex
.
By using this command, XeTeX will process the specified source .tex file and generate the output files (such as .pdf, .log, etc.) in the specified output directory.