because LaTeX matters

Latex glossary and list of acronyms.

According to Wikipedia , a glossary is an alphabetical list of terms in a particular domain of knowledge with the definitions for those terms. It doesn’t come as a surprise that there are several LaTeX packages that assist with the generation of glossaries. Among them are the nomencl package , the glossary package , and the glossaries package . Nomencl has been around for quite some time and I previously wrote about it on this blog . Glossary is obsolete and has been replaced by glossaries, the most recent and flexible of the three packages. Here, I’ll introduce the glossaries package and provide some code that I hope will help non-expert LaTeX users to generate a glossary or list of acronyms.

Overview of the steps to generate a glossary

  • Prepare the tex file
  • Load the package
  • Tell LaTeX to generate a glossary
  • Define the terms and their definitions
  • Use the terms
  • Print the glossary
  • Typeset the document
  • Generate the index file
  • Typeset the document again

A basic example

basic_glossaries

Most commands are straight forward. A few remarks on the term definition command \newglossaryentry . The first argument it takes is the label used to produce the term later. The second argument is a key-value pair defining the term and its description. Curly brackets are required if name or description consist of multiple words, commas, etc.

Capitalize and pluralize terms

The command \gls produces the name of the term given the label. To capitalize the first letter or pluralize the term, the package implements additional commands.

Acronyms are different from glossary entries. For acronyms, the definition is produced in the text with the acronym in parentheses. For glossary entries, only the name is produced. The package distinguishes between glossary and list of acronyms. To do that, the user defines acronyms differently from glossary entries.

By default, acronyms are produced as part of the glossary. To generate a separate list of acronyms, the package needs to be loaded with the acronym option.

Let’s see what the basic example above looks like when we define the terms as acronyms and use the acronym option.

And here is an example of a document with a list of acronyms.

basic_glossaries_acronym

The same alternative commands as for the glossary are used to capitalize and pluralize acronyms.

Generate the glossary or list of acronyms

Probably the trickiest part comes next. The formatted glossary or list of acronyms needs to be generated from the list of glossary entries or acronyms using makeindex . Your editor might have a button, but in general the files are generated in the terminal/command-line. The package author provides a Perl script makeglossaries that greatly simplifies this step. However, it requires Perl to be installed on your computer.

After typesetting the document once (latex/pdflatex), go to the terminal, navigate to the project folder and try the following:

Replace filename with the name of your tex document.

If this doesn’t work, you probably don’t have Perl installed and need to use makeindex instead (see below). If you manage to run the Perl script but some entries are rejected, the problem is in the LaTeX code.

Here is my makeglossaries output for glossary and list of acronyms:

makeglossaries_output_glossary

Using makeindex to generate the glossary or list of acronyms

Again, replace “filename” with your the name of your tex document.

About these files:

  • *.ist : an input style file, generated by LaTeX.
  • *.glo, *.acn : definition files containing the glossary terms, acronyms respectively, generated by LaTeX
  • *.gls, *.acr : makeindex outputs containing the formatted glossary, list of acronyms respectively.

Produce the glossary or list of acronyms in the document

If this worked, you’re almost done. All you need to do now is go back to the LaTeX document and typeset it again. The glossary or list of acronyms should show up in the document now. Typeset again to make sure the table of contents is updated.

  This concludes the basics on glossaries. I might write more about this package later. If you have questions, see the package documentation on CTAN or drop me a comment below. Thanks.

Share this:

39 comments.

' src=

20. January 2014 at 7:47

Thanks for the good write up this is a very useful tool for any type of technical document writing which relies heavily on acronyms and other jargin.

' src=

20. July 2014 at 13:56

Hi, anybody can tell why my list of glossaries and acronyms not generated, although they appear in the text.

' src=

24. July 2014 at 10:52

Do you do this:

Please provide a minimal working example and I’ll see what I can do…

' src=

4. July 2017 at 16:00

Hi! I have copied the example above about Acronyms but even using \printglossaries the list doesn’t appear

