खोज…


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