I am trying to create a LaTeX document with as many Unicode characters as possible. My title is as follows:
\documentclass[12pt,a4paper]{article}
\usepackage[utf8x]{inputenc}
\usepackage{ucs}
\pagestyle{empty}
\usepackage{textcomp}
\usepackage[T1]{fontenc}
\begin{document}
The Unicode characters that follow in the corpus document are in the form
\unichar{xyz}
where xyz is an integer, for example. 97 (for "a").
Problem: for many integers, the script does not compile with an error message like:
! Package ucs Error: Unknown Unicode character 79297 = U + 135C1,
(ucs) possibly declared in uni-309.def.
(ucs) Type H to see if it is available with options.
What packages should be added to the header in order to compile a file with as many characters as possible?
source
share