[Tex/LaTex] Cannot build PDF on Editorial Manager

compiling

I have a TeX manuscript I would like to upload through the "Editorial Manager" platform.

However, I keep getting errors like this when the platform tries to build the manuscript :

Compilation Errors

I uploaded a zip folder containing these files :

Uploaded Files

The JounalPics folder contains the figures all in .png

I wrote the manuscript using KILE and it compiles correctly. I get the compilation errors when uploading to Editorial Manager.

What did I do wrong ? And how can I fix it ?

Edit :

Here is the log file .

Best Answer

The error message is

! Package inputenc Error: Unicode char α (U+3B1)
(inputenc)                not set up for use with LaTeX.

See the inputenc package documentation for explanation.
Type  H <return>  for immediate help.
 ...                                              

l.311 It is important to mention that α
                                         represnts the links’ hardness. Th...

Your command was ignored.
Type  I <command> <return>  to replace it with another command,
or  <return>  to continue without it.

This means that at line 311 of your TeX file you have

It is important to mention that α represnts the links’ hardness.

which should be

It is important to mention that $\alpha$ represents the links’ hardness.

The same error is probably present in the log file you get on your system. Always check for errors after a LaTeX run, every front-end will tell you if there has been any.

Related Question