dummy content

This commit is contained in:
gws 2024-11-05 21:59:02 +01:00
parent e3fcde63d8
commit ee5145c21e
5 changed files with 918 additions and 0 deletions

5
content/blog/_index.md Normal file
View file

@ -0,0 +1,5 @@
+++
title = "Blog"
sort_by = "date"
+++

365
content/blog/entry1.md Normal file
View file

@ -0,0 +1,365 @@
+++
title = "arara version 6 released"
description = "arara version 6 released"
date = 2024-11-05
+++
After approximately one year, we are proud to announce the release of arara
version 6. Just ready for TeX Live 2021, we have finished many exciting new
features and are already prepared to work on a technically even more intriguing
version 7.
<!-- more -->
# Important changes
Please consult our [changelog](google.com) for a detailed view on all
changes and references to our issue tracker. This post which is targeted at our
users will only cover the most relevant changes.
## More configurable and default preambles
Preambles are the user's way of not writing a rule yet reusing certain
directives. Up to now, preambles have been prepended to the file regardless of
it containing other directives. That means, if you have the following in your
configuration:
```yaml
preambles:
twopdflatex: |
% arara: pdflatex
% arara: pdflatex
```
and your `file.tex` contains
```latex
% arara: lualatex
```
you might actually want to compile with `lualatex`. In version 5 and before, a
call to `arara -p twopdflatex file.tex` would result in two compilations using
`pdflatex` and one using `lualatex`.
If you do not want `arara` to perform these preamble compilations if there are
directives present in your file, you may now set the following option in your
`arararc` file:
```yaml
prependPreambleIfDirectivesGiven: false
```
The default is still `true` to preserve backward compatibility.
Another major improvement for preambles is the ability to specify a
`defaultPreamble`, i.e. you may now even omit `-p preamble` if you specified
that key in your configuration file. This is especially useful if all files in
your project shall be run with the same configuration. You may then set the
following in your `arararc`:
```yaml
preambles:
twopdflatex: |
% arara: pdflatex
% arara: pdflatex
defaultPreamble: twopdflatex
```
and can call `arara file.tex file2.tex file3.tex` where arara will automatically
run the default preamble on each of these files.
Combining those features is even more intriguing. If you insert a snippet like
```yaml
preambles:
twopdflatex: |
% arara: pdflatex
% arara: pdflatex
defaultPreamble: twopdflatex
prependPreambleIfDirectivesGiven: false
```
into your *global* arara configuration file, you can run `arara file.tex` on any
file around there and it will either
* use the directives from the file if given or
* resort to the default preamble.
That way, arara can be set as the default compiler in your editor and you can
even compile before having inserted any arara directive.
> Important note: Of course, this destroys the portability arara directives use
> to create. Please do not get lazy and specify directives in documents you want
> to share.
## Passing command-line parameters in arara's evaluation
In previous versions, the only way to communicate with arara in rules and (with
some trickery) directives were environment variables (as of version 5) and file
I/O (since the beginning). This made automated builds only configurable with
writing own rules which some users tend to avoid for simple directive patterns.
In version 6, we introduce a new command line parameter `-P` to allow specifying
command-line options to be passed to arara's session map. Calling arara like
```sh
$ arara -P key=value file.tex
```
will allow you to write the following directives in `file.tex`:
```latex
% arara: pdflatex
% arara: pdflatex if (getSession().get('arg:key') == 'value')
```
Of course this is a poor example. But you get the gist of what is now possible
using this command-line parameter. Imagine writing preambles in your
`arararc.yaml` file that perform tests like `getSession().get('arg:run') ==
'fast')` to leave certain compilations out for fast runs.
## Expansion within `options`
The new command-line parameters are one of the few commands that have been made
available within the `options` part of directives. This is especially useful to
set output names or job names like
```latex
% arara: pdflatex: { options: ["-jobname=@{getSession().get("arg:key")}"] }
```
Apart from `getSession` you may use `getBasename` and `getOriginalReference`
with their documented meanings in the `options` expansion.
## A new safe mode
For quite some time, arara has been a very powerful tool. With some of the new
changes, e.g. letting the user specify a full path anywhere on the file system
to place the log file at, the wishes for a safe mode seemed very sensible.
The new safe mode may be enabled using the command-line flags `-S` or
`--safe-run`. Currently, the following features are restricted:
* file lookup: Where arara called as `arara file` will usually try sensible
extensions, in safe mode arara only does what it is asked to do which means
only operating on files as given. It won't find `file.tex` in safe mode which
would be operated on in a normal run.
* `unsafelyExecuteSystemCommand` will raise an exception and abort the run
(although rules are still allowed to construct arbitrary commands using
a `return getCommand(…)` approach so this only disallows arbitrary system
commands that would not get logged and are thus invisible to the user)
* the `options` parameter does not expand orb tags in any directive.
## Improving safety of flags and defaults in rules
In rules, you specify `flag`s and `default`s for parameters. We changed the
handling of both. Let's start with `default`. Up to now, `default` could compute
expensive operations and in many cases duplicated lots of code from the
corresponding `flag`. Because of that, arara changed behavior and now treats the
`default` like user input. To make that more clear, let's consider the example
directive
```latex
% arara: pdflatex: {branch: stable}
```
where the `stable` branch is actually the default value. In previous versions,
you would write (in your rule)
```yaml
arguments:
- identifier: branch
flag: >
@{
return [ 'stable' : 'pdflatex', 'developer' : 'pdflatex-dev' ]
.get(parameters.branch);
}
default: 'pdflatex'
```
which expresses that you want to run the `stable` branch by default but only
because the rule author knows that if the user uses `stable` the `flag` will
return `pdflatex`.
To express the same thing in v6, i.e. to use the stable branch of this rule by
default, you would now write
```yaml
arguments:
- identifier: branch
flag: >
@{
return [ 'stable' : 'pdflatex', 'developer' : 'pdflatex-dev' ]
.get(parameters.branch);
}
default: 'stable'
```
which is very clear, even to the user who only knows the documented options of
the rule. Furthermore, it now expresses the intention. As with user input, the
`flag` will be called on the default value and determine the real value.
This change also implies that there is no orb tag expansion in the `default`
field anymore.
The other notable change for flags is the transformation into a
`List<String>`. That means for the return types of a `flag`:
* If a `flag` returns a `List`, it will be flattened and all values will be
turned into string.
* If a string is returned, a single list with only that string will be
returned.
* Other values (which are explicitly discouraged) are transformed into a
string.
Consider the argument example above: This `branch` argument actually returns a
`String`, e.g. `pdflatex`. Hence, it is part of the second category. Internally,
arara transforms this return value into `['pdflatex']`, i.e. a list with one
single element.
If you need interoperability of complex `command` or `flag` code with older
versions, use `isList(variable) ? variable[0] : variable` to get the value of
previously non-List values.
## Rule updates
Some rules have been updated or added. New rules include `ghostscript`, `copy`,
`move`, `ltx2any`, `llmk`, `spix`, `pdfcrop` and `sage`. If you encounter any
issues, please open an issue at GitLab. We are also always open to support
more tools in future versions.
> Important note on rules: Those rules included in the core distribution have
> been renamed to have a unique prefix in the texmf tree. File names should not
> be relied upon (see deprecation notice in v5).
## Being forgiving about language choices
Earlier last year, we started a poll about arara's localization and the users we
have got feedback from stated they would be good with arara being focused on the
English user interface. In version 5 we already removed the localized
command-line interface/help, even without knowing about user feedback.
For this version, we decided to let arara continue running in English if an
invalid language is specified. Previously, specifying a language like `quack`
would cause arara to end the execution which does not seem appropriate anymore.
Another related change has been the switch to IETF BCP 47 codes for language
selection. Please refer to the [changelog](google.com) for details.
## Removal of the arara shorthand
As announced, the (as of version 5.0.0) deprecated `<arara>` shorthand notation
has been removed. This is a breaking change. If your document previously used
rules with
```yaml
flag: <arara> return ['a', 'b'];
```
you will now have to write the more elaborate but much clearer
```yaml
flag: >
@{
return ['a', 'b'];
}
```
## Fixed some minor issues
In arara version 5 and even before, the exit status handling did not conform to
the documentation. We only differentiate the exit values 0, 1 and 2 as valid
exit values for arara. Prior to this fix you have gotten the exit code of the
failing command directly. For scripting purposes this could be a nice
enhancement but we decided to aim for reestablishing documented behavior.
The correct behavior of `currentFile` and `getOriginalReference` has been
restored as version 5 incorrectly used the same object for both.
# The next steps
For version 7 of arara, i.e. TeX Live 2022 we have big plans. Not all of them
may eventually end up in the released version but we still want to share our
ideas with you.
## Trying to serve more platforms
arara is written in Kotlin, a very versatile language. It has been designed with
compilation to different platforms in mind. The usual base of operations for
Kotlin is the JVM and the Java ecosystem. But one may also compile Kotlin to
JavaScript or even native binaries.
In version 6, we already made a split between an API, a core implementation, the
MVEL rules and the CLI application to separate concerns. This was the first step
in the direction of splitting out components that are bound to one
platform. Aditionally, we hope to enable other people to develop their own tools
based on the arara libraries if they wish to. With multiple library components
this should be easy.
For version 7, we want to take larger steps towards
platform-independence. Hence, we will make use of Kotlin/Multiplatform (MPP) to
use a single codebase for all target platforms. Some components will have to be
rewritten, some need different interfaces for different platforms but in the
end, we hope to provide an even more multitalented tool.
The real challenge is a major change of the API so that we are able to interpret
rules that have been written for MVEL (which is JVM-only) to work on native
platforms (Windows/Linux/Mac binaries) with respective libraries. We will have
to put quite some effort into improving our API.
Last but not least, we want to drop some word about the background of these
plans: arara has never known to be the fastest player among the TeX build tools
but nevertheless performance is important to us. That, combined with some
complaints (e.g. by a big player in the TeX world) about the reliance on the
JVM, made us curious where we can take arara in that direction.
## Exploring new grounds
Up to now, arara has been developed as a file-based build tool. The tool does
not track dependencies nor does it manage projects. You throw a file at it and
it makes the best out of it. That results in directives like the following
snippet from `file.tex`
```latex
% arara: metapost: { files: [a.mp, b.mp] }
% arara: pdflatex
```
which in fact does not (only) specify how to compile `file.tex` but it specifies
three things:
1. how to compile `a.mp`,
2. how to compile `b.mp` and
3. how to compile `file.tex`.
In fact, we are doing project management by hand. Obviously, the author intended
to compile the metapost files before running LaTeX. That is a clear indication
of dependency management.
As we have been asked about `make`-like support of directive specifications out
of the source file, we think the only sensible approach to tackle it is to
actually introduce the concept of a project to kill two birds with one stone.
Actually, we already worked on project support in combination with a new
Kotlin-based DSL (domain-specific language) for version 6. To avoid major
problems, we decided not to ship it and reconsider our plans. However, we
already had project specifications like
```kts
project("My awesome book") {
file("a.mp") {
directives = listOf("metapost")
}
file("b.mp") {
directives = listOf("metapost")
}
file("file.tex") {
dependsOn("a.mp", "b.mp")
// directives omitted, take from file
}
}
```
available, so stay tuned.

