回答:
3つの異なるファイルが必要な場合は、最初の行(またはutf8が必要な場合は2番目)のコメントを使用できます。子の1つからメインTeXファイルをコンパイルするために使用します。
%!../main_file.tex
\documentclass[12pt,a4paper]{scrartcl}
\usepackage[czech,english]{babel}
最初の行を確認するスクリプトがあります。
match=`head -n1 $1 | grep %!`
if [[ $match ]]
then
# do stuff with the parent's name, which is ${match:2:100}
else
# no match :/
fi
そして、私のカスタムスクリプトを目的とした単純なビルドファイル:
{
"cmd": ["/path/to/build/script.sh", "$file"],
"selector": "whatever"
}
このようにして、ファイルに必要なだけの「参照」を含めることができます。の値を切り替えるだけですhead -n1
。
最後に、私のXeLaTeXビルドスクリプトを紹介します;)
#!/bin/bash
file="$1"
flag="-halt-on-error"
match=`head -n1 $file | grep %!`
if [[ $match ]]
then
if [ ${match:2:3} = ../ ]
then
cd .. &&
target=${match:5:100}
else
target=${match:2:100}
fi
else
target=$file
fi
rubber -c 'set arguments -shell-escape' -f -m xelatex -W all $target
exit 0