I'm writing a Thesis on the ''use of history to teach mathematics''. The first four chapters are already typed and compiled in pdfTex, I used the memoir document class.
Recently I read this Lua post and it really caught my attention.
In order to finish the Thesis process (writing and compiling the three final chapters, also have to add graphs, tables and so) I am evaluating to move to XeLaTex (I'm not sure if LuaLaTeX would be an option but it excited me what I read). I know my LaTeX, and I feel confortable with LaTeX (pdfTeX) but I also want to "see other options".
My question is: If I want to "port" the current document code and finish the three last chapters using XeLaTeX (or LuaLaTeX), What I need to achieve that successfully?
NOTE
Here I add a MWE of the ''preamble'' and the estructure.tex in order to you see the package I am using currently and you can tell if is feasible to translate the current document.
Preamble
\documentclass[12pt,letterpaper,oneside]{memoir}
\settypeblocksize{279.4mm}{215.9mm}{*}
\setulmarginsandblock{3cm}{3cm}{*}
\setlrmarginsandblock{3.9cm}{2cm}{*}
\checkandfixthelayout
\parskip=0.25cm
\usepackage{apacite}
\usepackage[utf8]{inputenc}
\usepackage[spanish]{babel}
\usepackage{XCharter}
\DisemulatePackage{setspace}
\usepackage{setspace}
\makepagestyle{myheadings}
\makeevenhead{myheadings}{\thepage}{}{}
\makeoddhead{myheadings}{}{}{\thepage}
\pagestyle{myheadings}
\usepackage{titlesec}
\titleformat*{\section}{\centering\LARGE\bfseries}
\titleformat*{\subsection}{\large\bfseries}
\titleformat*{\subsubsection}{\large\bfseries}
\input{structure.tex}
Here is the structure.tex file.
\usepackage[round]{natbib}\citeindextrue
\usepackage{graphicx} % Required to include images
\graphicspath{{./Figures/}}
\usepackage{color} % Required for custom colors
\usepackage{amsmath,amssymb,theorem} % Math packages
\usepackage{listings} % Required for including snippets of code
\usepackage{booktabs} % Required for better horizontal rules in tables
\usepackage{xspace} %
\usepackage[printonlyused,withpage]{acronym} % Include a list of acronyms
\usepackage{rotating} % Allows tables and figures to be rotated
\usepackage{hyperref} % Required for links and changing link options
\usepackage{microtype} % Slightly tweak font spacing for aesthetics
\hypersetup{colorlinks, breaklinks, linkcolor=black,citecolor=black,filecolor=black,urlcolor=black} % Set up hyperlinks including colors for references, urls and citations
\makeatletter
\renewcommand{\fnum@figure}{\textsc{\figurename~\thefigure}} % Make the "Figure 1.1" text in small caps
\makeatother
inputenctoluainputenc;fontencdeleted; load XCharter through OpenType viafontspec; usepolyglossiainstead ofbabel; etc. What more are you looking for? I mean, there's not too much to do… – Manuel Aug 24 '14 at 23:33inputenchas to be loaded. – Bernard Aug 25 '14 at 00:13microtypeis only partially supported by the newer engines. LuaTeX supports most of it, as I understand it, and XeTeX supports some of it but a bit less than LuaTeX. But there are some features which you need pdfTeX for. (See the manual or search here for details.) – cfr Aug 25 '14 at 01:31conTeXtand you have not a clear idea aboutxetex,luatexand their versions forLaTeX:xelatexandlualatex.I see that you have a better idea now, but the question still remains _why would you want or need to compile this thesis with
– Aradnix Aug 25 '14 at 05:12XeLaTeXorLuaLaTeXinstead ofpdflatexif you're fine with that so far?LaTeXintoConTeXtwhich doesn't seems like a good idea. I think the goal would be to useXeLaTeXinstead ofpdflatex, that would be the growth in anotherLaTeXdimension. And not so hard to achieve. – Aradnix Aug 26 '14 at 04:50XeLaTeXinstead ofpdfLaTeX. Also what do I have to know to make a swift "translation". Or maybe not that swift, but feasible. – Mauramz Aug 26 '14 at 13:56