<div dir="ltr">In XeTeX, you can decalre the fonts as follow:<br><br>\font\CS="<font-name>:<options>"<br><br>For example if you want to choose Junicode (Regular) at 12pt you can have:<br><br>\font\twelve="Junicode:mapping=tex-text" 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="Junicode/B:mapping=tex-text" at 12pt<br>
<br>the '\B' thing states that we want to use the bold format of the font, and you can use '\I' for italics and so on.<br><br><br>But if you are using xelatex, you can define a new font with \newfontfamily control word like:<br>
<br>\newfontfamily\junicode[Scale=1,Mapping=tex-text]{Junicode}<br><br><br><br>-- VK<br></div>