I am just learning LATEX. Have been wanting to for years, doing quite well (at 60) and many years of programming are making it a joy!
I am using fontspec to load some fonts directly from a subdirectory of the tex documents directory. This works as follows:
\documentclass[]{article}
\usepackage{fontspec}
\usepackage{lipsum}
%opening
\title{A Test of Zapinfo}
\author{Ramonskovitch}
\begin{document}
\fontspec[Path = fonts/zapfino/,
]{ZapfinoExtraLT-One.otf}
\maketitle
\begin{abstract}
Ramonskovitch wanted to be a duffle
\end{abstract}
\section{The First Section}
\lipsum[1-3]
\end{document}
This works as expected. However, I can't work out though, how to get Ligatures when the ligatures are in a separate font file (in the font directory) The same question will apply to ornaments when I get to those
All help appreciated Dan Raymond