6. July 2017 at 13:49

Thanks for your comment. Did you run makeglossaries in the command line as explained towards the end of the article?

' src=

30. July 2014 at 15:33

Hi, great entry, really helped me! On addition for people with similar problems; in Texmaker you can’t define the three commands for makeindex in the makeindex-field. You have to either specify it as custom command or enter it manually into your compile-line like this:

With this your acronyms and glossary will shop up correctly.

5. August 2014 at 11:36

Thanks, good to know! Tom

' src=

4. August 2018 at 18:56

Thank you very much, I was stuck and your solution worked like a charm. However, I have just one more question: “Am i obliged to execute all these commands each time I update my list of acronyms ?

Best Regards, Arslane

13. August 2018 at 20:07

That’s right. If you update the list of acronyms, you would have to rerun the command. What I usually do is write a shell/batch script that contains all the commands (latex, bibtex, glossaries, etc.) and then just run the script or use latexmk .

' src=

3. August 2014 at 16:08

Thanks for this post. How can I add some space between the Abbreviation and its full form. They are very close to each other, I need some space between them.

5. August 2014 at 11:34

You can add more space between the abbreviation and the full name by redefining \glsnamefont :

' src=

20. August 2014 at 20:44

makeindex procedure worked for me on Windows through command prompt. Thanks.

' src=

20. October 2014 at 14:12

Thanks for the post.

There is an issue when the acronym is firstly defined in plural: No gap between the expanded version and the acronym in parenthesis

21. October 2014 at 19:06

Did you try the glossaries package which supports singular and plural forms of acronyms ( \gls{abc} and \glspl{abc} )?

Cheers, Tom

22. October 2014 at 11:33

Yes I am using this package. The problem I am having it the following: Assume I have the acronym ACR. Then if the expanded version appears in text for the first time in plural, I get ”…Acronyms(ACRs)…”

Currently I have identified the following problem in the filename.glsdefs file: firstplural={Acrpnyms(ACNs)},%

To solve it, I manually enter a gap in the file.

Perhaps there is a smarter way to solve the issue.

Cheers, Dim.

22. October 2014 at 11:52

According to the bug tracker here , moving the definition of the acronym to the preamble solves the issue.

Personally, I have all acronyms in a file called ‘acronyms.tex’. I load the file in the preamble using:

' src=

26. February 2015 at 13:12

Hi, can you fix the unavailable images especially for the part of “Make glossaries output ?

10. March 2015 at 14:54

Hi there, thanks for telling me. I’m working on the issue. It should be fixed for this particular article now. Best, Tom.

' src=

20. April 2015 at 15:59

And about the first methode, i have these messages :

audric-jan:~ audricjan$ makeglossaries rapport makeglossaries version 2.14 (2014-03-06) Auxiliary file ‘rapport.aux’ doesn’t exist. Have you run LaTeX?

audric-jan:~ audricjan$ makeglossaries /Users/audricjan/Desktop/rapport\ tex/rapport.aux makeglossaries version 2.14 (2014-03-06) added glossary type ‘main’ (glg,gls,glo) added glossary type ‘acronym’ (alg,acr,acn) The file extension ‘aux’ doesn’t correspond to any known glossary extension. Try running makeglossaries without an extension, e.g. makeglossaries “/Users/audricjan/Desktop/rapport tex/rapport”.

23. April 2015 at 6:14

The second methods should work if you do what it says in the last line. Try running makeglossaries without an extension (remove .aux).

Let me know if you run into more issues.

23. April 2015 at 10:03

Sorry, i made a mistek in my precedent message, you can forget it..

The message i have is :