486
content/test.md Normal file
View file

@ -0,0 +1,486 @@
+++
title = "Contact"
description = "A quickstart guide to arara"
weight = 2
+++
Welcome to arara, the cool tex() automation tool! This document is
intended to be a quickstart guide, providing the basic instructions to start
using our tool. We will help our good friend Peter,[^1] the anteater, in his
learning adventure. He is very excited about it! Hello, Peter!
***Peter:** Hello, nice to meet you, person from the Island of tex() ! I am
Peter, the anteater. So I heard about this tool named arara, what is it? Is
there anything to do with tex() and friends?*
As a matter of fact, it is! arara is a tex() automation tool. The name was
chosen as an homage to a Brazilian bird of the same name, which is a macaw. The
word *arara* comes from the Tupian word *a'rara*, which means *big bird*. The
tool is an effort to provide a concise way to automate the daily tex()
workflow for users and also package writers.
***Peter:** It definitely sounds intriguing! So tell me, how does arara work?
Does it do everything automatically for me, like other tools? Do things happen
by magic?*
A very good question, Peter. The best way to explain how arara works is to
provide a quick comparison with similar tools. I believe you are familiar
with tex() documents, right? Let us use the following file `article.tex`
as an example:
```tex
\documentclass{article}
\begin{document}
Hello world!
\end{document}
```
How would one successfully compile `article.tex` with `latexmk` and `rubber`,
for instance? It is quite straightforward: it is just a matter of providing the
file to the tool and letting it do the hard work:
```sh
$ latexmk -pdf article.tex
$ rubber --pdf article.tex
```
The mentioned tools perform an analysis on the file and decide what has to be
done. However, if one tries to invoke `arara` on `article.tex`, I am afraid
*nothing* will be generated; the truth is, arara does not know what to do with
your file, and the tool will even raise an error message complaining about this
issue:
```sh
$ arara article.tex
__ _ _ __ __ _ _ __ __ _
/ _` | '__/ _` | '__/ _` |
| (_| | | | (_| | | | (_| |
\__,_|_| \__,_|_| \__,_|
Processing "article.tex" (size: 70 B, last modified: 12/28/2020
07:03:16), please wait.
ERROR
It looks like no directives were found in the provided file. Make
sure to include at least one directive and try again.
Total: 0.04 seconds
```
Peter, this is the major difference of arara when compared to other tools: *it
is not an automatic process and the tool does not employ any guesswork on its
own*. You are in control of your documents; arara will not do anything unless
you *teach it how to do a task and explicitly tell it to execute the task*. So,
it is not magic.
***Peter:** I see. On the other hand, this approach gives me, as user, full
control of my document compilation. Being aware of the compilation steps makes
me understand the tex() tooling better. Quite clever! Now, do tell me: how
does one tell arara to do a task?*
First of all, Peter, arara has to know *how* to do a task. This is done by
defining rules. A rule is a formal description of how the tool should handle a
certain task. For example, if we want to use `pdflatex` with arara, we need a
rule for that. Once a rule is defined, the tool automatically provides an access
layer to the user. Note that arara is distributed with dozens of predefined
rules, so you already have several options out of the box to set up your
workflow.
Giant anteaters can be found throughout South and Central America, though their
numbers have diminished considerably from the latter. To thrive, they need to be
able to move throughout large areas with patches of forest. They can often be
found in tropical and dry forests, savannas, and open grasslands, where the ants
upon which they feed are abundant.
Now, back to your question. Once we know how to execute a task, we need to
explicitly tell arara when to do it. That is actually the easy part, provided
that you have everything up and running. We accomplish the task by adding a
special comment line, hereafter known as a *directive*, somewhere in our
document to indicate how the tool should work, e.g:
```tex
% arara: pdflatex
```
***Peter:** Makes sense. So, a directive is a special comment line which is not
the command to be executed, but the name of the rule associated with that
directive. Is that correct?*
Perfect, Peter! That is basically how arara works: we teach the tool to do a
task by providing a rule, and tell it to execute it via directives in the source
code. Let us see how our `article.tex` file should be:
```tex
% arara: pdflatex
\documentclass{article}
\begin{document}
Hello world!
\end{document}
```
Note, Peter, that the tool expects *you* to provide a list of tasks, and this is
done by inserting special comments, i.e, directives, in the source file. Since
we just added one directive in our document, let us see how arara behaves with
this updated code:
```sh
$ arara article.tex
__ _ _ __ __ _ _ __ __ _
/ _` | '__/ _` | '__/ _` |
| (_| | | | (_| | | | (_| |
\__,_|_| \__,_|_| \__,_|
Processing "article.tex" (size: 88 B, last modified: 12/28/2020
07:05:05), please wait.
(PDFLaTeX) PDFLaTeX engine .............................. SUCCESS
Total: 0.56 seconds
```
***Peter:** Goodness me, it worked like a charm! The moment we specified a
directive, arara knew exactly what I wanted to do with that particular file!
Awesome!*
Exactly! You see, Peter, there is no guesswork from arara. The tool will do
exactly what you tell it to do, no more, no less. There is a lot of freedom to
this design, which gives you an interesting way to enhance your tex()
experience.
Anteaters are not aggressive, but they can be fierce. A cornered anteater will
rear up on its hind legs, using its tail for balance, and lash out with
dangerous claws. The giant anteater's claws are some four inches long, and the
animal can fight off even a puma or jaguar.
***Peter:** I have been wondering: there are scenarios in which we need to
provide additional information to the underlying commands for instance, we
need to enable shell escape when using the `minted` package. How can we achieve
this?*
For such scenarios, arara provides a second type of directive, a parametrized
one, which allows passing arguments to the corresponding rule. From your
example, to enable shell escape, one simply needs to write the following
directive:
```tex
% arara: pdflatex: { shell: yes }
```
Of course, `shell` is not taken randomly, but defined in the rule scope,
otherwise arara would raise an error about an invalid key. The reference manual
has a list of all available keys for each predefined rule. It is worth a read.
Do you know that a directive can be split into multiple lines? Simply use the
`arara: -->` mark to each line which should compose the directive. Although it
is possible to spread lines of a multiline directive all over the code, it is
considered good practice to keep them together for easier reading and editing.
***Peter:** Great, these directives are really convenient! I am now curious on
how to explore arara: shall we move to a more complex document? Consider the
following addition to my document:*
```tex
\documentclass{article}
\begin{document}
\section{Termite recipes}
\label{sec:termiterecipes}
Hello, this is Section~\ref{sec:termiterecipes}.
\end{document}
```
*As we can see, this document has to be compiled twice, or the reference to the
first section will not be resolved accordingly. How can I tackle this scenario
with arara?*
The solution is quite straightforward, Peter: how about adding two directives
into your document? You can keep them together for convenience (usually at the
top), but they can happen anywhere in your file. Let us update the code:
```tex
% arara: pdflatex
% arara: pdflatex
\documentclass{article}
\begin{document}
\section{Termite recipes}
\label{sec:termiterecipes}
Hello, this is Section~\ref{sec:termiterecipes}.
\end{document}
```
The execution workflow is now as expected: our document was correctly compiled
twice, as it should be, so references are resolved accordingly!
```sh
$ arara article.tex
__ _ _ __ __ _ _ __ __ _
/ _` | '__/ _` | '__/ _` |
| (_| | | | (_| | | | (_| |
\__,_|_| \__,_|_| \__,_|
Processing 'article.tex' (size: 196 B, last modified: 01/07/2021
08:18:00), please wait.
(PDFLaTeX) PDFLaTeX engine .............................. SUCCESS
(PDFLaTeX) PDFLaTeX engine .............................. SUCCESS
Total: 1.60 seconds
```
***Peter:** Cool! But I have been wondering: once the references are resolved,
subsequents runs will add an extra, unnecessary compilation. It would not do
any harm, surely, but is there a way to avoid it?*
There is a way, Peter! We can use logical expressions and special operators and
methods processed at runtime in order to determine whether and how a directive
should be processed. This feature is named *directive conditional*, or simply
*conditional* for short. Let us update the document to include this feature:
```tex
% arara: pdflatex
% arara: pdflatex if found('log', 'undefined references')
\documentclass{article}
\begin{document}
\section{Termite recipes}
\label{sec:termiterecipes}
Hello, this is Section~\ref{sec:termiterecipes}.
\end{document}
```
Observe, Peter, that the first directive has no conditional, so it will always
be processed. The second one, however, has an associated logical test: check if
the log file contains a warning about undefined references and, if so, process
the directive itself. When references are resolved accordingly, the tool will
not process the second directive at all, as we can see in the following run:
```sh
$ arara article.tex
__ _ _ __ __ _ _ __ __ _
/ _` | '__/ _` | '__/ _` |
| (_| | | | (_| | | | (_| |
\__,_|_| \__,_|_| \__,_|
Processing 'article.tex' (size: 236 B, last modified: 01/07/2021
08:42:02), please wait.
(PDFLaTeX) PDFLaTeX engine .............................. SUCCESS
Total: 0.97 seconds
```
In this particular case, the test is evaluated beforehand, and the directive is
processed if, and only if, the result of such evaluation is true. This
directive, when the conditional holds true, is executed at most once.
When using certain conditional operators, there are no conceptual guarantees for
proper halting of unbounded loops. However, do not worry! The team has
provided a technical solution for potentially infinite iterations: arara has a
predefined maximum number of loops. The default value is set to 10, but it can
be overridden.
***Peter:** These conditionals can help me dictate how my workflow should behave
in certain scenarios! I gather there are several possible ways of tackling them,
right?*
Correct, Peter. In the previous example, we used the `if` operator, but we could
have used `while` or `until` as well. The logical expression could also be
rewritten. We could even have combined these two directives into one! So you
see, there is always room for improvement.
The giant anteater uses its sharp claws to tear an opening into an anthill and
put its long snout, sticky saliva, and efficient tongue to work. But it has to
eat quickly, flicking its tongue up to 150 times per minute. Ants fight back
with painful stings, so an anteater may spend only a minute feasting on each
mound.
If this subject caught your attention, take a look at the reference manual for
more details on directive conditionals and available methods. There are multiple
code excerpts to help you understand better the inner workings.
***Peter:** I will certainly check them out! Now, I am curious to see other
directives in action together, so let us try a different yet common scenario:
bibliographies and citations. Consider the following bibliography file,
containing a reference[^2] to my doctoral thesis:*
```bib
@phdthesis{peter:2020,
author = {Peter Anteater},
title = {On flexibility: \LaTeX, latex and rubber},
school = {Polytechnic University of P{\^{a}}ntano Fundo},
year = 2020,
address = {Pantanal},
month = {jan}
}
```
*I want to cite my thesis in the article you and I are writing for this
quickstart guide. From the tex() side, it is quite straightforward! How
about arara? Here is my code:*
```tex
\documentclass{article}
\begin{document}
\section{Termite recipes}
\label{sec:termiterecipes}
A citation from my thesis~\cite{peter:2020}.
\bibliographystyle{alpha}
\bibliography{bibliography}
\end{document}
```
Peter, remember that arara does not employ any guesswork, so do not expect it to
magically compile your document and get all the citations correctly. We need to
explicitly tell it what to do, as if we were explaining the compilation steps to
a friend. arara is focused on reproducibility.
Anteaters are edentate animals — they have no teeth. But their long tongues are
more than sufficient to lap up the 35,000 ants and termites they swallow whole
each day. As the largest of all four anteater species, the giant anteater can
reach eight feet long from the tip of its snout to the end of its tail.
We, as users, can learn a great deal about tex() and friends by organising
our workflow into directives. Let us review what should be done in order to
correctly compile your document:
1. For starters, we need to run the tex() engine in order to write
(amongst other things) the relevant bibliography information to the
auxiliary file. We can achieve this by inserting the following directive:
```tex
% arara: pdflatex
```
2. Once the auxiliary file holds the relevant bibliography information, we need
to run the Bib tex() tool as a means to map entries from the
bibliography database to the existing citations into an intermediate
bibliography file. We can achieve this by inserting the following directive:
```tex
% arara: bibtex
```
3. Once the intermediate bibliography file is generated, we can now have a
proper bibliography section in our document, so we need to run the
tex() engine again. We can achieve this by inserting the following
directive:
```tex
% arara: pdflatex
```
4. However, the citations are still not yet referenced in the document, so a
final run of the tex() engine is required in order to correctly adjust
these references. We can achieve this by inserting the following directive:
```tex
% arara: pdflatex
```
And we are done! These are the compilation steps required to correctly generate
your article from the given source and bibliography files. Note that the entire
workflow involves two different tools working together: the tex() engine
and the Bib tex() tool.
***Peter:** Wait a minute, no less than four compilation steps? I would never
guessed it! This is great: arara is also helping me understand better how
the tex() workflow works!*
Quite true, Peter! arara tries its best to help users think out of the box! Now
that we know the exact compilation steps to be taken, we just need to arrange
them in the correct order in our document:
```tex
% arara: pdflatex
% arara: bibtex
% arara: pdflatex
% arara: pdflatex
\documentclass{article}
\begin{document}
\section{Termite recipes}
\label{sec:termiterecipes}
A citation from my thesis~\cite{peter:2020}.
\bibliographystyle{alpha}
\bibliography{bibliography}
\end{document}
```
Now, let us take arara into action! By running the tool on our article, we can
see all compilation steps being performed in the exact order we specified in the
source code, as expected:
```sh
$ arara article.tex
__ _ _ __ __ _ _ __ __ _
/ _` | '__/ _` | '__/ _` |
| (_| | | | (_| | | | (_| |
\__,_|_| \__,_|_| \__,_|
Processing 'article.tex' (size: 281 B, last modified: 01/08/2021
06:17:20), please wait.
(PDFLaTeX) PDFLaTeX engine .............................. SUCCESS
(BibTeX) The BibTeX reference management software ....... SUCCESS
(PDFLaTeX) PDFLaTeX engine .............................. SUCCESS
(PDFLaTeX) PDFLaTeX engine .............................. SUCCESS
Total: 2.49 seconds
```
***Peter:** Great! I see arara is quite expressive! I am very curious: what
about other possibilities, will I learn them by looking at the reference manual?
Surely there are way more features to discover.*
Of course, Peter! The reference manual contains everything there is to know
about arara, so it is a great resource for learning! In this quickstart guide,
we simply covered the basics, as an introductory material. The tool has several
features, including support for working directory, processing of multiple files,
argument passing through command line flags, configuration files, default
preambles, file hashing, safe mode, and much more. There is a world of
possibilities!
***Peter:** Thank you very much, person from the Island of tex() ! I am
sure I will have a lot of fun with arara! Should I need any assistance, how can
I contact the team?*
Great talking to you, Peter! If you run into any issue with arara, please let us
know. We all have very active profiles in the [ tex() community at
StackExchange](https://tex.stackexchange.com/), so just use the `arara` tag in
your question and we will help you the best we can (also, take a look at their
[starter guide](https://tex.meta.stackexchange.com/q/1436)). We also have
[Gitter](https://gitter.im/Island-of-TeX/arara) and
[Matrix](https://matrix.to/#/!HfEWIEvFtDplCLSQvz:matrix.org?via=matrix.org) chat
rooms, in which we occasionally hang out. Also, if you think the report is
worthy of an issue, open one in our [GitLab
repository](https://gitlab.com/islandoftex/arara/issues). Happy tex() ing
with arara, Peter!
---
[^1]: *Peter was graduated from Termite High School, Alta Floresta, Mato Grosso,
Brazil. He went on to study at the California Institute of Ti<span
class="upright">k</span>Zlings with a scholarship from San Diego Zoo. He
completed his university education at the Rain Forest Academy, Manaus. He is
currently teaching as a Fellow of the Federal University for the Advancement of
Furry Animals, Cuiabá. He is a Corresponding Member of Duckpond Academy,
Sempione Park, Milano, Italy.*
[^2]: *Peters doctoral thesis “On flexibilty: latex and rubber” was
published at Manaus. His reputation in the academic world is based on his famous
study “The Mandelbrot heritage: towards a fractal topology of formicaries”. Some
of his works arose from a fruitful cooperation with the well known
Brazilian-Italian savant Professore P. van Duck.*

20
templates/_macros.html Normal file
View file

@ -0,0 +1,20 @@
{% macro render_header() %}
{% set section = get_section(path="_index.md") %}
<a href="{{ section.permalink | safe }}">
<div class="logo">
<img src="{{ get_url(path=config.extra.juice_logo_path) }}" alt="logo">
{{ config.extra.juice_logo_name }}
</div>
</a>
<nav>
{% for page in section.pages %}
<a class="nav-item subtitle-text" href="{{ page.permalink | safe }}">{{ page.title }}</a>
{% endfor %}
{% if config.extra.juice_extra_menu %}
{% for menu in config.extra.juice_extra_menu %}
<a class="nav-item subtitle-text" href="{{ menu.link | safe }}">{{ menu.title }}</a>
{% endfor %}
{% endif %}
</nav>
{% endmacro render_header %}

42
templates/section.html Normal file
View file

@ -0,0 +1,42 @@
{% import "_macros.html" as macros %}
{% extends "index.html" %}
{% block title %}{{ section.title }} | {{ super() }} {% endblock title %}
{% block header %}
<header class="box-shadow">
{{ macros::render_header() }}
</header>
{% endblock header %}
{% block content %}
<div class="margin-left:20vw; margin-right: 20vw;">
<div class="heading-text">{{ section.title }}</div>
<ul>
{% for page in section.pages %}
<li>
<div>
<a href="{{ page.permalink | safe }}">
<strong class="title article-title">{{ page.title }}</strong>
</a>
{% if page.date %}
<div>
<span>{{ page.date | date(format="%F") }}</span>
</div>
{% endif %}
</div>
{% if page.summary %}
<div itemprop="summary" class="content article-body">
{{ page.summary | safe }}
<nav class="readmore">
<a itemprop="url" href="{{ page.permalink | safe }}">Read
More&nbsp;&raquo;
</a>
</nav>
</div>
{% endif %}
</li>
{% endfor %}
</ul>
</div>
{% endblock content %}