Membuat List Simbol, Abbrevation, dengan menggunakan \numenclature di LATEX


bikin list simbolAssalamu’alaykum Warahmatullah Wabarakatuh

Bismillahirrahmanirrahim

In the name of God (ALLAH) the Most Gracious, the Most Merciful

Saya menggunakan Texmaker, sebelum memakai fitur \usepackage{nomencl}, kita perlu mensetting MakeIndex sebagai berikut:

The software that I use to make LaTeX is Texmaker. Before we are able to use the fiture in \usepackage{nomencl}, we need to set up the MakeIndex command as follow.

Option > Configure Texmaker > Makeindex.

Di dalam box MakeIndex tulis command berikut ini:

Hence, in the MakeIndex box, we write the command to activate this feature as:

makeindex %.nlo -s nomencl.ist -o %.nls

Silahkan copy paste list di bawah ini untuk mencobanya.

You can directly copy paste the LaTeX script in below to try and taste making the Nomenclature.

————-
\documentclass{article}
\usepackage[intoc]{nomencl} %intoc untuk memasukkan ke dalam daftar isi
\makenomenclature % taruh sebelum \begin{document}
\renewcommand{\nomname}{Symbols}
\begin{document}
\section*{Main equations}
\begin{equation}
a=\frac{N}{A}
\end{equation}%
\nomenclature{$a$}{The number of angels per unit area}%
\nomenclature{$N$}{The number of angels per needle point}%
\nomenclature{$A$}{The area of the needle point}%
The equation $\sigma = m a$%
\nomenclature{$\sigma$}{The total mass of angels per unit area}%
\nomenclature{$m$}{The mass of one angel}
follows easily.
% taruh di tempat/halaman yang disukai untuk menampilkan list simbol
\printnomenclature
\end{document}
——————

Cara menjalankannya yaitu F6 F12 F6, untuk awalan klik F6 dan F12 yang banyak kemudian cek dengan F7.

To operate this script, press the buttons of F6 F12 F6 many times until it appeares after you press F7 button

F6 adalah (denotes) PDFLaTeX
F7 adalah (denotes) viewPDF
F12 adalah (denotes) MakeIndex

Semoga bermanfaat.

I hope this article gives benefit for you who need it. 

Lengkapnya silahkan merujuk ke:

You can refer to below URL to obtain better more complete and detail information:

http://ftp.jaist.ac.jp/pub/CTAN/macros/latex/contrib/nomencl/nomencl.pdf

Wassalamu’alaykum