audric-jan:~ audricjan$ makeglossaries /Users/audricjan/Desktop/rapport\ tex/rapport makeglossaries version 2.14 (2014-03-06) added glossary type ‘main’ (glg,gls,glo) makeindex -s “rapport.ist” -t “/Users/audricjan/Desktop/rapport tex/rapport.glg” -o “/Users/audricjan/Desktop/rapport tex/rapport.gls” “/Users/audricjan/Desktop/rapport tex/rapport.glo” Index style file rapport.ist not found. Usage: makeindex [-ilqrcgLT] [-s sty] [-o ind] [-t log] [-p num] [idx0 idx1 …]

***Call to makeindex failed***

Possible cause of problem:

Style name indicates makeindex, but may be in xindy format. Remember to use \setStyleFile to specify the name of the style file rather than redefining \istfilename explicitly.

Check ‘/Users/audricjan/Desktop/rapport tex/rapport.glg’ for details audric-jan:~ audricjan$

23. April 2015 at 10:46

Please remove the white space in your document folder, e.g. rename “rapport tex” to “rapport_tex”. Then delete meta files such as .aux, .glg, .gls, .glo, .ist and rerun LaTeX and makeglossaries. If that doesn’t help, post a minimal example here. That is, a LaTeX document with just one glossary entry and no or little content. I will then run it on my computer and try to advise.

23. April 2015 at 11:16

Thank you for your help. I tried with deleting the space, but it still doesn’t work and i have the same message..

Here is my program :

23. April 2015 at 11:40

Your code is absolutely fine. All you have to do is change directory and run makeglossaries from within the project folder, rather than using the path to the file.

Also, to change the heading use the following line rather than \chapter :

23. April 2015 at 11:34

hi! it’s ok now! shame on me..i didn’t know i have to write “sudo” before “makeglossaries”….

23. April 2015 at 11:42

Please see my response. On my computer, using sudo doesn’t fix the problem…

23. April 2015 at 11:49

It’s strange, all it’s ok for me, only chen “sudo”.. maybe it’s better that i let it like this! In all the cases, thank you very much for you time tom!

Just a last question, do you know how i can delete the number page that is written after each word in the glossary?

29. April 2015 at 9:02

This should help you Remove page number in glossary .

' src=

27. November 2015 at 15:39

Thanks. I was using ‘makeglossaries’ with the name of my glossaries file and couldn’t for the life of me figure out why it wasn’t working! Thanks for pointing me in the right direction

27. November 2015 at 15:55

Glad you found the information here useful. Thanks for your comment. Best, Tom

' src=

1. June 2016 at 20:19

Please help !!! I didn’t understand this error even though I have already installed perl

” makeglossaries : The script interpreter could not be found.

makeglossaries: Data: scriptInterpreter=”perl.exe”

Process exited with error(s) ”

7. June 2016 at 16:46

As I won’t be able to reproduce the problem, I can’t offer you any specific help. What comes to my mind is that either Perl was not properly installed or makeglossaries cannot find the software. You can find some suggestions on the former here and on the latter here . Alternatively, you could try to generate the glossaries using makeindex ( see here ).

Best wishes, Tom

' src=

17. October 2016 at 13:17

I’m using Papeeria to create an Latex-file. I like to create a list of acronyms but I don’t have Perl on my computer. Now I have followed to procedure with makeindex but it still doesn’t work. So I wondered if it was possible to perhaps give me a extensive example or are there other methods to create a list of acronyms?

Kind regards

18. October 2016 at 23:04

The alternative would be to use the acronym package , but there is no difference. You would still have to use makeindex .

I’m not familiar with Papeeria, but maybe they can help you. If you’d like to run it on your computer, you’ll have to open the command line, navigate to the project directory and then use the makeindex command to create a list of acronyms. You might have to first typeset the document using (pdf)latex .

I might be able to help if you send me the error you get from makeindex or describe the problem.

' src=

17. November 2016 at 17:01

thank you very much for this helpful guide!!

I have a quaestion: when I use tableofcontents the Glossary section (which is correctly generated) is not taken into account in the table of content..

Can you help me?

Thanks in advance,

18. November 2016 at 21:48

Thanks for your question. Try loading the package with these options:

Let me know if it worked.

' src=

6. February 2017 at 13:36

I have used the following code to for list of abbreviations. abbreviations are creating but i am not able to generate the list. please anybody help me to print the list after table of contents

7. February 2017 at 10:47

You’ll have to create the list using makeglossaries or makeindex , either in your editor or in the terminal/commandline. This is explained towards the end of the article. Let me know if you have further questions.

' src=

15. November 2019 at 19:45

Thanks for this useful entry. Users might like to know that updating of the glossary items is effected if you put the \newglossaryentry commands before \begin{document}. (Sorry if this is already commented on — I didn’t read the entire chain.) Check this entry for details: https://tex.stackexchange.com/questions/270098/glossary-entry-not-updated

Leave a Reply Cancel reply

We love good questions

Skip to content

LaTeX.org on Twitter - follow us

  • Impressum and Privacy Policy
  • About LaTeX
  • Board index LaTeX's Friends MakeIndex, Nomenclature, Glossaries and Acronyms
  • Ask a question LaTeX    Text Formatting    Graphics, Figures & Tables    Math & Science    Fonts & Character Sets    Page Layout    Document Classes    General LaTeX's Friends    BibTeX, biblatex and biber    MakeIndex, Nomenclature, Glossaries and Acronyms    Conversion Tools    Viewers for PDF, PS, and DVI    XeTeX    Others LaTeX Distributions    Decision Guidance    MiKTeX and proTeXt    TeX Live and MacTeX    Others LaTeX Editors    Decision Guidance    AUCTeX    Kile    LEd    LyX    Scientific Word/Workplace    Texmaker and TeXstudio    TeXnicCenter       Announcements       General       Templates, Wizards & Tools       Feature Suggestions       Development    TeXShop    TeXworks    WinEdt    WinShell    Others LaTeX Templates    Articles, Essays, and Journal Templates    Theses, Books, Title pages    Letters    Presentations and Posters    Curricula Vitae / Résumés    Assignments, Laboratory books and reports    Calendars and Miscellaneous LaTeX Community    Announcements    Community talk    Comments & Wishes    New Members LaTeX Books    LaTeX Beginner's Guide    LaTeX Cookbook

LaTeX forum ⇒ MakeIndex, Nomenclature, Glossaries and Acronyms ⇒ Creating list of abbreviations

Creating list of abbreviations.

Post by tapanjain » Tue Jan 03, 2017 9:55 am

Post by BlackForestrian » Tue Jan 03, 2017 11:31 am

User avatar

Post by cgnieder » Wed Jan 25, 2017 2:31 pm

Return to “MakeIndex, Nomenclature, Glossaries and Acronyms”

  •     Text Formatting
  •     Graphics, Figures & Tables
  •     Math & Science
  •     Fonts & Character Sets
  •     Page Layout
  •     Document Classes
  •     General
  • LaTeX's Friends
  •     BibTeX, biblatex and biber
  •     MakeIndex, Nomenclature, Glossaries and Acronyms
  •     Conversion Tools
  •     Viewers for PDF, PS, and DVI
  •     XeTeX
  •     Others
  • LaTeX Distributions
  •     Decision Guidance
  •     MiKTeX and proTeXt
  •     TeX Live and MacTeX
  • LaTeX Editors
  •     AUCTeX
  •     Kile
  •     LEd
  •     LyX
  •     Scientific Word/Workplace
  •     Texmaker and TeXstudio
  •     TeXnicCenter
  •        Announcements
  •        General
  •        Templates, Wizards & Tools
  •        Feature Suggestions
  •        Development
  •     TeXShop
  •     TeXworks
  •     WinEdt
  •     WinShell
  • LaTeX Templates
  •     Articles, Essays, and Journal Templates
  •     Theses, Books, Title pages
  •     Letters
  •     Presentations and Posters
  •     Curricula Vitae / Résumés
  •     Assignments, Laboratory books and reports
  •     Calendars and Miscellaneous
  • LaTeX Community
  •     Announcements
  •     Community talk
  •     Comments & Wishes
  •     New Members
  • LaTeX Books
  •     LaTeX Beginner's Guide
  •     LaTeX Cookbook

Who is online

Users browsing this forum: No registered users and 4 guests

  • Board index
  • All times are UTC
  • Text Formatting
  • Graphics, Figures & Tables
  • Math & Science
  • Fonts & Character Sets
  • Page Layout
  • Document Classes
  • BibTeX, biblatex and biber
  • MakeIndex, Nomenclature, Glossaries and Acronyms
  • Conversion Tools
  • Viewers for PDF, PS, and DVI
  • Decision Guidance
  • MiKTeX and proTeXt
  • TeX Live and MacTeX
  • Scientific Word/Workplace
  • Texmaker and TeXstudio
  • Announcements
  • Templates, Wizards & Tools
  • Feature Suggestions
  • Development
  • Articles, Essays, and Journal Templates
  • Theses, Books, Title pages
  • Presentations and Posters
  • Curricula Vitae / Résumés
  • Assignments, Laboratory books and reports
  • Calendars and Miscellaneous
  • Community talk
  • Comments & Wishes
  • New Members
  • LaTeX Beginner's Guide
  • LaTeX Cookbook

Home » LaTeX » LaTeX: Add List of Abbreviations / Nomenclature

LaTeX: Add List of Abbreviations / Nomenclature

You might need to print the list of symbols or list of abbreviations for your LaTeX document. nomencl package can be used for this purpose.

You need to load the nomencl package in the preamble of your document. The command \makenomenclature will instruct LaTeX to open the nomenclature file filename.nlo corresponding to your LaTeX file filename.tex and to write the information from your \nomenclature commands to this file.

Then, you need to define your nomenclature abbreviation and its description in your document.

You need to use printnomenclature macro where you want to print your nomenclature.

You can also specify the distance between the symbol/abbreviation and its description text.

Finally, you need to use MakeIndex program to generate the nomenclature list. Without makeindex, the list will not be generated.

In the following command, we instruct MakeIndex to use filename.nlo as our input file, use nomencl.ist as our style file, and write output to the file filename.nls .

You need to build your main latex file before and after makeindex.

By default, the title of the nomenclature is Nomenclature . We can change it to our desired name with the renewcommand . Below, we have changed the title of the nomenclature to List of Abbreviations .

Here is the complete code to create a document with a list of symbols/abbreviations:

Below is the pdf file generated after you compile the above LaTeX source:

You can find about other nomenclature plugins over here: http://en.wikibooks.org/wiki/LaTeX/Indexing

Share this:

Related posts:.

  • LaTeX: Add Paragraph and Line Spacing
  • LaTeX: Roman numbers in enumerate list and adjust space between list items
  • LaTeX: How to add bibliography and references?
  • LaTeX: Remove Chapter Name and Number
  • LaTeX: Numbering subsubsection and showing it in Table of Contents

Search code, repositories, users, issues, pull requests...

Provide feedback.

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly.

To see all available qualifiers, see our documentation .

  • Notifications

武汉大学本科毕业论文 LaTeX 模版 2024

Hong-WJ/whu-thesis-2024

Folders and files, repository files navigation, 武汉大学毕业论文 latex 模板.

License: MIT

本项目为武汉大学本科毕业论文 LaTeX 模板,基于WHUTUG的模板 武汉大学毕业论文 LaTeX 模版 进行了修改以符合计算机学院2024的格式要求

已更新Overleaf模板: whu-thesis-2024 - Overleaf, Online LaTeX Editor

**注意, Overleaf 模板中目前需手动将导师参数头advisor改为advisor-name **

* 由于模板更新频繁,请确保使用 whu-thesis 的最新版本,并在使用之前将所有宏包更新至最新。

根据 《武汉大学本科生毕业论文(设计)书写印制规范》 、 武汉大学博士学位论文撰写及印制规格的规定 、 武汉大学硕士学位论文印制规定 编写,力求合规,简洁,易于实现,用户友好。

abbreviation in thesis latex

正文样例可以参照 whu-thesis-demo

开题报告样例可以参照 opening-demo

使用前请阅读 使用文档

推荐两种方式进行编辑和编译:

Overleaf 在线编译

本地编译需要安装 TeX 发行版软件, 具体可参见 本地安装使用指南

Overleaf 是一个简洁的在线 LaTeX 编辑器。无需安装,实时共享,版本控制。该模板支持了 Overleaf 的在线编辑,可以从上面的模板链接直接创建自己的项目。

使用该模板时,需要设置 XeLaTeX 或 LuaLaTeX 为编译器,具体步骤请查看 Overleaf 在线编辑

abbreviation in thesis latex

关于模板使用、参考文献引用等常见问题请移步 Wiki

如果在使用中发现 bug ,或遇到了「 与预期效果不一致 」的情况,请按照以下步骤操作:

  • 阅读学校的 书写印制规范文件 ,判断是否符合要求;
  • 前往项目 Wiki 查看相关说明;
  • 将 TeX 发行版和宏包升级到最新,并且将模板升级到 Github 上最新版本,查看问题是否已经修复;
  • 在 GitHub Issues 中搜索该问题的关键词;
  • 提出新的 Issue ,并说明系统、TeX 版本、出现的问题等关键信息, 如果信息不全、语焉不详,您可能将不会得到很好的解答 。

如果只是「 如何使用 」上的问题,可以前往 Discussions 进行讨论;其他问题,请尽量提供完整信息,在 Issues 区提出。

  • 关于认真做好2024届本科生毕业论文(设计)答辩工作的通知
  • 支持打印模式、课程报告模式。

欢迎提交 Pull Request。

  • bsThesisWHU
  • HUSTPaperTemp
  • TJU-thesis-template
  • xdba-thesis
  • NEUBachelorThesis

No Search Results

How to get started writing your thesis in LaTeX

Writing a thesis or dissertation in LaTeX can be challenging, but the end result is well worth it—nothing looks as good as a LaTeX-produced PDF, and for large documents it's a lot easier than fighting with formatting and cross-referencing in MS Word. Here we provide a guide to getting started on writing your thesis in LaTeX, using a standard template which is pre-loaded into Overleaf.

We have a large number of thesis templates in our online library , and you can upload your own if your university provides a set of LaTeX template files.

We'll assume you've used LaTeX before and so are familiar with the standard commands (see our other tutorial videos if not), and focus on how to work with a large project split over multiple files.

  • Documentation Home
  • Learn LaTeX in 30 minutes

Overleaf guides

  • Creating a document in Overleaf
  • Uploading a project
  • Copying a project
  • Creating a project from a template
  • Using the Overleaf project menu
  • Including images in Overleaf
  • Exporting your work from Overleaf
  • Working offline in Overleaf
  • Using Track Changes in Overleaf
  • Using bibliographies in Overleaf
  • Sharing your work with others
  • Using the History feature
  • Debugging Compilation timeout errors
  • How-to guides
  • Guide to Overleaf’s premium features

LaTeX Basics

  • Creating your first LaTeX document
  • Choosing a LaTeX Compiler
  • Paragraphs and new lines
  • Bold, italics and underlining

Mathematics

  • Mathematical expressions
  • Subscripts and superscripts
  • Brackets and Parentheses
  • Fractions and Binomials
  • Aligning equations
  • Spacing in math mode
  • Integrals, sums and limits
  • Display style in math mode
  • List of Greek letters and math symbols
  • Mathematical fonts
  • Using the Symbol Palette in Overleaf

Figures and tables

  • Inserting Images
  • Positioning Images and Tables
  • Lists of Tables and Figures
  • Drawing Diagrams Directly in LaTeX
  • TikZ package

References and Citations

  • Bibliography management with bibtex
  • Bibliography management with natbib
  • Bibliography management with biblatex
  • Bibtex bibliography styles
  • Natbib bibliography styles
  • Natbib citation styles
  • Biblatex bibliography styles
  • Biblatex citation styles
  • Multilingual typesetting on Overleaf using polyglossia and fontspec
  • Multilingual typesetting on Overleaf using babel and fontspec
  • International language support
  • Quotations and quotation marks

Document structure

  • Sections and chapters
  • Table of contents
  • Cross referencing sections, equations and floats
  • Nomenclatures
  • Management in a large project
  • Multi-file LaTeX projects
  • Lengths in L a T e X
  • Headers and footers
  • Page numbering
  • Paragraph formatting
  • Line breaks and blank spaces
  • Text alignment
  • Page size and margins
  • Single sided and double sided documents
  • Multiple columns
  • Code listing
  • Code Highlighting with minted
  • Using colours in LaTeX
  • Margin notes
  • Font sizes, families, and styles
  • Font typefaces
  • Supporting modern fonts with X Ǝ L a T e X

Presentations

  • Environments

Field specific

  • Theorems and proofs
  • Chemistry formulae
  • Feynman diagrams
  • Molecular orbital diagrams
  • Chess notation
  • Knitting patterns
  • CircuiTikz package
  • Pgfplots package
  • Typesetting exams in LaTeX
  • Attribute Value Matrices

Class files

  • Understanding packages and class files
  • List of packages and class files
  • Writing your own package
  • Writing your own class

Advanced TeX/LaTeX

  • In-depth technical articles on TeX/LaTeX

Have you checked our knowledge base ?

Message sent! Our team will review it and reply by email.

IMAGES

  1. List of abbreviations in table of contents

    abbreviation in thesis latex

  2. 8 Abbreviations in LaTeX

    abbreviation in thesis latex

  3. [Tex/LaTex] How to effectively use List of Symbols for a thesis using

    abbreviation in thesis latex

  4. List of Abbreviations

    abbreviation in thesis latex

  5. [Tex/LaTex] How to effectively use List of Symbols for a thesis using

    abbreviation in thesis latex

  6. How to make list of abbreviations or nomenclature in latex: step by step explanation

    abbreviation in thesis latex

VIDEO

  1. L06: Using the Stellenbosch thesis LaTeX template in Overleaf

  2. Write mathematical equation using LaTex software

  3. Sample Thesis in LaTeX (UMS)

  4. Introduction for writing a Thesis documents using LaTeX *Full Tutorial*

  5. How to write thesis in LaTeX P1

  6. How to write a Matrix in Latex||Tex Studio

