\section*{Appendix}
does not solve the issue (equation numbering is not desirable for it).Note that I have one and only one Appendix section.
Please be kind enough to help me to solve the problem.
Code: Select all
\documentclass[final,3p,times]{elsarticle}
\usepackage{graphics}
\usepackage{epsfig}
\usepackage{amssymb,amsfonts,amsmath,amsthm}
\usepackage[titletoc,toc,title]{appendix}
\usepackage{hyperref}
\hypersetup{colorlinks = true,linkcolor = blue, anchorcolor = blue, citecolor = blue, pdfstartpage=1, filecolor = red,urlcolor = red}
\usepackage{hypcap}
\usepackage{lineno}
%*******************************************************************
%NECESSARY TO OBTAIN THE SECTIONS, SUBSECTIONS, ETC. DEFINED AS 1.1., 2.1.3. FOR INSTANCE
%*******************************************************************
\renewcommand\thesection{\arabic{section}}
\renewcommand\theequation{\thesection.\arabic{equation}}
\renewcommand\thesubsubsection{\thesubsection.\arabic{subsubsection}}
\renewcommand\theequation{\thesection.\arabic{equation}}
\biboptions{comma,square,sort&compress}
\begin{document}
\section{Introduction}
\label{intro_a}
\noindent Study
\begin{align}
a=b+c
\end{align}
\section{abs}
Let
\begin{align}
c=d+r
\end{align}
\appendix
\renewcommand\thesection{\arabic{section}}
%\chapter{Only Appendix}
\section{Appendix}
\noindent \textbf{Computation of A, B, C}
\label{appendix}
\vspace{2em}
\noindent Throughout this section,
\begin{align}
A=a+b+c
\end{align}
\end{document}