It's definitely a TeX issue.

Leif Andersen and I were able to reproduce the error (thanks Leif!).

Then we ran `scribble --latex test.scrbl` to make a .tex file and
`pdflatex test.tex` for a nicer error message.

The message gives a hint that the texlive `scheme-basic` is not enough:

```
cannot open Type 1 font file for reading
```

With `scheme-full`, we were able to build a pdf. Here's our `shell.nix`:

```
{ nixpkgs ?  <nixpkgs>
, pkgs ? import nixpkgs {}
}:
with pkgs;
let
latex = texlive.combine {
  inherit (texlive)
    scheme-full
    ;};
in
pkgs.mkShell {
  buildInputs = [
    racket
    latex
  ];
}
```

-- 
You received this message because you are subscribed to the Google Groups 
"Racket Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to racket-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to