COMMENTS

  1. How to generate list of abbreviations in LaTeX?

    I used the acronym package (usepackage{acronym}) to create acronyms in my thesis. In the beginning of the document, I define the acronym as, for example, \acrodef{USA}{United States of America}. And then later to use this abbreviation I call it as \ac{USA}. How do we generate a list of Abbreviations (acronyms) as a list of figures and list of ...

  2. Nomenclatures

    The three basic commands to produce the nomenclatures are: \makenomenclature. Usually put right after importing the package. \nomenclature. Used to define the nomenclature entries themselves. Takes two arguments, the symbol and the corresponding description. \printnomenclatures. This command will print the nomenclatures list.

  3. Glossaries

    After you have defined the terms, to use them while you are typing your LaTeX file use one of the commands describe below: To print the term, lowercase. For example, \gls{maths} prints mathematics when used. The same as \gls but the first letter will be printed in uppercase. Example: \Gls{maths} prints Mathematics.

  4. Automatic Acronym List in LaTeX

    Abstract. A simple example of creating a list of acronyms using the acronym package, which supports auto-expansion on first mention, and shortening on subsequent mentions.

  5. List of symbols or abbreviations (nomenclature)

    The following command prints the abbreviation/symbol list at the corresponding position of the document. 1. \printnomenclature. To control the distance between the symbol or abbreviation and the explaining text use the optional distance argument. 1. \printnomenclature[5em] To change the name of the list use. 1.

  6. LaTeX glossary and list of acronyms

    The package distinguishes between glossary and list of acronyms. To do that, the user defines acronyms differently from glossary entries. \newacronym { label } { abbrv } { full } By default, acronyms are produced as part of the glossary. To generate a separate list of acronyms, the package needs to be loaded with the acronym option.

  7. Creating list of abbreviations

    I am writing my Thesis on Latex. I want that all the abbreviations appearing in the text should automatically generate a list at appropriate place in thesis. ... After definition of acronyms (i.e. abbreviations) you will be able to use them with the command \gls{foo} and print the full list of acronyms basically at any place you desire. Top ...

  8. PDF The glossaries package v4.54: a guide for beginners

    When you use the glossaries package, you need to define glossary entries before you can reference them. This is best done in the document preamble, as shown in the earlier examples, or in a separate file that's input in the preamble. These entries could be a word, phrase, abbreviation or symbol.

  9. 8 Abbreviations in LaTeX

    The video explains how to incorporate abbreviations in your thesis

  10. Add a glossary to your document containing terms and acronyms ...

    How to add a glossary, terms, acronyms, and abbreviations to your LaTeX document.A glossary is needed when you are using some field-specific concepts in your...

  11. How to Create a Glossary in LaTeX

    3.1. Detailed Steps. First, we need to load the glossaries package: \usepackage{glossaries} Once glossaries have been loaded, the following command is used to generate the glossary: \makeglossaries. Now, we can create entries to define our terms and definitions using the command \newglossaryentry:

  12. How to Write a Thesis in LaTeX (Part 1): Basic Structure

    The preamble. In this example, the main.tex file is the root document and is the .tex file that will draw the whole document together. The first thing we need to choose is a document class. The article class isn't designed for writing long documents (such as a thesis) so we'll choose the report class, but we could also choose the book class.. We can also change the font size by adding square ...

  13. How to make list of abbreviations or nomenclature in latex ...

    #listofabbreviations #nomenclature #abbreviationsinlatex0:00 Nomenclature in LaTeX1:28 Nomenclature packages4:17 Example of abbreviations in LaTeX9:04 Symbol...

  14. masters-thesis-latex/abbreviations.tex at master

    Latex template for writing Master's thesis in computer science and IT field. Specially designed for Tribhuvan University, Nepal. - ashokpant/masters-thesis-latex

  15. LaTeX: Add List of Abbreviations / Nomenclature

    The command \makenomenclature will instruct LaTeX to open the nomenclature file filename.nlo corresponding to your LaTeX file filename.tex and to write the information from your \nomenclature commands to this file. \usepackage{nomencl} \makenomenclature. Then, you need to define your nomenclature abbreviation and its description in your document.

  16. Basic thesis template

    This LaTeX template includes a title page, a declaration, an abstract, acknowledgements, table of contents, list of figures/tables, a dedication, and example chapters and sections. This template was originally published on ShareLaTeX and subsequently moved to Overleaf in November 2019. This Thesis LaTeX template is an ideal starting point for ...

  17. GitHub

    本项目为武汉大学本科毕业论文 LaTeX 模板,基于WHUTUG的模板 武汉大学毕业论文 LaTeX 模版 进行了修改以符合计算机学院2024的格式要求. 已更新Overleaf模板:whu-thesis-2024 - Overleaf, Online LaTeX Editor **注意, Overleaf 模板中目前需手动将导师参数头advisor改为advisor-name **

  18. How to get started writing your thesis in LaTeX

    Here we provide a guide to getting started on writing your thesis in LaTeX, using a standard template which is pre-loaded into Overleaf. We have a large number of thesis templates in our online library, and you can upload your own if your university provides a set of LaTeX template files. We'll assume you've used LaTeX before and so are ...