The errors look like this, from the .log file:
Code: Select all
! Package inputenc Error: Unicode char fi (U+FB01)
(inputenc) not set up for use with LaTeX.
l.19 ...nd G. Avinash Reddy, `` Optimized reconfi
gurable pv array based pho...
! Package inputenc Error: Unicode char fi (U+FB01)
(inputenc) not set up for use with LaTeX.
l.24 ...lobal maximum power point (gmpp) identifi
cation of solar pv plants,...
! Package inputenc Error: Unicode char fi (U+FB01)
(inputenc) not set up for use with LaTeX.
The reason is that in your Publications.tex there are
ligatures, in this case it's the Unicode symbol fi that stands for fi (
fi
). This can happen if you copied text from somewhere. Either search and replace those ligatures with an editor, or set up the character by
\DeclareUnicodeCharacter{FB01}{fi}
Stefan