forked from aclements/latexrun
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request aclements#24 from temporaer/biber
Add support for biber
- Loading branch information
Showing
8 changed files
with
108 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
@misc{ent1, | ||
author = {Author}, | ||
title = {Title} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
% Test biblatex | ||
|
||
\documentclass{article} | ||
\usepackage[backend=biber]{biblatex} | ||
\addbibresource{main.bib} | ||
|
||
\begin{document} | ||
\cite{ent2} | ||
\printbibliography | ||
\end{document} | ||
|
||
%% bibtex-cmd: biber | ||
%% output: | ||
%% main.tex:8: warning: Citation 'ent2' on page 1 undefined | ||
%% main.tex:9: warning: Empty bibliography | ||
%% main.tex: warning: There were undefined references | ||
%% main.tex: warning: [biblatex] Please (re)run Biber on the file: main and rerun LaTeX afterwards | ||
%% warning None None I didn't find a database entry for 'ent2' (section 0) | ||
%% <no file>: warning: I didn't find a database entry for 'ent2' (section 0) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
@misc{ent1, | ||
author = {Author}, | ||
title = {Title} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
% Test biblatex | ||
|
||
\documentclass{article} | ||
\usepackage[backend=biber]{biblatex} | ||
\addbibresource{main.bib} | ||
|
||
\begin{document} | ||
\cite{ent1} | ||
\printbibliography | ||
\end{document} | ||
|
||
%% bibtex-cmd: biber |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
@misc{ent1, | ||
author = {Author}, | ||
title = {Title} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
% Test biblatex | ||
|
||
\documentclass{article} | ||
\usepackage[backend=bibtex]{biblatex} | ||
\addbibresource{main.bib} | ||
|
||
\begin{document} | ||
\cite{ent1} | ||
\printbibliography | ||
\end{document} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters