From 0db7a44eae6cb53b7fdc8c75e0daa7c83fd0bc4a Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?V=C3=ADt=20Novotn=C3=BD?= <witiko@gmail.com>
Date: Tue, 10 Nov 2015 23:09:17 +0100
Subject: [PATCH] Removed XeLaTeX from the example files, as LuaLaTeX is a
 superior alternative.

---
 Makefile               |  9 ++-------
 fibeamer/demo/Makefile |  2 +-
 xelatex.tex            | 31 -------------------------------
 3 files changed, 3 insertions(+), 39 deletions(-)
 delete mode 100644 xelatex.tex

diff --git a/Makefile b/Makefile
index 490a499..1b2790e 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
 .PHONY: all clean
 all:
 	make -C fibeamer
-	make pdflatex.pdf xelatex.pdf lualatex.pdf \
+	make pdflatex.pdf lualatex.pdf \
 		latex.dvi latex.pdf clean
 
 # This target typesets the pdfLaTeX example.
@@ -9,11 +9,6 @@ pdflatex.pdf: pdflatex.tex
 	pdflatex $<
 	pdflatex $<
 
-# This target typesets the XeLaTeX example.
-xelatex.pdf: xelatex.tex
-	xelatex $<
-	xelatex $<
-
 # This target typesets the LuaLaTeX example.
 lualatex.pdf: lualatex.tex
 	lualatex $<
@@ -34,4 +29,4 @@ clean:
 # This target removes any auxiliary files
 # and the output PDF file.
 implode: clean
-	rm -f pdflatex.pdf xelatex.pdf lualatex.pdf latex.pdf latex.dvi
+	rm -f pdflatex.pdf lualatex.pdf latex.pdf latex.dvi
diff --git a/fibeamer/demo/Makefile b/fibeamer/demo/Makefile
index e5d38fe..1edad65 100644
--- a/fibeamer/demo/Makefile
+++ b/fibeamer/demo/Makefile
@@ -4,7 +4,7 @@ TEXFILES=sci.tex phil.tex ped.tex med.tex fss.tex fi.tex law.tex \
 	econ.tex fsps.tex
 AUXFILES=*.aux *.log *.nav *.out *.snm *.toc
 SRC=source.tex
-TEX=xelatex
+TEX=lualatex
 .PHONY: all clean
 all: $(PDFFILES) clean
 
diff --git a/xelatex.tex b/xelatex.tex
deleted file mode 100644
index 2cbfb0b..0000000
--- a/xelatex.tex
+++ /dev/null
@@ -1,31 +0,0 @@
-\documentclass{beamer}
-  \usetheme{fibeamer}
-  \usepackage{polyglossia}
-  \setmainlanguage{english}
-  \usepackage{amsmath}   % `\equation`s
-  \usepackage{tabularx}  % Tables
-  \usepackage{booktabs}
-\begin{document}
-  \title{My Presentation}
-  \subtitle{Daring the Unknown}
-  \author{Jane Doe}
-  \frame{\maketitle}
-
-  \begin{frame}{Foo}{bar}
-    Hello world!
-    \begin{equation}
-      \tag{Mass--energy equivalence} e=mc^2
-    \end{equation}
-    \begin{center}
-      \begin{tabularx}{\textwidth}{lllX}
-      \toprule
-      Day & Min Temp & Max Temp & Summary \\
-      \midrule
-      Monday & $11^{\circ}\mathsf{C}$ & $22^\circ\mathsf{C}$ & A
-      clear day with lots of sunshine. However, the strong breeze
-      will bring down the temperatures. \\
-      \bottomrule
-      \end{tabularx}
-    \end{center}
-  \end{frame}
-\end{document}
-- 
GitLab