Typeseting Your Book in LaTex
1.What is "typesetting"?
In the LaTeX context, turning a source file into a PDF. More generally, the process of setting out a document for printing
2. If I create a book with LaTeX do I need to get a "template" from the Dalriada Books so that the output is in the form required by the Dalriada Books?
No. We accept both pdf and LaTeX source, you don't need to use special template. and you can use a simple LaTeX document. Soemthing like
\documentclass{article}
\usepackage[T1]{fontenc}
\usepackage{lmodern}
\begin{document}
\title{My title}
\author{A.N. Other}
\maketitle
Some text for the paper here
\end{document}