
Aqui está um MNWE incluindo a seguinte definição com uma lista, mas o último item apresenta problemas conforme descrito no título e também o recuo do último marcador não é recuado como os outros;
\documentclass{article}
\usepackage{amsmath}
\usepackage{amssymb}
\newcommand{\R}{\mathbb{R}}
\newenvironment{definition}{}{}
\begin{document}
\begin{definition}[Two-dimensional curves]
{It is called a simple arc of a curve, the set $C$ of points $M(x,y) \in \R ^2 $
(two-dimensional Euclidean space) satisfying one of the following equivalent equations;}
\begin{itemize}
\item{
$ y=f(x), \text{ where } a,b \in \R \text{ and are also fixed} \text{,}$
}
\item{
$ F(x,y)=0, \text{ } a_1 \leq x \leq a_2,\text{ }b_1 \leq y \leq b_2 \text{ where, } a_1, a_2, b_1, b_2 \in \R \text{,}$
}
\item{
$
\left\{\begin{array}{cll}
x=g(t)\\
y=h(t)
\end{array}\right. \text{, where c_1<t< c_2} \text{ and } c_1,c_2 \in \R
\text{.}$
}
\end{itemize}
\end{definition}
\end{document}
Responder1
Minimizei e completei seu exemplo com um ambiente fictício.
c_1<t< c_2
não pode ser definido no modo de texto. Precisa estar no modo matemática.
\documentclass{article}
\usepackage{amsmath}
\usepackage{amssymb}
\newcommand{\R}{\mathbb{R}}
\newenvironment{definition}{}{}
\begin{document}
\begin{definition}[Two-dimensional curves]
{It is called a simple arc of a curve, the set $C$ of points $M(x,y) \in \R ^2 $
(two-dimensional Euclidean space) satisfying one of the following equivalent equations;}
\begin{itemize}
\item{
$ y=f(x), \text{ where } a,b \in \R \text{ and are also fixed} \text{,}$
}
\item{
$ F(x,y)=0, \text{ } a_1 \leq x \leq a_2,\text{ }b_1 \leq y \leq b_2 \text{ where, } a_1, a_2, b_1, b_2 \in \R \text{,}$
}
\item{
$
\left\{\begin{array}{cll}
x=g(t)\\
y=h(t)
\end{array}\right. \text{, where }c_1<t< c_2 \text{ and } c_1,c_2 \in \R
\text{.}$
}
\end{itemize}
\end{definition}
\end{document}
Responder2
Além de corrigir o problema imediato relacionado ao não uso do modo matemático para material matemático (como na resposta de @cfr), você também deve (a) omitir as instâncias desnecessárias de {
e }
para fins de agrupamento - em particular, \item
faznãopegue um argumento que precisa ser colocado entre chaves -, (b) seja mais objetivo ao usar o modo texto e matemático - todas essas \text
declarações são na verdade um sinal de confusão de código - e (c) seja mais cauteloso ao definir um ambiente chamado definition
; Sugiro que você carregue o amsthm
pacote e use uma \newtheorem{definition}{Definition}
diretiva.
Finalmente, não posso deixar de comentar que parece haver algo faltando em dois dos três itens principais: Como a
, b
, c_1
, e c_2
entram em jogo?
\documentclass{article}
\usepackage{amsmath,amssymb,amsthm}
\newcommand{\R}{\mathbb{R}}
\theoremstyle{definition}
\newtheorem*{definition}{Definition}
\begin{document}
\begin{definition}[Two-dimensional curves]
The simple arc of a curve is the set $C$ of points $M(x,y)\in\R^2$
(two-dimensional Euclidean space) that satisfy one of the
following equivalent equations:
\begin{itemize}
\item $y=f(x)$, where $a,b\in\R$ and are also fixed,
\item $F(x,y)=0$, $a_1 \leq x \leq a_2,$ $b_1 \leq y \leq b_2$,
where $a_1, a_2, b_1, b_2 \in \R$,
\item $\begin{cases} x=g(t)\\ y=h(t) \end{cases}$
where $c_1<t<c_2$ and $c_1,c_2\in\R$.
\end{itemize}
\end{definition}
\end{document}