From 275865ed49aaf567eb93f9405e4595a514483a4b Mon Sep 17 00:00:00 2001 From: Karl Berry Date: Tue, 10 Jul 2018 21:10:18 +0000 Subject: arara (10jul18) git-svn-id: svn://tug.org/texlive/trunk@48183 c570f23f-e606-0410-a88d-b1316a301751 --- Master/texmf-dist/scripts/arara/rules/bibtex.yaml | 30 ++++++++++++++++++----- 1 file changed, 24 insertions(+), 6 deletions(-) (limited to 'Master/texmf-dist/scripts/arara/rules/bibtex.yaml') 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: 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: @{parameters.options} + flag: > + @{ + if (isList(parameters.options)) { + return parameters.options; + } + else { + throwError('I was expecting a list of options.'); + } + } -- cgit v1.2.3