We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
今のtexstyleパラメータは文字列配列をとる(単一文字列でも一度配列化している)ようになっており、各要素がstyファイル名と見なされてそのまま\usepackageに展開される仕組み。
styファイルにはオプションを付けることができるが、現状の実装のままだと\usepackage{[bar]foo}のような誤り文になってしまう。
\usepackage{[bar]foo}
texstyle: ["[bar]foo", "foo2"]
[]
texstyle: [{name: "foo", option: "bar"}, {name: "foo2"}]
課題
The text was updated successfully, but these errors were encountered:
継承で汚くなりそうなのと、オプションはreview-jsbook.clsで吸収するほうが妥当そうということでcloseします。
Sorry, something went wrong.
No branches or pull requests
今のtexstyleパラメータは文字列配列をとる(単一文字列でも一度配列化している)ようになっており、各要素がstyファイル名と見なされてそのまま\usepackageに展開される仕組み。
styファイルにはオプションを付けることができるが、現状の実装のままだと
\usepackage{[bar]foo}
のような誤り文になってしまう。texstyle: ["[bar]foo", "foo2"]
見た目がキモい、[]
の分離パースが必要texstyle: [{name: "foo", option: "bar"}, {name: "foo2"}]
Hashの記法を導入。でもこちらのほうが実装しやすく、記述も間違いづらいか課題
The text was updated successfully, but these errors were encountered: