수색…
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