Hello sphinx-users,
I'm trying to parse .tex files into PDFs. I'm getting the same error as
https://groups.google.com/forum/#!topic/sphinx-users/c02bzqio7mo, only with a different unicode character:
$ make -C $(BUILDDIR)/latex all-pdf
! Package inputenc Error: Unicode char \u8:├ not set up for use with LaTeX.
is there a specific package I should be using in my preamble? My .tex file preamble looks like this:
\def\sphinxdocclass{report}
\documentclass[letterpaper,10pt,english]{sphinxmanual}
\usepackage[utf8]{inputenc}
\DeclareUnicodeCharacter{00A0}{\nobreakspace}
\usepackage{cmap}
\usepackage[T1]{fontenc}
\usepackage{babel}
\usepackage{textalpha}
\usepackage{times}
\usepackage[Bjarne]{fncychap}
\usepackage{longtable}
\usepackage{sphinx}
\usepackage{multirow}
i tried using '\DeclareUnicodeCharacter{251C}{├}', but the make command just freezes when trying to parse that character within the .tex file. Penny for your thoughts?
Thanks!
Matt Fisher