We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 55d52a3 + 9c401a0 commit 836b45dCopy full SHA for 836b45d
latexmkrc
@@ -0,0 +1,12 @@
1
+# Set the root LaTeX file
2
+$root_file = 'root.tex';
3
+
4
+# Set the build directory
5
+$out_dir = './build';
6
7
+# Create the build directory if it doesn't exist
8
+system("mkdir -p $out_dir") unless -d $out_dir;
9
10
+# Additional latexmk options
11
+$pdf_mode = 1; # Generate PDF output
12
+$pdflatex = 'pdflatex -interaction=nonstopmode -output-directory=' . $out_dir; # Set pdflatex command with output directory
0 commit comments