GeneralError in Appended TEX file containing List of Publications

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
Matam
Posts: 29
Joined: Thu Jun 07, 2018 12:12 pm

Error in Appended TEX file containing List of Publications

Post by Matam »

To my thesis, I want to add a separate file containing my List of Publications. I have named it as Publications.tex and stored in a separate folder. I called this Publications.tex file in my main thesis.tex file. It is giving error related to three publication texts. Interestingly, it shows no error for other publications that are having same format publication texts. Further, I am attaching the PDF screen shot and TEX file named 'Publications', log file for your ready reference. Could you please help me remove the error text in the file.

The code I used to add this new file (name: publications) into my thesis file is given below. I think the code is correct and has no errors. The problem is the way the publications are mentioned in the file:
....
\newpage
\addcontentsline{toc}{chapter}{List of Publications}
\chapter*{\huge{List of Publications}}
\thispagestyle{plain}
\input{Publications/Publications}
Attachments
Publications.tex
(1.76 KiB) Downloaded 303 times
00ManjuThesisMainText.log
(123.31 KiB) Downloaded 365 times
publications.png
publications.png (87.27 KiB) Viewed 3487 times

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

Stefan Kottwitz
Site Admin
Posts: 10335
Joined: Mon Mar 10, 2008 9:44 pm

Error in Appended TEX file containing List of Publications

Post by Stefan Kottwitz »

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
LaTeX.org admin
Matam
Posts: 29
Joined: Thu Jun 07, 2018 12:12 pm

Error in Appended TEX file containing List of Publications

Post by Matam »

Excellent. It worked. Please, find the screen shot.

I have entered the code in Preamble and here is the result.
Attachments
Publications_NOERROR.png
Publications_NOERROR.png (166.11 KiB) Viewed 3466 times
Post Reply