<div dir="ltr">In XeTeX, you can decalre the fonts as follow:<br><br>\font\CS=&quot;&lt;font-name&gt;:&lt;options&gt;&quot;<br><br>For example if you want to choose Junicode (Regular) at 12pt you can have:<br><br>\font\twelve=&quot;Junicode:mapping=tex-text&quot; at 12pt<br>
<br>This also enables tex-text mapping which is the option.<br><br>Now if you want to use bold version of the font you do something similar to above or you can have:<br><br>\font\twelvebf=&quot;Junicode/B:mapping=tex-text&quot; at 12pt<br>
<br>the &#39;\B&#39; thing states that we want to use the bold format of the font, and you can use &#39;\I&#39; for italics and so on.<br><br><br>But if you are using xelatex, you can define a new font with \newfontfamily control word&nbsp; like:<br>
<br>\newfontfamily\junicode[Scale=1,Mapping=tex-text]{Junicode}<br><br><br><br>-- VK<br></div>