I should submit a paper with lots of math, but there is not an available latex class for the journal. However I want to use latex and biblatex (with biber).
The journal specifies, in particular, that: "if more than two authors are present refere them as: 'Bianchi et al. 2003' in the text".
I customized a great part of the bibliograhy appareance with the following code (some part refers to the style in the REFERENCE section)
\usepackage[backend = biber, style= authoryear, giveninits=true, uniquename=init, maxcitenames=2, dashed = true, isbn = false]{biblatex}
\DeclareNameAlias{sortname}{family-given}
\DeclareFieldFormat[article, book, inbook, incollection, inproceedings, misc, thesis, unpublished]{title}{#1}
\addbibresource{article.bib}
\usepackage{xpatch}
% year in the reference section must be without parenthesis
\xpatchbibmacro{date+extradate}{%
\printtext[parens]%
}{%
\setunit*{\addcomma\space}%
\printtext%
}{}{}
% et al. must be in italic
\xpatchbibmacro{name:andothers}{%
\bibstring{andothers}%
}{%
\bibstring[\emph]{andothers}%
}{}{}
However I am not able to remove the parenthesis around the year. As an example: if I consider the following book:
@book{Burroughs_PGIS_2015,
Author = {Peter A. Burrough and Rachael A. McDonnell and Christopher D. Lloyd},
Title = {Principles of Geographical Information Systems},
Publisher = {Oxford University Press},
Year = {2015},
ISBN = {0198742843},
pagetotal = 330
}
and the command
\textcite{Burroughs_PGIS_2015}
I obtain: Burrough et al. (2015) and not Burrough et al. 2015
\cite{Burroughs_PGIS_2015}? – gusbrs Jan 10 '19 at 12:19biblatexsubmissions, since the bibliography workflow forbiblatexis significantly different from that of BibTeX/thebibliography. See https://tex.stackexchange.com/q/12175/35864. If the journal wants your.texcode and not just a PDF you should contact the editor to check if they can acceptbiblatex. – moewe Jan 10 '19 at 12:28elsarticleloadsnatbiband comes with ready-made.bststyles. Even though https://www.elsevier.com/authors/author-schemas/latex-instructions states that many Elsevier journals accept PDF submissions, I would still stick to their advice and useelsarticleand BibTeX. – moewe Jan 10 '19 at 12:34