xhtml2pdf doesn't embed Helvetica
I'm creating a PDF with xhtml2pdf using Django. I'm sending that PDF to print, but then they say that some Fonts are not embed. I have a Helvetica font, but I didn't use Helvetica in the PDFs. Here you have a Screen Shot of the properties of the PDF As you see, Guilles'ComicFont and TF2Secondary are correclty embbeded, but not with Helvetica. Here you have my view that generates the PDF: def generate_pdf(request, book, order): try: book = Book.objects.get(pk=int(book)) order = Order.objects.get(identificador=order, cuento=book) except ObjectDoesNotExist: raise Http404 data = {} data = ast