<div dir="ltr"><div dir="ltr"><br></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Mon, 11 Jul 2022 at 19:20, Haines Brown <<a href="mailto:haines@histomat.net">haines@histomat.net</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">On Mon, Jul 11, 2022 at 05:05:07PM +0200, Herbert Voss wrote:<br>
> <br>
> <br>
> Am 11.07.22 um 13:55 schrieb Herbert Voss:<br>
> > <br>
> > <br>
> sorry, just realized that there must be something wrong with<br>
> your copy and paste of my example.<br>
> <br>
> You have a lot of unwanted spaces in your code<br>
<br>
Herbert, I have reduced the code as much as possible:<br>
<br>
  \documentclass[letterpaper,12pt]{letter}<br>
  \usepackage[T1]{fontenc} % optional but needed<br>
  \usepackage{libertinus}[  <br>
    BoldFont           = lmromandunh10-regular.otf,<br>
    BoldFeatures       = {FakeBold=3}<br>
  ]<br>
  \begin{document}<br>
    \begin{letter}<br>
    \newfontface\Dunhill{latinmodernromandunhill}<br>
      {\large \bfseries{\Dunhill Dunhill}}<br>
    \end{letter}<br>
  \end{document}<br>
<br>
As the code hints, I'm trying to make the Dunhill string apear bolder <br>
and larger. <br>
<br>
Haines<br>
<br></blockquote><div><br></div><div>Note this list is about the _distribution_ it really isn't about document markup questions. <br></div><div><br></div><div>it almost never makes sense to use T1 encoding with LuaTeX, certainly any fonts you load via `\newfontface`</div><div>are not T1 encoded. Your example generates an error as the letter environment is missing its argument so</div><div>unrelated to fonts</div><div><br></div><div>! Undefined control sequence.<br>l.9     \newfontface\Dunhill</div><div><br></div><div>You get no error if you fix the markup to</div><div><br></div><div>    \begin{letter}{abc}</div><div><br></div><div><br></div><div>David</div><div><br></div><div><br></div></div></div>