latex
Инструменты сборки
Поиск…
Arara
Arara - инструмент для кросс-платформенной автоматизации, специально разработанный для TeX. Он включен в стандартный дистрибутив, поэтому нет необходимости устанавливать что-либо дополнительное. Это наиболее эффективно понимается как средство записи инструкций компиляции в самом файле TeX:
% arara: pdflatex
\documentclass{article}
\begin{document}
Hello, world
\end{document}
Это может быть намного сложнее:
% arara: pdflatex
% arara: biber
% arara: pdflatex
% To support a self-contained example, this builds a BibTeX file on-the-fly
\begin{filecontents}{references.bib}
@article{dijkstra,
author = {Dijkstra, Edsger W.},
title = {Self-stabilizing Systems in Spite of Distributed Control},
journal = {Commun. ACM},
issue_date = {Nov. 1974},
volume = {17},
number = {11},
month = nov,
year = {1974},
issn = {0001-0782},
pages = {643--644},
numpages = {2},
url = {http://doi.acm.org/10.1145/361179.361202},
doi = {10.1145/361179.361202},
acmid = {361202},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {distributed control, error recovery, harmonious cooperation, multiprocessing, mutual exclusion, networks, robustness, self-repair, self-stabilization, sharing, synchronization},
}
\end{filecontents}
\documentclass{article}
\usepackage[backend=biber]{biblatex}
\addbibresource{references.bib}
\begin{document}
Hello, World! \cite{dijkstra}.
\printbibliography
\end{document}
Modified text is an extract of the original Stack Overflow Documentation
Лицензировано согласно CC BY-SA 3.0
Не связан с Stack Overflow