Theses, Books, Title pagesabbreviation not appear in the thesis?

Classicthesis, Bachelor and Master thesis, PhD, Doctoral degree
Post Reply
ssabdoan
Posts: 4
Joined: Mon Oct 24, 2016 10:02 am

abbreviation not appear in the thesis?

Post by ssabdoan »

I'm using Latex in writing my thesis, I have a problem in inserting the list of abbreviation. It appears in the table of contents, but not in the thesis. :roll:
Here link for the template that I use:
http://www.kfupm.edu.sa/deanships/DGS/D ... mplate.zip
Last edited by ssabdoan on Tue Oct 25, 2016 11:44 am, edited 1 time in total.

Recommended reading 2024:

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

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

User avatar
Johannes_B
Site Moderator
Posts: 4182
Joined: Thu Nov 01, 2012 4:08 pm

abbreviation not appear in the thesis?

Post by Johannes_B »

The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
User avatar
Stefan Kottwitz
Site Admin
Posts: 10324
Joined: Mon Mar 10, 2008 9:44 pm

Re: abbreviation not appear in the thesis?

Post by Stefan Kottwitz »

Hi Ahmed,

welcome to the forum!

That's a Word template, not LaTeX. Maybe you should ask in a Word forum?

If you have a specific LaTeX question, let us know with some details, such as the actual LaTeX code.

Stefan
LaTeX.org admin
ssabdoan
Posts: 4
Joined: Mon Oct 24, 2016 10:02 am

Re: abbreviation not appear in the thesis?

Post by ssabdoan »

User avatar
Stefan Kottwitz
Site Admin
Posts: 10324
Joined: Mon Mar 10, 2008 9:44 pm

abbreviation not appear in the thesis?

Post by Stefan Kottwitz »

In this template, all nomenclature commands are commented out by a percent sign %, such as

Code: Select all

\usepackage{nomencl}
\makenomenclature
\renewcommand{\nomname}{LIST OF ABBREVIATIONS}
\nomenclature{LED}{Light Emitting Diode}
\printnomenclature [2.5 cm]
You need to remove the % at the beginning of those lines.

You also need to run makeindex. That's an external program. Read a bit about it in the nomencl manual.

Stefan
LaTeX.org admin
ssabdoan
Posts: 4
Joined: Mon Oct 24, 2016 10:02 am

Re: abbreviation not appear in the thesis?

Post by ssabdoan »

I remove the %, and the title List of abbreviation appears in the table of contents, but not appear in the page>
I read this pdf file before, but I failed to solve the problem.
Thank you for your time
User avatar
Stefan Kottwitz
Site Admin
Posts: 10324
Joined: Mon Mar 10, 2008 9:44 pm

Re: abbreviation not appear in the thesis?

Post by Stefan Kottwitz »

You did not run makeindex, at least you did not mention it.
LaTeX.org admin
ssabdoan
Posts: 4
Joined: Mon Oct 24, 2016 10:02 am

Re: abbreviation not appear in the thesis?

Post by ssabdoan »

I'm a beginner user in Latex, I don not know what run makeindex mean. Thank you, I will read about it.
Hamza Mir
Posts: 1
Joined: Wed Feb 01, 2017 9:21 am

abbreviation not appear in the thesis?

Post by Hamza Mir »

For all those using Latex Tex version for kfupm thesis, here is how to solve the nomenclature Issue:
In the loa.tex file replace

Code: Select all

\addcontentsline{toc}{chapter}{\, \, \, LIST OF ABBREVIATIONS}{\pageref{LOA}}
With

Code: Select all

\addtocontents{toc}{\contentsline {chapter}{\numberline {}LIST OF ABBREVIATIONS}{\pageref{LOA}}}
Also, Run Pdflatex then Run MakeIndex and then Run Pdflatex and Then Run Viewpdf (In same sequence)

Also in Options > Configure Texmaker > Commands > Make Index Window, write the following code
makeindex %.glo -s nomencl.ist -o %.gls -t %.nlg
OR
makeindex %.nlo -s nomencl.ist -o %.nls -t %.nlg

I saw this issue on an old posts, so hope it helps.
Post Reply