From 755a8c20e6f23d2285ede6e34337340029cd1233 Mon Sep 17 00:00:00 2001
From: "Moritz Schubotz (physikerwelt)" <wiki@physikerwelt.de>
Date: Thu, 15 Nov 2018 14:23:53 +0100
Subject: [PATCH] Compile all entries

Fix Beel09a: Guess editors name Andrea
---
 .travis.yml         |  2 ++
 gipp.bib            |  2 +-
 src/tex/allRefs.tex | 16 ++++++++++++++++
 src/tex/latexmkrc   |  5 +++++
 support/compile.sh  |  4 ++++
 5 files changed, 28 insertions(+), 1 deletion(-)
 create mode 100755 src/tex/allRefs.tex
 create mode 100644 src/tex/latexmkrc
 create mode 100755 support/compile.sh

diff --git a/.travis.yml b/.travis.yml
index 07c66ab..0b48703 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -4,6 +4,8 @@ cache:
   directories:
   - "/tmp/texlive"
   - "$HOME/.texlive"
+script:
+- source ./support/compile.sh
 after_success:
 - git config --global user.email "builds@travis-ci.com"
 - git config --global user.name "Travis CI"
diff --git a/gipp.bib b/gipp.bib
index 424a5ad..29dd9d9 100644
--- a/gipp.bib
+++ b/gipp.bib
@@ -1273,7 +1273,7 @@
   title     = {{G}oogle {S}cholar's {R}anking {A}lgorithm: {T}he {I}mpact of {C}itation {C}ounts ({A}n {E}mpirical {S}tudy)},
   booktitle = {{P}roceedings of the 3rd {IEEE} {I}nternational {C}onference on {R}esearch {C}hallenges in {I}nformation {S}cience ({RCIS}'09)},
   year      = {2009},
-  editor    = {Flory, André and Collard, Martine},
+  editor    = {Flory, Andra and Collard, Martine},
   note      = {ISBN 978-1-4244-2865-6},
   publisher = {IEEE},
   month     = {Apr.},
diff --git a/src/tex/allRefs.tex b/src/tex/allRefs.tex
new file mode 100755
index 0000000..e119f48
--- /dev/null
+++ b/src/tex/allRefs.tex
@@ -0,0 +1,16 @@
+\documentclass{article}
+%\usepackage[ascii]{inputenc}
+\usepackage{hyperref}
+\usepackage[
+backend=biber,
+natbib=true,
+mincitenames=2,
+%bibencoding=ascii
+]{biblatex}
+\addbibresource{../../gipp.bib}
+\begin{document}
+  This document is supposed to use \verb \nocite{*} \verb to cite all bibtex entries.
+  However, currently some bibtex entries simply do not work. Thus only selected bibtex entries are printed.
+\nocite{*}
+\printbibliography%[keyword=mathml]
+\end{document}
diff --git a/src/tex/latexmkrc b/src/tex/latexmkrc
new file mode 100644
index 0000000..e701a21
--- /dev/null
+++ b/src/tex/latexmkrc
@@ -0,0 +1,5 @@
+$pdflatex = 'pdflatex --shell-escape -synctex=1 -interaction=nonstopmode';
+@generated_exts = (@generated_exts, 'synctex.gz', 'markdown.lua');
+@default_files = ('allRefs.tex');
+$bibtex_use = 2;
+$pdf_mode = 1;
diff --git a/support/compile.sh b/support/compile.sh
new file mode 100755
index 0000000..e534c0c
--- /dev/null
+++ b/support/compile.sh
@@ -0,0 +1,4 @@
+#!/usr/bin/env bash
+cd ../src/tex
+latexmk
+cp allRefs.pdf ../../main.pdf
-- 
GitLab