I am very new to LaTeX, and am using it for the first time on a group presentation project using beamer. However, I am getting constant errors at one or two places, with no possible explanation.
An excerpt of the code I am trying to run is:
Code: Select all
\begin{frame}
\frametitle{Dominance Solvable Voting Scheme}
\begin{itemize}
\item \emph {DEFINITION 2}: An n-player voting scheme is an $(n+2)$ tuple $(X_1,…,X_n,A,\pi)$ where:
\item $A$ : the finite set of alternatives
\item $X_i$ strategy set of player $i$
\item $pi$ a mapping from $X_1 * … * X_n$ into $A$ selecting a particular alternative for every decision of the players.
\item One additional Structure: The preference profile describing how the players order the possible decisions in $A$.$
\end{itemize}
\end{frame}
\begin{frame}
\frametitle{Assumptions}
\begin{itemize}
\item \emph {Assmption}: Ordering of $A$ \rightarrow Each player has a strict ordering on $A$ (For simplicity)
\item $U$ : the set of one-to-one mapping from $A$ into $R$ then every strict ordering on $A$ corresponds to a subset of $U$, the space of utility functions.
\end{itemize}
Code: Select all
LaTeX Warning: Command \^ invalid in math mode on input line 185.
! Package inputenc Error: Keyboard character used is undefined
(inputenc) in inputencoding `latin1'.
See the inputenc package documentation for explanation.
Type H <return> for immediate help.
...
l.185 \end{frame}
\end{frame}
. I have tried deleting and retyping it, deleting the line altogether and pasting the end of a previous slide that had no errors, re-writing the code for the slide entirely, but I cannot get around this error. Can anyone help me fix this?