From 2bfa3a043dcf394492a33bbcb16121dcb227b5ed Mon Sep 17 00:00:00 2001 From: Mohammad Akhlaghi Date: Sat, 2 May 2020 04:38:55 +0100 Subject: First implementation of style in IEEEtran style The paper is no longer using LuaLaTeX, but raw LaTeX (that saves a DVI), it is so much faster! Initially I had used LuaLaTeX to use special fonts to resemble the CODATA Data Science Journal, but all that overhead is no longer necessary. Therefore I also removed the MANY extra LaTeX packages we were importing. The paper builds and is able to construct one of its images (the git-branching figure) with only 7 packages beyond the minimal TeX/LaTeX installation. Also in terms of processing it is so much faster. The text is just temporary now, and mainly just a place holder. With the next commit, I'll fill it with proper text. --- tex/src/preamble-project.tex | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 tex/src/preamble-project.tex (limited to 'tex/src/preamble-project.tex') diff --git a/tex/src/preamble-project.tex b/tex/src/preamble-project.tex new file mode 100644 index 0000000..c4d7feb --- /dev/null +++ b/tex/src/preamble-project.tex @@ -0,0 +1,27 @@ +%% Import graphics +\usepackage{graphicx} + +%% IEEEtran V1.6 and later pre-defines the format of the cite.sty package +%% \cite{} output to follow that of the IEEE. +\usepackage{cite} + +%% For the `\url' command. +\usepackage{url} + +% correct bad hyphenation here +\hyphenation{op-tical net-works semi-conduc-tor} + +%% To use colors. +\usepackage{xcolor} + +%% To have links. +\usepackage[ + colorlinks, + urlcolor=gray, + citecolor=gray, + linkcolor=gray, + linktocpage]{hyperref} +\renewcommand\UrlFont{\rmfamily} + +%% To have typewriter font +\usepackage{courier} -- cgit v1.2.1