commandnameprefix=always では、\highlight と \comment の衝突する定義が解決されません。何かアドバイスはありますか?

commandnameprefix=always では、\highlight と \comment の衝突する定義が解決されません。何かアドバイスはありますか?

プリアンブルに \usepackage[commandnameprefix=always]{changes} を記述したにもかかわらず、次のエラーが発生します:

LaTeX エラー: コマンド \comment はすでに定義されています。LaTeX エラー: コマンド \highlight はすでに定義されています。

以下の序文のどこが間違っているのか教えていただけますか?

前もって感謝します!

\documentclass[a4paper,12pt]{article}
\usepackage[utf8]{inputenc}
\usepackage{verbatim}
\usepackage{amsmath} 
\usepackage{mathtools}
\usepackage{graphicx}
\usepackage{amssymb}
\usepackage{float}
\usepackage{hyperref}
\usepackage{amsmath}
\usepackage[section]{placeins}
\usepackage[backend=biber,sorting=nyc,natbib,citestyle=authoryear, style=apa]{biblatex}

\usepackage[commandnameprefix=always]{changes}

\DeclareSortingScheme{nyc}{
  \sort{
    \field{presort}
  }
  \sort[final]{
    \field{sortkey}
  }
  \sort{
    \field{sortname}
    \field{author}
    \field{editor}
    \field{translator}
    \field{sorttitle}
    \field{title}
  }
  \sort{
    \field{sortyear}
    \field{year}
  }
  \sort{\citeorder}
}
\addbibresource{references.bib}
\usepackage[indent=0cm]{parskip}
\usepackage{xcolor}
\usepackage[top=2.5cm,bottom=5cm]{geometry}

% Table                                       
\usepackage{booktabs}
\usepackage{tabularx}
\usepackage{multirow}
\usepackage{pdflscape}
\usepackage{adjustbox}
\usepackage{lscape}
\usepackage{longtable}
\usepackage{tabulary}
\usepackage{colortbl}
\usepackage[font=normalsize,labelfont={bf}]{caption}
\captionsetup{justification=raggedright,singlelinecheck=false}
\usepackage{dcolumn}
\usepackage{parskip}
\usepackage{scrextend}
\usepackage{lscape}
\usepackage{easyReview}
\usepackage{array}
\usepackage{authblk}
%\newcolumntype{H}{>{\setbox0=\hbox\bgroup}c<{\egroup}@{}}
\usepackage{adjustbox}
\usepackage{ragged2e}

関連情報