I am getting an option clash for babel using: \usepackage[greek,english]{babel}. Here is the output:
! LaTeX Error: Option clash for package babel.
Does anyone know what might be causing this? I've tried Googling and have seen many others use these options together, but I cannot get it to work. Here is my full latex heading:
\documentclass[article,11pt]{Latex/Classes/PhDthesisPSnPDF}
\raggedbottom
\setcitestyle{square}
\usepackage[normalem]{ulem}
\usepackage[greek,english]{babel}
\usepackage{amsmath}
\usepackage{amstext}
\usepackage{wrapfig}
\usepackage{graphicx}
\usepackage{algorithm}
\usepackage{algorithmic}
\makeatletter
\def\NAT@def@citea{\def\@citea{\NAT@separator}}
\makeatother
babelwith theenglishoption. The solution is to pass thegreekoption when loading the class file (\documentclass[greek,<...>]{<class>}. You could also call it with a\PassOptionsToPackage{greek,english}{babel}before\documentclass(as shown in the answers to this question) – henrique Sep 25 '13 at 18:24\documentclassis supposed to be thenameof a class not a file path\documentclass[article,11pt]{Latex/Classes/PhDthesisPSnPDF}should be\documentclass[article,11pt]{PhDthesisPSnPDF}after ensurimg thatlatex/classesis in your TeX input path. – David Carlisle Sep 25 '13 at 20:17\ProvidesClass{Latex/Classes/PhDthesisPSnPDF}[2007/09/06 v2 PhD thesis class]– henrique Sep 25 '13 at 22:09