I am a novice in Latex and I write in Greek language a report. In the report I want to write a couple of terms in english so I use the command \latintext{} but then after that command everything gets messy. What can I do? Thanks
EDIT
\documentclass{book}
\usepackage[utf8]{inputenc}
\usepackage[greek]{babel}
\usepackage{amsthm}
\usepackage{amssymb}
\usepackage{amsfonts}
\usepackage[a4paper,top=2cm,bottom=2.5cm,left=3.5cm,right=3.5cm,marginparwidth=1.75cm]{geometry}
\usepackage{amsmath}
\usepackage{graphicx}
\usepackage[colorlinks=true, allcolors=blue]{hyperref}
\usepackage{amsthm}
\usepackage{thmtools, thm-restate}
\title{Διπλωματική Εργασία}
\author{Δημήτρης Στεργίου }
\date{Σεπτέμβριος 2021}
\begin{document}
\maketitle
\chapter{}
\latintext{alexandrov}
Αυτό είναι το Πρώτο κεφάλαιο
\end{document}

\latintextand a short google search did not turn up anything useful. It is also relevant if you usebabelorpolyglossiafor localisation and if you use pdfLaTeX, LuaLaTeX or XeLaTeX to compile. – moewe Sep 12 '21 at 07:21\documentclassyou are using and which relevant packages you load in your preamble. – moewe Sep 12 '21 at 07:37\usepackage{amsthm}s. Delete the second one.\usepackage{amssymb}already loadsamsfonts, so you can drop the\usepackage{amsfonts}. Also keep in mind thathyperrefshould generally be loaded last. So you probably want to move\usepackage{thmtools, thm-restate}to before you loadhyperref. – moewe Sep 12 '21 at 07:57