4

I'm trying to compile a cv with LaTeX and the europecv class. Compilation fails because a file named uni-global.def is missing.

After a Google search, I found that file should be into the miktex/tex/latex/unicode/data directory. However, that directory contains a data and a contrib folders, both empty. What can I do to solve that error?

Below is the code i wrote.

\documentclass[helvetica,narrow,italian,logo,totpages,booktabs]{europecv}
\usepackage[utf8]{inputenc}
\usepackage[italian]{babel}
\usepackage[T1]{fontenc}
\usepackage{textcomp}
\usepackage{graphicx}
\usepackage{geometry}
\geometry{verbose,a4paper,tmargin=1.27cm,bmargin=2cm,lmargin=1cm,rmargin=1cm}
\usepackage{microtype}

\ecvname{Albert Einistein}
\ecvnationality{Dutch}
\ecvemail{albert.einstein@relativitytheory.de}
\ecvgender{Maschio}

\begin{document}

\begin{europecv}

\ecvpersonalinfo % prints the personal info, defined in the preamble

\end{europecv}

\end{document}
Martin Scharrer
  • 262,582
Alfatau
  • 563

1 Answers1

6

It is an error in MiKteX packaging of ucs. I have made a bug report. As workaround you could copy the files of CTAN:macros/latex/contrib/ucs/data/ into the empty data directory (TDS:tex/latex/ucs/data/) and refresh the file name data base afterwards.

Update: The work around does not seem to work for the system distribution tree. But new TDS/texmf trees can be added using MiKTeX Options->Roots->Add. The files can be installed there (the directory structure tex/latex/ucs/ should be kept) and then refresh of the file name data base should work. After MiKTeX has fixed the problem by an update, the additional tree should then be removed.

Heiko Oberdiek
  • 271,626