
Estoy trabajando bien en mi documento al dorso hasta que inserté la cita cuando aparece el siguiente error después de usarlo \printbibliography
para generar la lista de referencias:
Undefined control sequence. main.tex line 60
The compiler is having trouble understanding a command you have used. Check that the command is spelled correctly. If the command is part of a package, make sure you have included the package in your preamble using \usepackage{...}.
namepartfamily ->Zim\x
{fffd}\x {fffd}nyi
l.60 \end
{document}
The control sequence at the end of the top line
of your error message was never \def'ed. If you have
misspelled it (e.g., `\hobx'), type `I' and the correct
spelling (e.g., `I\hbox'). Otherwise just continue,
and I'll forget about whatever was undefined.
Este error desaparece cuando \printbibliography
se comenta, pero luego no se genera una lista de referencias. Puedo confirmar que agregué todos los paquetes requeridos. Vea el documento a continuación:
\documentclass[a4paper,10pt]{report}
\usepackage{biblatex}
\addbibresource{references.bib}
\usepackage{graphicx}
\usepackage[top=25mm, bottom=25mm, left=25mm, right=25mm]{geometry}
\begin{document}
\input{titlepage}
%Table of content
\tableofcontents
%Abasract page
\newpage
\Large
\begin{center}
\addcontentsline{toc}{section}{Abstract}
\textbf{\textit Abstract}
\end{center}
\hspace{10pt}
%\normalsize
This is a simple one-page abstract template. Please keep your abstract length at one page. The abstract should be in English.
\newpage
%begin main document
\chapter{Introduction}
\section{Statement of Problem}
This is the beginning of the introduction section.
%\subsection{Research Questions}
\section{Motivation}
\section{Research Objectives}
\section{Pre-Thesis Structure}
%===CHAPTER TWO ===
\chapter{Fundamental Concepts}
%=== CHAPTER THREE ===
\chapter{State of the Art}
\section{Transport}
%=== CHAPTER FOUR ===
\chapter{Material and Methods}
%=== CHAPTER FIVE ===
\chapter{Pilot Study}
%=== Reference Lists ====
\printbibliography
\end{document}
Respuesta1
Su .bib
archivo probablemente contenga una línea como
author = {József Zimányi},
(todos los créditos por el trabajo detectivesco de descubrir el nombre van aLian Tze Limenlos comentarios). Es muy probable que su .bib
archivo esté codificado en UTF-8 u otra codificación que no sea ASCII.
Pero con su preámbulo (y el sistema TeX obsoleto en el dorso), LaTeX espera solo entrada US-ASCII (un LaTeX más actual usará UTF-8 como codificación predeterminada). La forma más sencilla de hacer que todo vuelva a funcionar es decirle a LaTeX que desea utilizar UTF-8 con
\usepackage[utf8]{inputenc}
Es posible que tengas que borrar el caché (verhttps://www.overleaf.com/learn/how-to/Clearing_the_cache) antes de poder volver a compilar limpiamente después de eso, pero luego debería obtener el resultado deseado.