I have a document I want to convert using Xelatex. Based on the info here, I've gone through the file and made a number of changes. However, while it will output a new PDF, the conversion fails to pick up any text formatting, such as Bold.
In my Makefile, I am simply pointing Xelatex at the source file - e.g, make foo.pdf.
preamble.sty
\ProvidesPackage{preamble}
\PassOptionsToPackage{hyphens}{url}
\usepackage[xelatex]{hyperref}
\hypersetup{
colorlinks=true,
urlcolor=blue,
}
\urlstyle{same}
\usepackage[margin=1.905cm]{geometry}
\usepackage{fontspec}
\usepackage{mathptmx}
\usepackage{ulem}
\usepackage[none]{hyphenat} % This style needs to be in the repo, It's not in BasicTex
\usepackage{enumitem} % This style needs to be in the repo, It's not in BasicTex
\pagenumbering{gobble}
\def\myauthor{Christopher M. Finazzo}
\def\mycopyright{2018}
\endinput
Code
\documentclass[letterpaper,11pt]{article}
\usepackage{preamble}
\begin{document}
\begin{center}
\textbf
{\small{CHRISTOPHER M. FINAZZO}} \\
\end{center}
\begin{raggedleft}
\noindent {973.906.0496}
\end{raggedleft}
\hfill \hfill {chris@chrisfinazzo.com}\\
\begin{raggedright}
{http://www.linkedin.com/in/chrisfinazzo}
\end{raggedright}
\begin{center}
\textbf
{PROFESSIONAL OBJECTIVE}
\end{center}
\begin{center}
Communications Analyst
\end{center}
\noindent
\begin{center}
\textbf{PREFERRED FUNCTIONS}
\end{center}
\begin{center}
\begin{tabular}{lll}
Marketing Communications & Internal Communications & Client Communications\\
\end{tabular}
\end{center}
\begin{center}
\textbf{POSITIONING STATEMENT}\\
\end{center}
\begin{raggedright}
Results driven individual with a passion for conveying complex ideas to technical and nontechnical audiences in a way that is accurate, clear, and concise. Proven ability to create audience appropriate messages with a range of authoring tools. Strong verbal and written communication skills as well as the ability to multitask, set priorities, and meet deadlines.\\
\end{raggedright}
\begin{center}
\textbf{COMPETENCIES}
\end{center}
\begin{center}
\begin{tabular}{lll}
\textbf{Writing \& Editing} & \textbf{Authoring Tools} & \textbf{Project Management}\\
AP \& APA Style & HTML, CSS, \& SASS & Requirements Gathering\\
Research Skills & Content Management Systems & Estimating Project Scope\\
Creating a Written Narrative & Social Media & Audience Analysis\\
\end{tabular}
\end{center}
\begin{center}
\textbf{TARGET MARKET CHARACTERISTICS}
\end{center}
\textbf{Geographic Location:} New York Metro area, Should be commutable via public transit.\\
\textbf{Industry or Type of Organization:} Communications, Financial Services, Insurance, Technology\\
\textbf{Size of Organization:} Medium to Large\\
\textbf{Organizational Culture:}\\
Values employees\\
Encourages employee autonomy and individual initiative\\
Provides opportunities for personal and professional growth\\
Leveraging technology to engage with target audiences\\
\begin{center}
\textbf{TARGET LIST}
\end{center}
\begin{center}
\begin{tabular}{ll}
\textbf{Financial Services/Insurance} & \textbf{Communications/Tech/Other}\\
ACE Insurance Group & Bloomberg\\
AIG & Columbia University\\
American Express & Coyne Public Relations\\
Bank of America & Discovery Communications\\
BlackRock & Edelman\\
BNY Mellon & Facebook\\
Chubb & Google\\
Citigroup & HP\\
Goldman Sachs & IBM\\
JPMorgan Chase & Microsoft\\
Liberty Mutual & The New York Times\\
Morgan Stanley & NYU\\
New York Life & Rapp\\
Prudential & PwC\\
Travelers & The Star Ledger\\
UBS & Unilever\\
\end{tabular}
\end{center}
\end{document}
What am I missing?


mathptmx. Use instead after loadingfontspec,\setmainfont{TeX Gyre Termes). – Alan Munn Dec 31 '18 at 20:33