latex
Narzędzia do budowania
Szukaj…
Arara
Arara to wieloplatformowe narzędzie do automatyzacji zaprojektowane specjalnie dla TeX-a. Jest zawarty w standardowej dystrybucji, więc nie trzeba instalować żadnych dodatkowych elementów. Najskuteczniej jest to rozumiane jako sposób na zapisanie instrukcji kompilacji w samym pliku TeX:
% arara: pdflatex \documentclass{article} \begin{document} Hello, world \end{document}
Mogą być jednak znacznie bardziej skomplikowane:
% 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
Licencjonowany na podstawie CC BY-SA 3.0
Nie związany z Stack Overflow