##### How to install custom fonts (April 12, 2013) #####

### In Linux:
1. Copy open-type font files (".otf") to ~/.fonts
If there is no such directory, create it.

2. After copying files, run: 
fc-cache

3. To find the name of an installed font, run:
fc-list | grep -i fontname

"fc-list" lists the installed fonts
"grep fontname" finds "fontname" (or, generally, patterns)
"-i" option ignores case

	For example, to find the name of XITS Math font:
	fc-list | grep -i XITS


