I have a great problems yesterday with my Lyx's file, and I had to make again all over again (from source code, of course). The real problem is Theorems, Lemmas, etc appears in English and I need appears in Spanish. Now the definitions of theorems are
Code: Select all
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Textclass specific LaTeX commands.
\theoremstyle{plain}
\ifx\thechapter\undefined
\newtheorem{thm}{Theorem}
\else
\newtheorem{thm}{Theorem}[chapter]
\fi
\theoremstyle{definition}
\newtheorem{defn}[thm]{Definition}
\theoremstyle{plain}
\newtheorem{lem}[thm]{Lemma}
\theoremstyle{remark}
\newtheorem{notation}[thm]{Notation}
But I need this
Code: Select all
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Textclass specific LaTeX commands.
\theoremstyle{plain}
\ifx\thechapter\undefined
\newtheorem{thm}{Teorema}
\else
\newtheorem{thm}{Teorema}[chapter]
\fi
\theoremstyle{definition}
\newtheorem{defn}[thm]{Definición}
\theoremstyle{plain}
\newtheorem{lem}[thm]{Lema}
\theoremstyle{remark}
\newtheorem{notation}[thm]{Nota}
With my last Lyx file I could do this without any extra code, just putting some things in spanish, but I've trying a least a couple of hours and I can't.
Does anyone know how can I change that?
Thanks in advance.