summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/scripts/arara/rules/bibtex.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/scripts/arara/rules/bibtex.yaml')
-rw-r--r--Master/texmf-dist/scripts/arara/rules/bibtex.yaml30
1 files changed, 24 insertions, 6 deletions
diff --git a/Master/texmf-dist/scripts/arara/rules/bibtex.yaml b/Master/texmf-dist/scripts/arara/rules/bibtex.yaml
index 055b60d47ea..5cbe5c17562 100644
--- a/Master/texmf-dist/scripts/arara/rules/bibtex.yaml
+++ b/Master/texmf-dist/scripts/arara/rules/bibtex.yaml
@@ -1,10 +1,28 @@
!config
-# BibTeX rule for arara
-# author: Marco Daniel
-# requires arara 3.0+
+# Arara, the cool TeX automation tool
+# Copyright (c) 2018, Paulo Roberto Massa Cereda
+# All rights reserved.
+#
+# This rule is part of arara.
identifier: bibtex
name: BibTeX
-command: <arara> bibtex @{options} "@{getBasename(file)}.aux"
-arguments:
+authors:
+- Marco Daniel
+- Paulo Cereda
+commands:
+- name: The BibTeX reference management software
+ command: >
+ @{
+ return getCommand('bibtex', options, getBasename(file))
+ }
+arguments:
- identifier: options
- flag: <arara> @{parameters.options}
+ flag: >
+ @{
+ if (isList(parameters.options)) {
+ return parameters.options;
+ }
+ else {
+ throwError('I was expecting a list of options.');
+ }
+ }