I'm running XeLaTeX on a Mac, and I'm getting into a lot of trouble with finding fonts.
Here's my code (taken from here: Revisiting TIPA and Fontspec)
\documentclass[12pt]{article}
\usepackage{environ}
\usepackage[no-math]{fontspec}
\newfontfamily{\tipacm}{CMU Serif}
\NewEnviron{IPA}{\expandafter\textipa\expandafter{\BODY}}
\renewcommand\useTIPAfont{\tipacm}
\begin{document}
\normalfont
\textipa{k\textscripta T\'{a}}
\textipa{kAT\'{a}}
\begin{IPA}
kAT\'{a}
\end{IPA}
\end{document}
Whenever I run it, I get the "font-not-found" error. when I search the fc-list for anything that looks like "computer modern" or any variant or abbreviation of that, I find nothing.
But obviously, my computer does have Computer Modern installed, since it's making these default pdfs fine. I would like to be able to make a new font family (e.g. \newfontfamily{\tipacm}) with the default font? If it's using a font to make a pdf, shouldn't I be able to make a renamed copy of it without having to load something externally? In essence, I'd like to make a new font family without having to load anything dependent on file paths.
Theoretically, I'd like something like: \newfontfamily{\tipacm}{\currentdefaultfontfamily}

XeTeXdid not usefontconfigon Mac OS X ? – Jan 14 '16 at 21:22/Library/Fontsand user~/Library/Fonts. These repertories are special. You just move fonts in there. ApplicationFontBookallows to manage them, for example you can de-activate some of the installed fonts or also define another font repertory for installation. Installing a new font is a simple as double-clicking on it on then "Install", or from insideFontBook.app. There is also the notion of "Font Library" which you can create in "FontBook" and then add to it fonts from arbitrary locations (even network disk). – Jan 15 '16 at 07:52/etc/fonts/conf.d/09-texlive.confstory are completely inoperant onMac OS. I have asked the texlive team some months ago to clarify what applies to mac os and what does not. – Jan 15 '16 at 07:57kpsewhich --var-value TEXMFLOCALshould show the local tree which is by default~/Library/texmf/. Then one can put the fonts into~/Library/texmf/fonts/opentype/and runtexhashafter saving the files. – Jan 16 '16 at 08:06~/Library/texmf/is the default forTEXMFLOCAL, rather it is the default forTEXMFHOME. It is not recommended to runtexhashonTEXMFHOMEas you have to recall doing it all the time you modify something there. Adding fonts into../fonts/opentypewill I presume work withXeTeXonly if addressing fonts by filenames, else you needExternalLocationkey to\setmainfont. And the fonts will not be known to the system until the user usesFontBookfor that. – Jan 16 '16 at 21:17FontBookapplication to tell the system about extra font repertories, for example those from the varioustexmfhierarchies. When calling the font by font name,xetexwill then find it via the mac os services (untested). If you don't need the font to be known by the system, then you can always call them by filenames, withExternalLocationextra key. – Jan 17 '16 at 09:04fontconfig. I am not aware of any documentation for TeX mac os x users telling something else than: duplicate the fonts into System repertories. ButFontBookopens more possibilities. The problem then is perhaps you also want your set-up to work with LuaLaTeX. Duplicating works, but perhaps what I said in last comment too. No desire nor time to test, though. – Jan 17 '16 at 09:09