Automatic Acronym List in LaTeX

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.

Automatic Acronym List in LaTeX

Get in touch

Have you checked our knowledge base ?

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

Email: 

because LaTeX matters

Latex table of contents, list of figures/tables and some customizations.

I wrote a somewhat short post on list of figures and list of tables a few years ago. Nevertheless, it gets quite a bit of traffic, possibly due to the large number of comments. For that reason, I decided to put together another, more informative post on the same topic that includes table of contents.

I use the following common abbreviations throughout the post:

  • toc: table of contents
  • lof: list of figures
  • lot: list of tables

Creating content lists, the basic commands

Controlling the depth of content added to toc, adding lof/lot to toc, short captions for lof/lot, linking toc/lof/lot with content using hyperref, further customizations, the tocloft package.

Creating content lists in LaTeX documents is straight forward. Typing these three commands is sufficient to produce a toc, lof, and lot. To produce the lists, the document has to be typeset twice. The first iteration collects all headings and captions and writes them to meta files (*.toc, *.lof, *.lot). The second iteration prints the lists, based on the content of the meta files.

simple-article-tocloflot

Depending on the document-class employed, page-breaks are added between toc, lof, and lot. Article produces lists without space between them. Report and book insert \clearpage or \cleardoublepage , depending on whether twoside and openright options are set (default for book ), to start each list on a blank page. See here for more details on document-class options.

Depending on the size of your document (length of chapters, sections, etc.), you might want to increase or decrease the level of headings added to toc. To control the depth of content added to toc the counter tocdepth is modified in the preamble as follows:

In the following example all headings are added to toc (level: 5):

toc-depth

Lists of figures and tables are not automatically added to the table of contents. I will introduce two different approaches here, an automatic and a manual approach.

Automatic approach:

Loading tocbibind ( package documentation ) adds entries for lof and lot to toc. In addition, the package adds bibliographies and table of contents itself, by default. This might not always be desirable. Therefore, specific entries can be removed from toc by loading the package with corresponding options, such as: nottoc, notbib, notlof :

Manual approach:

Lof and lot can be added manually through \addcontentsline . The command takes three arguments: the file (e.g. toc), the level (e.g. chapter), and the text to be added.

\listfigurename and \listtablename produce the list headings. This way, toc entries are automatically updated, should the headings be changed for some reason. Adding the lists to toc before the actual command as well as them makes sure the page numbers are set correctly. The document-class option openright (requires twoside in report ) always starts chapters on odd pages, which is when \cleardoublepage comes in handy. It adds either one or two page-breaks depending on whether the content ends on an even or odd page.

Some figures and tables have long captions. It might not always be preferable to reproduce the whole caption in lof/lot. The caption command provides a convenient way to produce a shorter figure/table description in the lof/lot by using its optional argument, without change to the actual figure/table caption.

long-caption-short-lof

The same works with headings and table of contents. The \chapter and \section commands also take an optional argument which, when used, produce an alternative chapter/section name in toc.

Loading hyperref ( package documentation ) is generally sufficient to link list entries with document content. With some exceptions , the hyperref package usually has to be loaded last. For a better visualisation of links, it is a good idea to change the link font color, e.g. to blue:

toc-hyperref

This earlier post describes 10 ways to customize toc/lof/lot, from basic to more advanced topics.

The tocloft package provides means of controlling the typographic design of table of contents, list of figures and list of tables (copied from its documentation ). Introducing the package would go beyond the scope of this article. However, I am happy to help should you have any specific question. Just drop me a comment below.

Share this:

116 comments.

' src=

13. June 2013 at 11:45

Hi Tom, I would like to ask how could we add a short table of contents which will contain only the chapters’ name.

' src=

13. June 2013 at 15:35

Add \setcounter{tocdepth}{0} to your preamble. The tocdepth counter controls the level of headings added to TOC (0: chapter, 1: section, etc.).

' src=

12. August 2013 at 15:25

Hi Tom, Excellent article on TOC. One question I have is, is there a way to suppress the toc title, i.e. ‘Contents’ as I am already using a fancyhead

to generate title headers and the toc title overwrites the fancyhead?

13. August 2013 at 15:41

The easiest way would be to redefine the title and leave it empty3:

' src=

8. January 2014 at 21:36

I’m using hyperref for my TOC. The issue I have is that the link is only on the chapter title and not the whole line. Because I also would like that if I click on page number, then I’m directed to that page.

Thanks for your support. Rom

10. January 2014 at 15:44

There is an package option which does exactly that. See the hyperref documentation for more details.

' src=

22. January 2014 at 23:15

Hi Tom, I need to obtain this on my LOF in the pdf file:

ex: Figure 1 akudfkadgubkadjbvadivbakidbvadivblaidvblaidvblaivblai akbadkvibadlivbadivladivbladivladivbaldivlaihlaidbldibnl aivladivlaidvb……………………………………………………………..1

I’m sorry if became a little confuse but I’m brazilian.

23. January 2014 at 1:43

You’ll have to be a little more specific what your question is about, e.g. no line-breaks in long captions. Please also give a minimal example to illustrate the problem.

Thanks, Tom.

' src=

25. July 2014 at 13:23

I think he wants the word “Figure 1.1: A study” instead of “1.1 A study” which I am also trying to do but not yet successful.

25. July 2014 at 14:37

Thanks for the comment. Adding the following two lines does exactly what were looking for:

See here for a few more customizations.

' src=

13. June 2017 at 13:47

hi tom i have same problem of adding word figure and table in list of figure and also i need to add “:” after number of figure so i used this code:

but in multilines caption it is not align always seconde ligne start before the “:” if u can help? thanks

13. June 2017 at 15:49

Below is a minimal working example that illustrates how to properly align multi-line text in the list of figures.

14. June 2017 at 13:13

Thanks tom I had another pb of appendix I add new table of content for just appendix

I had perfectly my small toc of appendix but the pb is i want to remove all appendix from principale toc but i cant

26. June 2017 at 15:07

Perhaps you find this Q&A tex.SX useful. In case this doesn’t solve your problem, please provide a minimal working example.

Thanks, Tom

' src=

28. February 2014 at 12:46

Hi Tom, I found your blog when I was looking for any answers about how not enumerate the page of lof/lot/loc? \pagestyle{empty} , \thispagestyle{empty} didn’t work as well. Thanks

3. March 2014 at 1:29

Try the following:

' src=

28. February 2014 at 21:54

I am trying to follow your example above. I want the LOF and LOT entries in the TOC to be sections. As it is below.. I get two LOF and LOT entries in the TOC (one as a section, one as a chapter) yet the hyperlink on the section entry is wrong??? Thanks

1. March 2014 at 5:43

Thanks for this question. You can use a little trick, by adding phantomsection before addcontentsline , the links are set properly.

1. March 2014 at 18:30

Great thanks Tom. I now have an issue with the sectioning…. The chapters are labeled correctly e.g Chapter 1, Chapter 2… But the sections are also labelled section 1, section 2 … not section 1.1, 1.2

Weirdly the subsections are labelled 1.1 and the figures/tables are also labelled 1.1,1.2 etc

Would really appreciate any help

3. March 2014 at 1:16

It’s the second line of your code where you define sections to be labeled with just the section number instead of chapter and section. Also, delete the last line. I’m not sure why you change it there. Commenting it out should fix the problem. Alternatively, you could replace it with:

Also, please provide a full minimal working example next time. It’s much easier to reproduce your issue that way.

Cheers, Tom.

' src=

9. May 2014 at 14:42

Hi Tom, Very useful post! I’ve an extra question. I have a pretty long table of contents that fits on one page and a few lines more on a second page. But spaces between each item are pretty large. Is there a way to reduce them, or an instruction to tell tex to fit the table of contents in one page only? Thank you very much. Pierre-Philippe

9. May 2014 at 18:07

Hi Pierre-Philippe,

If it’s only a few lines, you might use the spacing package:

Possibly a more satisfying alternative is to use the tocloft package and play with, for example, the space before each chapter entry.

Even if there was a way, I wouldn’t recommend forcing TeX to fit the ToC on a single page. What if you decide to add two more chapters a few weeks later…?

' src=

17. May 2014 at 12:14

I’m a bit new to this and have had trouble applying these ideas to my table of contents — perhaps because mine is un-numbered? I’m using the book (AMS) document class and have tocloft, and as of now, the “part” and “chapter” entries in the table of contents are set to the same indentation level. I want to make things more obvious and have the “part” entries not indented, but the “chapter” entries intended a bit. Is there any way to do this? I’ve tried throwing some things into the Preamble that I thought might work, but I keep getting error messages about “}” not being there, or there being too many.

If you have any ideas, it would be greatly appreciated! Thanks! ~J.D.

18. May 2014 at 8:25

Thanks for your comment. It seems the ams document classes are not compatible with tocloft . But what you can do is manually redefine how ToC entries are typeset. Here is a MWE to change the chapter indentation:

Hope this helps, Tom

' src=

7. August 2014 at 21:32

Hi Tom, Please I’m using the Memor Class and i want that my table of figures be like this : Figure 1.2, Figure 1.3 … and not only 1.2, 1.3 Thank you

11. August 2014 at 5:23

Here is an example:

Please consider the memoir class documentation for more details.

11. August 2014 at 6:37

Thank you for your reply. But using \cftfigurefont requires me using the tocloft package. When i use that package the format of my table of contents changes which I can’t afford to do. Can I do it it without using tocloft package?? Please help.

11. August 2014 at 7:07

This doesn’t require the tocloft package. The tocloft command is \cftfigfont . Memoir provides a lot of flexibility by implementing commands that are provided by packages for the standard classes. Just give the code I posted a try…

11. August 2014 at 8:28

you are asking me to change the class. But that will change the whole format of my thesis which I have compiled according to my university guidelines. Currently I am using a class “ThesisMtech” which I have modified according to my need. I am just not able to get this “Figure 1.1” in place of “1.1” in list of figures and list of tables. Have been trying this for 15 days now. Kindly provide some solution. I can attach my class file if you want. Thank you.

11. August 2014 at 8:54

For some reason I thought you were using the memoir class. I wonder if using tocloft and change the lof/lot style according to your needs might work.

Please prepare a minimal working example and a pointer to where I can get the ThesisMtech class file (ideally the one you modified) and I’ll see what I can do.

' src=

29. August 2014 at 6:09

I want to resize heading “List of figure” and “List of tables”, default output using \listoffigure is large list of figure written at the header, I want to align in left side with underline in normal font size. How to do that?

5. September 2014 at 3:05

Hi Ranjana,

Here’s a minimal working example, which uses the tocloft package :

' src=

7. October 2014 at 16:57

Hi Tom, whenever I use figure inserting format like below:

and I also use the: \lstinputlisting{fish.m} for importing Matlab codes, there is always a problem; program will not execute, but if I use this format:

it will run and show my Matlab codes and the diagrams. The problem now is that when I try to use the listoffigures or listoftables command to generate my list of figures and list of table respectively, it can not display the list of figures, probably, since the caption command is not used in the

when inserting my my figures. so what do I do to enable diaplay my list of figures and tables.

21. October 2014 at 19:21

You are right, the figure number will only be generated when it is wrapped in a floating environment (i.e. \begin{figure}...\end{figure} ) and has a \caption .

I wasn’t able to reproduce the issue with a Matlab input file (*.m). Could you provide a complete minimal working example. That would make it much easier for me to help.

' src=

5. October 2014 at 18:09

First of all thank you for your sharings.

On my report class document content of figures are like here:

Figure 1.1 BWM Car……………………..5 Figure 1.2 Ferrari Car……………………7

But I want a suffix at the end of each number. I want like this:

Figure 1.1. BWM Car……………………..5 Figure 1.2. Ferrari Car……………………7

*see the dot (.) after 1.1

Also this dot (.) should be on each figure explanation. I will be happy if you can help me.

Here is my all document temaplate: http://pastebin.com/UttcnKpY

Thanks in advance.

12. October 2014 at 12:14

All you have to do is add this line to your preamble. It redefines the figure number.

' src=

8. October 2014 at 19:01

Hi Tom. Thanks for the article, but I have a question.

My paper have a lot of figures in the same chapter. When I compile the LateX, however, I get Figure number overlaping its title.

I want to increase the spacing between the Figure number and the Figure title. Do you know how I do that?

12. October 2014 at 12:20

The following line of code will add extra space between the number and the caption text through the tocloft package .

' src=

24. January 2015 at 22:49

Lemme ask you dear Tom; I have this annoying problem with table of contents: I’m a beginner in Latex. When I add \tableofcontents command, Latex encounters issues with compiling. And I get “Undefined Control Sequence”.. Do I need a use package here or where lies exactly the problem?? Thank you.

14. February 2015 at 6:04

You don’t need to load a package to use \tableofcontents . Thus, the issue is with something else. However, I won’t be able to help without your code. Could you post a minimal working example here.

' src=

28. March 2015 at 0:52

Hi Tom, thanks for your post! Anyway, can you tell me how to add more horizontal space between the section’s number and its title? Cheers!

28. March 2015 at 5:30

I assume you are referring to the table of contents. The code below let’s you change the space reserved for the section number. By default, chaptered document classes use 2.3em and others such as article 1.5em . For more details see the tocloft documentation .

' src=

7. April 2015 at 12:36

Hi Dear TOm,

My TOC table and figure and table title is too long and it overlap with page numbers , Please guide me , what should I do ? Which code I should Use ??

10. April 2015 at 11:35

Long captions should automatically be wrapped in the list of figures and tables. Please provide a minimal working example for illustration of your problem and I’ll see what I can do…

' src=

18. April 2015 at 2:43

In my report, till the table of contents pages are numbered in roman and after that full report is numbered in arabic. But i’m getting only arabic page no.s in the table of contents. Please give the code to solve this. i hope u got my problem

18. April 2015 at 10:18

It’d be easier for me if you sent a minimal working example. Here a code stab that illustrates how you can have roman page numbers in the lists and later arabic page numbers.

' src=

7. May 2015 at 17:02

I have used the \addcontentline to include the figures and tables in TOC using the code mentioned here.

I would also additionally like to list in it the TOC itself on the page.

Also if it is of any help, the documentclass of article is used and the cover page, page, appendix are all roman numeral, but the main body of the report is arabic.

I would like to include the TOC in the TOC page itself and also show the roman numerals page number as has been done for the above two sections which were added added.

Please can you kindly suggest what can to be done to this end.

Regards and Thank you, Poulose PS: (Used to work earlier when I used the amsart documentclass)

10. May 2015 at 11:13

Hi Poulose,

Here’s a minimal example that adds the contents heading to the table of contents and uses roman page numbering in the front matter.

' src=

3. June 2015 at 19:32

Tom, This is a really useful blog, thanks for setting it up. Here’s my problem: we are using tocloft.sty to generate the TOC, LOF, and LOT. The TOC comes out pretty nice, but there are no “dot leaders” for the main sections (like INTRODUCTION), although there are dot leaders for the subsections. Similarly for the LOF entry in the TOC, i.e., no dot leaders. How can I force LaTeX to include dot leaders on all entries in the TOC?

Also, in the list of figures, the verbiage is bolded, and the report monitors want them unbolded. Can you help with these two issues? Thanks for your time!

3. June 2015 at 23:10

Never mind, I figured it out. The commands below will generate dot leaders for the LOF, the chapter leads, etc.

I found this in another google search.

For unbolding the LOF, just remove \bf from the caption of the figure. Interestingly, the caption is still bolded in the PDF file, but not in the LOF. Perfect.

6. June 2015 at 13:21

Great, thanks for posting your solution!

' src=

25. July 2015 at 12:31

it is helpful for us.

' src=

19. August 2016 at 19:59

Titles for non-numbered \chapter*{} entries that I add to my toc using \addcontentsline{toc}{chapter} (i.e. abstract, acknowledgements, nomenclature) appear indented compared to numbered chapter{} by about the same length that would be left between the chapter number and title. I would like all chapter titles, numbered or not to be flush with the left margin.

Right now it looks like this:

Table of Contents

Abstract Acknowledgements

List of Tables List of Figures Nomenclature

1 Introduction 2 Literature Review

How can I remove this phantom distance between the left margin and non-numbered chapter titles, while leaving it for numbered chapters?

19. August 2016 at 20:00

Apologies, my indents did not appear once posted.

22. August 2016 at 11:37

No problem, this is not your fault. HTML ignores tabs/whitespace. Best wishes, Tom

22. August 2016 at 11:35

Thanks for your question. I can’t reproduce the issue with the information you provided. In the example below, starred and non-starred chapters are properly aligned. Please provide a minimal working example similar to the one below to illustrate the behavior.

' src=

14. September 2016 at 16:07

I am writing a new thesis class for my university project, and I want to change the default chaptername {Chapter 1} to {CHAPTER ONE} with all words capitalized and would like it to be appended to toc as “CHAPTER ONE INTRODUCTION” for example, how do I go about the renewcommand.

27. September 2016 at 12:10

Hi Michael,

Thanks for your interesting question. The fmtcount package can “spell out” numbers. Below is a minimal working example, which more or less does what you asked for. You might have to change the spacing in the TOC. The tocloft package should do the trick.

Let me know if you have any further question.

' src=

9. October 2016 at 10:52

Hi Tom, what a wonderful blog!

I am doing the thesis with tha classicthesis style, but I have introduced the publications at the end of the thesis and it doesn’t appear in the contents. I have included two lines right before \chapter*{publications} :

Now it appears correctly, but when I press the link it doesn’t take me to the publications, but a few pages before.

Also, I have done the same with the abstract but at the begining right after the acronyms. As in the case of the publications the link is incorrect, and at the top, instead of being written “abstract”, “acronyms” is written

11. October 2016 at 10:17

Thanks for getting in touch. It’s difficult to help without seeing some code. Could you please provide a minimal working example.

Btw, you might find the discussion here helpful.

' src=

7. November 2016 at 12:59

Hi Tom, How could i create a toc like

ABSTRACT ACKNOWLEDGEMENT — — —

CHAPTER-1 ( 14 BOLD ALL CAP ) CHAPTER TITLE ( 14 BOLD ALL CAP ) …………………………………1 1. 1 SECTION TITLES ( 12 BOLD ALL CAP ) ………………………….3 1.1.1 SUB-SECTION TITLE ( 12 BOLD ALL CAP ) …………………..5

9. November 2016 at 18:32

Thanks for your question. You can patch the list commands to make them uppercase. This is shown here . The font size depends on your document font size. Approximate sizes and the corresponding macro can be found on this page .

' src=

2. February 2017 at 2:26

Boa noite. Estou tentando retirar a numeração da págia na lista de figuras, lista de tabelas e sumário. Fica aparecendo a numeração da parte inferior (rodapé) mesmo colocando \thispagestyle{empty}. O que posso fazer? Desde já agradeço.

Good evening. I’m trying to pull a page numbering in a list of figures, a list of tables and a table of contents. The numbering of the bottom (footer) even appears by placing \ thispagestyle {empty}. What can I do? Thank you very much in advance.

5. February 2017 at 11:54

\thispagestyle works for a single page only. Use \pagestyle{empty} instead, as shown in the example below.

' src=

9. February 2017 at 21:02

What can be the reason that TOC,LOT,LOF appear in blank, i.e. there is a sheet with their corresponding title, but without entries. I have compiled many times the document, and no different results.

13. February 2017 at 0:15

Please provide a minimal working example and I’ll be happy to take a look.

14. February 2017 at 15:05

My main document is something like this:

[…]Code removed[…]

I don’t know what i am doing wrong, TOC,LOF, and LOT are only sheets with title page but without any other thing. Thanks a lot.

16. February 2017 at 15:41

I removed your code, because it was impossible to debug. I’m happy to help if you provide a minimal working example that I can run on my system.

' src=

18. February 2017 at 16:44

What a great and very helpful blog!

My problem refers to the numbering of pages in the table of contents. My table of contents is longer than one page.

When the PDF is created, in the table of contents everything before the toc is page-numbered correctly, but everything after the toc has a wrong page number (lagged). In fact, the number of pages of the toc, lot and lof are not correctly counted, and each is treated as if they were only one page.

The table of contents is 5 pages long, the list of tables is 5 pages long and the list of figures is 3 pages long – and they are counted as if they where only one page long)

So for example what I see in the PDF wrongly shows: Abstract…….5 Table of contents….7 List of Tables….8 List of Figures….9 Introduction…..10

Which is a mistake and it actually should have been: Abstract…….5 Table of contents….7 List of Tables….12 List of Figures….17 Introduction…..20

I’m using this code to produce (unfortunately I wrote my entire thesis using Scientific Workplace which was a big mistake but now it is too late to change)

Could you please help? I’d really appreciate it.

Many Thanks,

Marie-Christine

23. February 2017 at 23:35

Hi Marie-Christine,

Adding the list before creating them should fix the issue (see below). Alternatively, you can also load the tocbibind package. See the documentation for more details. I have no experience with Scientific Workplace, but this Q&A suggests that it shouldn’t be a problem to switch to standard LaTeX.

All the best with your thesis! Tom

' src=

30. March 2017 at 2:30

I am using the CSM-Thesis template for my master’s. The template can be easily found on internet. The problem that I have is when my list of figures is generated, the list keeps the long name and any modification that I try to use with \caption does not help at all. You can see the code that the template uses to call the figure and put the long name in the list of figure.

The package used in this is also called \usepackage{csm-thesis} and probably the solution is modifying the code inside the package, but how could I fix this if I am not good coding in latex?

11. April 2017 at 11:50

Thanks for your question. I downloaded the csm-thesis template here . You can’t have a short caption for the list-of-figures using their csmfigure macro. Use the csmlongfigure macro instead, which is defined in csm-thesis.sty . The macro takes 6 arguments, where argument 5 is the short caption and argument 5 + 6 concatenated is the long caption. Here is the example from their template:

I hope this helps, Tom

' src=

20. April 2017 at 16:29

Hi Tom, I’m currently writing up my PhD Thesis using amsart, and I have an instance where my subsection is just a maths term. In order to make it boldfont to match all my other subsections, I’m using mathbf, however this makes the entry in the toc also bolded. As far as I can tell, using \subsection[toc name]{in work name} no longer exists, what else can I use? Cheers, Jos

25. April 2017 at 11:25

Thanks for your question. The simplest solution would be to suppress the subsection from being added to the TOC and then add it manually.

' src=

28. May 2017 at 15:28

Hi Tom, I have one request. In my thesis I wrote Abstract and Acknowledgments after my title page and beforeTOC while abbreviations after LOT and before the first chapter. Now how to insert Abstract, Acknowledgments, and abbreviations in TOC? I used, for example, \addcontentsline{toc}{chapter}{\numberline{}Acknowledgements}..but it yield wrong numbering of Acknowledgements and says that Acknowledgements lie on the same page number as TOC! Any help will be appreciated, Thanks, Ahmed

1. June 2017 at 16:44

Below is a minimal working example that shows how to get the page numbers in the TOC right. Abbreviations works accordingly.

' src=

16. July 2017 at 0:08

I need to add two headings(Title, Page) into the table of content page.

Can you suggest a simple method?

24. July 2017 at 14:26

You can use the macro: \addcontentsline{list}{level}{text} . Place the macro before the actual heading.

You’ll find a minimal example below.

' src=

25. July 2017 at 20:00

Hi Tom…

In my dissertation, the table of contents heading is showing up on only two pages. It does not show up in the third page. How to add table of contents (continued) in third page. Also in the list of contents bibliography is the last one and it does not have the dots between the content name and the page number. For ex: it should be Bibliography……………90 but it is showing Bibliography 90. How to add the dots between them? Please suggest a simple way. Thanks.

9. August 2017 at 10:25

Please provide a minimal working example to illustrate the problem.

' src=

21. September 2017 at 14:10

I have a 2 page TOC, and I want to have a page break between the pages. How can I do that? Any help is appreciated.

26. September 2017 at 19:40

A page break is automatically inserted in the TOC where necessary. Please provide a minimal working example to illustrate the problem.

' src=

2. March 2018 at 6:01

my problem is spacing. for example, in chapter 24 of contents table: 24 chapter name 24.9 section name 24.10section name 24.11.1subsection name 24.11.1.1 subsubsection name

as you can see, after certain contents numbers, above 24.10 and 24.11.1, but not 24.11.1.1, there is no space after the numbers.. do you have any suggestions. thanks

21. March 2018 at 15:13

You can increase the length of numwidth defined by the tocloft package to allow for long numbers. You would have to do that for each heading level separately (I picked an arbitrary length of 5em). See the tocloft documentation for more details.

' src=

10. March 2018 at 20:24

Hi Tom, Thanks for the post. I want to add space between the entries in LoC, LoT and LoF. Can you please help me with this using tocloft package.

21. March 2018 at 15:02

Thanks for your question. Try changing the following parameter defined by the tocloft package :

If that is not what you were looking for, please provide a minimal working example to illustrate your problem.

' src=

23. May 2018 at 15:11

Hi Tom, How to put one line above and one line below ‘Content’, something like:

—————– Content —————–

23. June 2018 at 16:39

Hi Yanpeng,

Sorry for the late response. You could simply change the title by adding a line above and below.

' src=

26. September 2018 at 20:02

Hi, I have a question, in my contents in thesis the list of content of tables and figure is large, so that , I want to break the line in list of content….please help me ….

28. October 2018 at 10:06

Please provide minimal working example and I will be happy to make a suggestion.

Cheers, Tom

' src=

3. October 2018 at 9:56

Is it possible to set a background picture in all the pages of the TOC?

I have tried with package ‘background’. The best I manage it to have it in the first and in the last pages of the TOC but not in all.

Thanks for your response.

28. October 2018 at 10:05

Thanks for your question. If you provide a minimal working example, I would be happy to look at what you tried so far. In general, my approach would be similar to what David suggests here using \AddToShipoutPicture and \ClearShipoutPicture.

Regards, Tom

' src=

9. November 2018 at 11:25

Thank you for such a wonderful forum. I have a question regarding table of contents.

I am using \tableofcontents to generate the contents for my thesis report. However, the first item on the Contents page is ‘Content’ with page number in roman. It is not desirable to have the ‘Contents’ heading on the Contents page. I want to exclude it and wants the first heading be the next chapter, say, ‘List of Symbols’.

Kindly suggest a solution or a way around this.

5. December 2018 at 14:43

Hi Prasoon,

Thanks for your question. Use the tocbibind package to control what should be included in your contents list. See the package documentation for a full list of options.

' src=

12. December 2018 at 3:26

Hi Tom, How I could include te code so the Index (Table of Contents) is showed in the tree index at the left of the pdf navigator. I mean how to create the table of Concents (toc) marker? THANKS a lot, your post it is quite helpful

18. December 2018 at 23:37

Thanks for your question. Is PDF Navigator the viewer you use? I’m not familiar with that software. In any case, see if loading the hyperref package solves your problem. That’s all I can think of at this point.

' src=

19. April 2019 at 7:59

Hai TOM, using \usepackage{tocloft} I am getting Table of contents, list of figures and list of tables headings to the left. how can i adjust it to center. one more problem is how to avoid the dotted lines in the list of contents and figures, tables.

Kindly suggest a solution

TABLE OF CONTENTS Page No ACKNOWLEDGEMENTS . . . . . . . . . . . . . . . . . . . . . . . . . . i ABSTRACT . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . iii LIST OF FIGURES . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . xii LIST OF TABLES . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . xiii ABBREVIATIONS . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . xiv NOTATIONS . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . xvi 1 INTRODUCTION . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1 1.1 Characteristics of Cognitive Radio . . . . . . . . . . . . . . . . . . 2 1.1.1 Cognitive Capability . . . . . . . . . . . . . . . . . . . . . 2

22. April 2019 at 9:31

Hi Sudhamani,

The minimal example below shows how to center the titles and remove the dots using the tocloft package .

' src=

22. April 2019 at 17:12

Hi Tom , i have two listings in my work , that’s why i don’t want to create a whole table of listings for them so i was wondering is there a way to put them (mix them with ) in the list of tables , but still clearly define them as listings

22. April 2019 at 22:40

Below is my suggestion on how to add your listings to the list of tables. Just use the table environment. There are other ways of course, but this is relatively simple and lets you reference the listings the same way you reference tables.

' src=

10. May 2019 at 11:13

Thank you for your post, it was helpful. However I don’t know how to change the title of the table of contents, it says “Contents” and I want to change it to my lenguage. Can you help me?

Thank you in advanced

28. May 2019 at 22:22

If you change the document to your language using babel, the heading should change accordingly. See the package documentation for a list of supported languages (recommended). Alternatively, you can change the headings manually.

Ie. for Spanish use:

' src=

10. May 2019 at 16:27

I’m writing my thesis and I have a problem with chapter numbering. I want the captions of my chapters to be: “1. Blablabla”. I used the code below to achieve this. The problem is that my toc (and lof and lot) now have a “0” in front of them. I would like the captions of these 3 chapters just to include the name, not a number. Is this possible?

Thank you in advance,

28. May 2019 at 22:14

Sorry for the late response. To clarify a few things. Toc/lof/lot are unnumbered chapters (\chapter*{}), meaning that the counter is not increased when you print them. This explains why when you print the chapter counter before the chapter name, it is zero at the beginning of your document. You can manually increase the counter with \stepcounter{chapter} . Not sure I understand what you are trying to achieve, though. Should your lists (toc/lof/lot) be numbered, but the toc entries should be unnumbered?

' src=

30. May 2019 at 22:27

Hi I am writing thesis in latex and now from this .tex file i want to have a pdf file in which front matter, table of contents to be appeared without having chapters. Is there any possibility? In short i want i want to hide all the chapters but without hiding from table of contents

30. May 2019 at 22:50

Thanks for your question. There are different ways to do that, not necessarily related to LaTeX. Below are two possibilities. Alternatively, you can manually generate table of content entries with \addcontentsline . But it seems an awful lot of work if you can get what you want much easier. Also, the page numbers would obviously be wrong.

1) You can typeset the entire document and delete all pages after table of contents. If you are on a Mac, Preview does the trick. Select the pages to delete from the thumbnails on the left and press delete. I am sure PDF readers on other system have similar functionality. 2) A more Texy option is to typeset the entire document. Then use the pdfpages package to create a document with the first few pages of your thesis.

31. May 2019 at 3:36

Thanks Tom, the second option works. But the first does not. Anyhow my problem is solved. Thanks once again.

31. May 2019 at 22:14

Great, thanks for letting me know. Best, Tom

20. June 2019 at 10:09

Hi Tom I have one more question , I want to set the font size of chapter(20), heading(18), subheading(16) and subsubheading(14) and the default text size as 12 in my thesis. can you please tell how to do this. secondly i want my chapter heading in center. hoping for your response. Thanks

20. June 2019 at 21:13

Hello Dimple,

Please take a look at the titlesec package . You should be able to get the formatting through the titleformat command.

' src=

3. March 2020 at 16:14

hello need help on how to get rid of one before introduction in the table of contents generated example ONE INTRODUCTION . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1 Characteristics of Cognitive Radio . . . . . . . . . . . . . . . . . . 2 Cognitive Capability . . . . . . . . . . . . . . . . . . . . . 2

27. April 2020 at 21:40

You can produce chapters without numbering using \chapter*{INTRODUCTION} . If that does not solve your problem, please provide a minimal working example.

' src=

28. January 2022 at 0:29

Hi Tom, I use documentation class. How can I remove listoffigures and listoftables from the contents? Thanks a lot

14. April 2023 at 0:03

Use the tocbibind package with the following options:

\usepackage[notlof,notlot]{tocbibind}

Leave a Reply Cancel reply

Stack Exchange Network

Stack Exchange network consists of 183 Q&A communities including Stack Overflow , the largest, most trusted online community for developers to learn, share their knowledge, and build their careers.

Q&A for work

Connect and share knowledge within a single location that is structured and easy to search.

The acronyms and abbreviations tags

At the risk of sounding overly pedantic and drawing attention to my own failings…

“Acronyms” are defined as :

words formed from the initial letters of other words and pronounced as they are spelled, not as separate letters.

Examples include “laser”, “scuba” and “NATO”.

“Initialisms” are defined as :

abbreviations which consist of the initial (i.e. first) letters of words and which are pronounced as separate letters when they are spoken.

Examples include “BBC” and “CD”.

To add to the fun, we also have “contractions”, which are defined as :

a type of abbreviation in which letters from the middle of the word are omitted.

(such as “Dr” or “Mr”) and “shortenings”, which are defined as :

abbreviations in which the beginning or end of the word has been dropped.

(such as “rhino” or “cello”).

These are all sub-categories of abbreviations , but in the TeX world many of us seem to be using “acronym” as a synonym for “abbreviation”. This isn't helped by packages such as glossaries — mea culpa. (As a writer whose first language is English, I hang my head in shame.) I've tried to address this with glossaries-extra , which treats acronyms as specific types of abbreviations.

This misuse of the term actually dates as far back as LaTeX 2.09 , and I suspect this is like the guillemet/guillemot issue that once established is hard to rectify, but given how pedantic we can be about typesetting and the use of semantically correct commands I think we ought to exercise some pedantry with our tags.

The acronyms tag is currently defined as

{acronyms} is about formatting acronyms and abbreviations using customized commands or specific packages like acronym or {glossaries}.

The abbreviations tag is currently just a synonym for acronyms .

Should we make abbreviations as the main tag for general abbreviations with acronyms redirecting to abbreviations ?

Suggested description:

{abbreviations} is about formatting abbreviations (such as acronyms or initialisms) using customized commands or specific packages like acronym, acro or {glossaries}.

Alice and Bob Scenario 1

Alice asks a question with a MWE that contains

Bob: btw don't use \textsc , define \newcommand{\acronym}[1]{\textsc{#1}} and use \acronym{abc}

Alice: it's an initialism not an acronym.

Bob: "acronym" is a commonly-used term.

Alice: I commonly see people use \textsc so why can't I?

Bob: That's different.

Heated argument discussion ensues.

Alice and Bob Scenario 2

Bob: yes, see acronyms and abbreviations . Use \initialism instead.

LaTeX conversation resumes.

Community's user avatar

  • In French such difference exits too. However lot of people does not know about it and use the wrong word. I don't know if for english native speaker it is the same or not. Knowing this point may help to make a choice I think. –  Romain Picot Commented Jan 26, 2016 at 12:57
  • 2 there are some variations of abbreviations that aren't covered here, in which some middle letters are included and/or initial letters omitted. two tex-related examples are "DANTE e.V." (Deutschsprachige Anwendervereinigung TeX e.V.) and STIX (Scientific and Technical Information eXchange). are there separate terms for these? (showing my ignorance. tugboat uses the command \acro as a convenient indicator for how a string should be presented ; an intentional oversimplification.) –  barbara beeton Commented Jan 26, 2016 at 13:31
  • @barbarabeeton They may come under the "shortening" definition, even though STIX sounds more like an initialism (since exchange sounds like it starts with X). It's reassuring to know my ignorance is shared with the experts :-) but I agree that it is convenient to use commands like \acro . I don't think most people would intuitively guess that, say, \init meant an initialism and something like \abbrv is too general. –  Nicola Talbot Commented Jan 26, 2016 at 13:57
  • @RomainPicot I think a lot of native English speakers also don't know the differences and many use the wrong word. If there are users who use a web translation service to view this site, I'm not sure which term would translation more accurately. –  Nicola Talbot Commented Jan 26, 2016 at 14:00
  • 3 My main reason for posting this question is that I've started to see comments criticising the use of "acronym" for initialisms and, if nothing else, we can at least link here to indicate that we're aware of the misuse of the term, even if we can't decide on a resolution :-) –  Nicola Talbot Commented Jan 26, 2016 at 14:04
  • 1 Given that common use doesn't make the fine distinction, and tagging is supposed to help people find questions, I don't see any advantage in making the tags distinct. Also, if the packages cover both generally, then there are even fewer reasons to separate the tags. –  Alan Munn Commented Jan 26, 2016 at 17:51
  • 1 @AlanMunn I wasn't suggesting separating the tags but switching them so that "abbreviations" is the main tag with "acronyms" redirecting to "abbreviations". –  Nicola Talbot Commented Jan 26, 2016 at 18:13
  • Sorry, I think I read too fast. :) –  Alan Munn Commented Jan 26, 2016 at 19:28
  • 3 Well, it was the confusion about definitions , apart from browser wars , that prompted W3C to deprecate <acronym> element from HTML5, and leave both acronyms and abbreviations under the <abbr> element (an abbreviation itself). –  carnendil Commented Jan 26, 2016 at 19:33
  • @AlanMunn I'm always doing that :-) –  Nicola Talbot Commented Jan 26, 2016 at 20:42
  • @carnendil yes, it generates a lot of confusion (and isn't helped when some initialisms become acronyms!) That's the joy of living languages :-) –  Nicola Talbot Commented Jan 26, 2016 at 20:42
  • tee hee! there are those of us who find most \textsc fonts too "inconspicuous" for this purpose. (the only approximately x-height small caps font i know of that is distinct from regular text is the one used by "the economist"; wonderful design!) so instead, for tugboat, we use scaled-down caps, thus, a reader can tell the difference. that's what i meant by " presented " in my earlier comment. –  barbara beeton Commented Jan 26, 2016 at 21:04
  • 1 Perhaps I am missing something, but it seems that @AlanMunn's solution for US Customary units at How to typeset imperial/US customary units, especially in combination with SI/metric units could be employed here so that the same package is used, just the with a different named macro? –  Peter Grill Commented Jan 28, 2016 at 21:48
  • 1 @percusse yes. I was just thinking of the internal logic behind the tags, with the more specific tags being synonyms of the general tag, rather than the other way around. It's possibly just me being slightly OCDing ;-) –  Nicola Talbot Commented Feb 10, 2016 at 12:18
  • 1 @percusse Oh, that made me queasy seeing all those words swirling about! Let's make the acronyms and abbreviations tags both synonymous with the duck tag :-) That will be more fun. –  Nicola Talbot Commented Feb 10, 2016 at 20:24

I do not think that distinction of acronyms, abbreviations and initialisms is useful from the point of view of LaTeX typesetting. Therefore, I think that one tag is sufficient to cover all these linguistic phenomena.

I doubt it is important which of acronyms and abbreviations is the "master" and which is the "slave", and I would leave it be as is. The tag excerpt is clearly mentioning both notions, so if someone is confused, it is not due to the system being wrong.

yo''s user avatar

  • Both Turabian and the Oxford Style Manual have a chapter on abbreviations that deal with the presentation of the different types of abbreviations, so I don't think it should simply be dismissed as a mere linguistic phenomena that has nothing to do with typesetting. Since "acronym" is a subset of "abbreviation" it makes more sense to switch round the tags if it can easily be done. I don't know how the site's tagging system works. If it's too complicated to make such as switch, then fair enough, but otherwise I don't see the disadvantage in not switching them around. –  Nicola Talbot Commented Feb 9, 2016 at 16:28
  • @NicolaTalbot It shouldn't be that difficult to switch them. –  yo' Commented Feb 9, 2016 at 16:44

You must log in to answer this question.

Not the answer you're looking for browse other questions tagged discussion tagging ., hot network questions.

  • What programming language was used in Frank Rubin's letter about Dijkstra's "Go To Statement Considered Harmful"?
  • Can one be restricted from carrying a gun on the metro in New York city?
  • Dividing shape into 2 congruent pieces
  • When labeling, "Wrap on character" drops the wrap character
  • A hat puzzle question—how to prove the standard solution is optimal?
  • Is a sixteenth note quintuplet worth 4 sixteenth notes? If so, why is this wrong?
  • ESTA visa after 90 days
  • Is it possible to express any multi-qubit quantum unitary operation as a rotation about a specific unit vector?
  • Should we use subject auxiliary verb order in 'what a better day could there be to go to one of the local farmers markets!'?
  • How to linearise on Lagrangian level?
  • Identifying a quotation from Dulce Maria Loynaz comparing physical pain to a civil war
  • In this position, why is the move 12. Be3 rarely played by top players?
  • Why is Epsilon Indi Ab 2° Celsius?
  • What factors need to be taken into account in assessing the meaning of "the will of God" in Mark 3:35?
  • What is the maximum number of real roots in the interval (0,1) of a monic polynomial with integer coefficients and has degree 2022.
  • All QFTs are Finite
  • Securing Transactional Email: User Input Escaping for a email subject
  • Take screenshot of rendered HTML from Linux without GUI
  • Bike post slips down
  • Natural person / is it idiomatic?
  • Simulate Text Cursor
  • How is Agile model more flexible than the Waterfall model?
  • How to Derive the Time Evolution Equation for Quantum Phase?
  • What's the frequency level of 時々?

abbreviation in thesis latex

Navigation Menu

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 You must be signed in to change notification settings

UESTC Thesis Latex Template 2023. It fully supports the latest format specification in 2023, supports independent symbol table, abbreviation table, and complete and fully customizable Academic/Professional-Master/PhD covers.

tinoryj/UESTC-Thesis-Latex-Template

Folders and files.

NameName
78 Commits

Repository files navigation

Uestc-thesis-latex-template.

English version of the README

学位信息设置(选择对应模板)

作者、导师、题目等基本信息, 设置专业学位领域(专业硕士/博士专用), 专业学位硕士/博士(请按照以下步骤操作), 学术学位硕士/博士(请按照以下步骤操作), 分类号、密级、udc号, 缩略词/符号表目录设置, (盲审提交用)不显示作者姓名, 参考文献数量超过100时的悬挂缩进问题, 数字/罗马字符加粗显示, beamer slides template.

参考main.tex中关于本模板使用的各项说明,正文写法可参考 一份其实很短的 LaTeX 入门文档

注意,请尽量使用texlive 2021或之后的版本进行编译,模板仅在这些版本的latex下进行过相关测试

以下所有内容均需设置在正文开始(\begin{document})之前

main.tex第一行进行设置,应用thesis-uestc模板,设置学位信息:

  • bachelor:本科
  • promaster:专硕
  • engdoctor:工程博士

chairman pos

由于学校20220224格式规范中明确显示该内容左对齐,本模板进行了同步,若为了美学设计,请在cls文件中搜索 \arraybackslash\fontsize{14pt}{14pt}\bfseries\selectfont}p{4.35in} ,并全局替换为 \centering\arraybackslash\fontsize{14pt}{14pt}\bfseries\selectfont}p{4.35in} 完成对该内容的居中显示。

  • 在main.tex中,对以下内容取消注释并设置:
  • 在thesis-uestc.cls中修改以下内容(修改后如下所示):
  • 1126-1127取消注释;1129行修改为12bp 1126 合作导师 & { \bfseries\zh@thecoadvisor } \\ 1127 \cline {2-2} 1128 & \fontsize {12pt}{12pt} \selectfont (姓名、职称、单位名称) 1129 \end {tabular} \\ [12bp]
  • 1215-1216行取消注释; 1215 Co-Supervisor: & \en@thecoadvisor \\ 1216 \cline {2-2}
  • 1008-1009取消注释;1011行修改为24bp 1008 合作导师 & { \bfseries\zh@thecoadvisor } \\ 1009 \cline {2-2} 1010 & \fontsize {12pt}{12pt} \selectfont (姓名、职称、单位名称) 1011 \end {tabular} \\ [24bp]
  • 1091-1092行取消注释; 1091 Co-Supervisor: & \en@thecoadvisor \\ 1092 \cline {2-2}
  • UDC编号查询: https://udcsummary.info/php/index.php?lang=chi&pr=Y
  • 分类号查询: http://pss.uestc.edu.cn:8080/chineseSearch.action

注意,模板为了便于操作,对glossary设置了automake,会导致在不使用这部分功能时发生编译错误,请在注释main.tex中的 \makeglossaries 的基础上,在cls文件中取消27行的注释,并将28行注释,如下所示:

在使用缩略词/符号表时,请在导言区填写缩略语条目并使能glossary宏包(如下所示,详细使用方法见 main.tex ):

若要添加缩略词/符号表目录,请在需要的位置进行以下设置:

如下所示,使用代码环境。其中style用于指定语言进行代码高亮;caption用于设置代码段标题;label用于生成代码段标签,以便在正文中引用。这里三项参数均为非必填项(但不填style会导致没有任何格式和高亮)。 现支持的代码语言高亮包括:c++,shell,python,json,solidity

采用以下方法进行设置(即设置为空格)

引入参考文献时设置间距为large(如下所示):

在main.tex中取消注释以下内容,用于禁止文中换行处的英语单词自动截断换行。

本模板中请使用 \pmb{1234} 对公式中数字/罗马字符加粗,效果如:$\pmb{1234}$

可能存在中文摘要无页码的问题,解决方案如下: 在cls文件的439和440行之间增加\setcounter{page}{1}\setcounter{pseudopage}{1}

如果Mac上安装了Microsoft Word,可将uestc-thesis.cls中的代码

  • 需要更多层级的目录: Issue 25
  • 英文封面专业名称不需要双行(减少下划线): Issue 42
  • 学院名称单行不够,需要多行: Issue 31
  • 删除空白页:请使用Adobe Acrobat等PDF软件直接删除页面。模板中的空白页为了打印而准备,电子版提交时请删除。
  • 注释符号表:在完成main.tex中的注释后,请修改cls文件,将第27行取消注释,并将第28行注释(避免glossaries的自动编译导致的问题)
  • Slides模板位于 ./slides 目录下,使用时直接参照slides中内容进行修改即可,编译链为xelate->bibtex->xelatex*2
  • 改模板源自overleaf,可直接在overleaf中使用

UDC

  • 2022.3.17:修正英文封面中学号和姓名顺序错误的问题(对调)
  • 2022.3.17:修正“答辩委员会主席”后下划线长度不足的问题

UDC

  • 2022.3.18:修正页眉下划线宽度为0.75磅,修正专硕英文封面学号和姓名顺序
  • 2022.3.27: 章节编号加粗(目录不加粗),目前版本完整适配20220224新标准
  • 2022.4.16: 增加主要符号表,修订缩略词表各栏宽度
  • 2022.5.30: 增加合作导师设置,修正“指导老师”为“指导教师”;默认展示PDF修订为专硕版本
  • 2022.6.30:新增了答辩slides的beamer模板
  • 2023.3.01: bug修复,更新README

建立了QQ群便于讨论和改进模板:

QQ Group

Contributors 4

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

Why did JD Vance change his name?

Jd vance's name changes tie back to his maternal grandparents, and the ohio background that spawned hillbilly elegy and an eventual vp nomination.

Republican vice presidential nominee JD Vance has gone through numerous changes − from comparing former Donald Trump to Hitler to accepting a place on Trump's ticket, from bestselling author to Silicon Valley to the stage of the Republican National Convention.

It's not just Vance's beliefs or career trajectory that has changed, but his name as well.

Vance was born James Donald Bowman in Middletown, Ohio, a town halfway between Dayton and Cincinnati. Following his parents' divorce, Bowman's middle name was changed David.

James adopted his stepfather's last name for some of his teenage years, with his 2003 senior yearbook identifying him as James Hamel. This was also the name used during James' military service from 2003 to 2007, where he served as a Corporal in the Marines.

Marriage to JD Vance's wife Usha

In 2014, Vance married his wife, Usha , and decided to take on his maternal grandparents' surname. In his bestselling novel Hillbilly Elegy , and in his congressional bio , Vance has repeatedly emphasized their importance in his upbringing, and thanked his grandmother in his Senate victory speech, and in his vice presidential acceptance speech , causing the RNC audience to chant "Mamaw! Mamaw!"

Vance's family history is central to his name change, and equally critical to his selection as vice president.

Vance's association with blue-collar, rust-belt America, a place he characterizes as "cast aside and forgotten by America's ruling class in Washington," could prove pivotal in helping Trump flip back crucial states such as Pennsylvania, Michigan, and Wisconsin. Cy Neff reports on Wyoming politics for USA TODAY. You can reach him at [email protected] or on X, formerly known as Twitter,  @CyNeffNews

We love good questions

Skip to content

LaTeX.org on Twitter - follow us

  • Unanswered topics
  • Active topics
  • Impressum and Privacy Policy
  • About LaTeX
  • Board index LaTeX Templates Theses, Books, Title pages

LaTeX forum ⇒ Theses, Books, Title pages ⇒ abbreviation not appear in the thesis? Topic is solved

Abbreviation not appear in the thesis.

Post by ssabdoan » Mon Oct 24, 2016 7:52 pm

Recommended reading 2024:

LaTeX Beginner's Guide

Post by Johannes_B » Mon Oct 24, 2016 7:55 pm

User avatar

Re: abbreviation not appear in the thesis?

Post by Stefan Kottwitz » Mon Oct 24, 2016 11:30 pm

Post by ssabdoan » Tue Oct 25, 2016 11:40 am

abbreviation not appear in the thesis?   Topic is solved

Post by Stefan Kottwitz » Tue Oct 25, 2016 12:21 pm

abbreviation in thesis latex

Post by ssabdoan » Tue Oct 25, 2016 1:18 pm

Post by Stefan Kottwitz » Tue Oct 25, 2016 1:28 pm

Post by ssabdoan » Tue Oct 25, 2016 5:54 pm

Post by Hamza Mir » Wed Feb 01, 2017 9:25 am

Return to “Theses, Books, Title pages”

  •     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

Who is online

Users browsing this forum: No registered users and 0 guests

  • Recommended reading 2024: LaTeXguide.org  •  LaTeX-Cookbook.net  •  TikZ.org
  • News and Articles
  • Unread posts
  • Other LaTeX forums
  • TeXwelt (deutsch)
  • goLaTeX (deutsch)
  • TeXnique (français)
  • Board index
  • All times are UTC+02:00
  • Delete all board cookies
  • 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

Stack Exchange Network

Stack Exchange network consists of 183 Q&A communities including Stack Overflow , the largest, most trusted online community for developers to learn, share their knowledge, and build their careers.

Q&A for work

Connect and share knowledge within a single location that is structured and easy to search.

How to create both list of abbreviations and list of nomenclature using nomencl package?

I have searched for the whole day online, but all the threads indicate only realizing one of the lists by using nomencl package. I want to create both list of abbreviations AND list of nomenclature using nomencl package. How do I differ two \printnomenclature so that LaTeX could separate them clearly?

  • subdividing
  • nomenclature

lockstep's user avatar

  • Perhaps you can use the gloss package for the abbreviations? –  guillem Commented Dec 12, 2012 at 7:21
  • 3 Have a look at glossaries , a package which is capable of dealing with multiple - well - glossaries. –  cgnieder Commented Dec 12, 2012 at 9:06
  • 1 +1 for glossaries , Iused that myself, and it works great. I guess it is up to @cgnieder to make that an answer. –  mafp Commented Dec 12, 2012 at 16:36
  • You can visit: texblog.org/2012/05/14/… This is the simplest method I found.. –  Ahmed Commented Apr 15, 2019 at 15:27

3 Answers 3

I'm not aware of a way to do this with nomencl . However, there are other packages which can be used. I'll give two examples, one for my package acro and one for glossaries .

The acro package allows to assign acronyms to a class and print lists for each class (also for combined classes...). This fact can be used for the task. Entries are defined with the following syntax:

Here is a full example:

enter image description here

The glossaries package is much more powerfull. You can define as many glossaries as you like. Here we can use the fact that a glossary for acronyms is already defined. Similar to nomencl it requires you to run a script to sort the entries. If your file is called file.tex this is usually done by calling

from the command line. Details can be found in the user manual (page 26, section 1.3.3).

The full example:

enter image description here

  • 2 Forgive my ignorance, but what are those numbers in the end of each abbreviation / nomenclature entry ? –  jmacedo Commented Feb 3, 2014 at 9:14
  • 3 @joxnas the page the respective acronym appeared –  cgnieder Commented Feb 3, 2014 at 9:17
  • @clemens Is it possible to generate hyperlinks with the acro package like glossaries does? Thanks. –  codeaviator Commented Mar 23, 2017 at 13:31
  • @cgnieder, excellent answer! Thanks! But by the way, how to not expand the acronym at its first reference in the text? For example, when I use "\gls{IEEE} 802.15.4", it is expanded to "Institute of Electrical and Electronics Engineers (IEEE) 802.15.4" –  Alex8752 Commented Sep 12, 2020 at 3:19

It is indeed possible to have two separate lists using nomencl .

You can define them as groups with corresponding titles.

When doing so, you need to remove the main title by placing \renewcommand{\nomname}{} in the preamble.

Here is an example with two groups:

enter image description here

  • may I add some suggested detail here... say you wanted this to appear in the table of contents, you could use the [intoc] option for the package, use List of Symbols rather than Nomenclature for the name of the second group, and then in the first \nomname renew, use Nomenclature there –  jonnybolton16 Commented Jul 28, 2020 at 22:15

This also works (I couldn't get the above script working for a symbol list with units AND glossary..). Important is the order of lines here!

BasicFile.tex:

nomenclature.tex:

glossary.tex

I don't use Perl so I type these lines directly in the command prompt after changes in any file (notice: if you didn't change anything concerning the glossary or the symbol list it is be okay to just pdflatex only once!):

mirjamvla's user avatar

You must log in to answer this question.

Not the answer you're looking for browse other questions tagged acronyms subdividing nomenclature ..

  • Featured on Meta
  • Announcing a change to the data-dump process
  • Upcoming initiatives on Stack Overflow and across the Stack Exchange network...

Hot Network Questions

  • What magic items can a druid in animal form still access?
  • Securing Transactional Email: User Input Escaping for a email subject
  • What programming language was used in Frank Rubin's letter about Dijkstra's "Go To Statement Considered Harmful"?
  • How to calculate baker's percentages for indirect doughs?
  • Reduce a string up to idempotency
  • When labeling, "Wrap on character" drops the wrap character
  • Has any US president ever endorsed Trump for US presidency?
  • What's the frequency level of 時々?
  • What are the safe assumptions I can make when installing a wall oven without model/serial?
  • A hat puzzle question—how to prove the standard solution is optimal?
  • What are applicable skills and abilities for dealing with paperwork, administration and law in 5e?
  • Why exactly do we need the learning rate in gradient descent?
  • Uniqueness results that follow from CH
  • Do we ever see the dangers of violating the Prime Directive?
  • How can dragons breathe in space?
  • If every definable class admits a group structure, must global choice hold?
  • How can I prevent my fountain's water from turning green?
  • The vertiginous question: Why am I me and not someone else?
  • Can a "read-only" µSD card be salvaged?
  • Is it possible to express any multi-qubit quantum unitary operation as a rotation about a specific unit vector?
  • When solving eigenvalues, what does the factor in front of the Root[] mean?
  • Why do some license agreements ask for the signee's date of birth?
  • How to address imbalanced work assignments to new boss?
  • "Nam sī qua alia urbs, est īnsalūbris Rōma."

abbreviation in thesis latex

IMAGES

  1. 8 Abbreviations in LaTeX

    abbreviation in thesis latex

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

    abbreviation in thesis latex

  3. [Tex/LaTex] Formal looking Symbols, Operators and Abbreviations section

    abbreviation in thesis latex

  4. List of abbreviations in table of contents

    abbreviation in thesis latex

  5. Essay Writer for All Kinds of Papers

    abbreviation in thesis latex

  6. METU-thesis-LaTeX-template/abbreviations.tex at master · myukselen/METU

    abbreviation in thesis latex

VIDEO

  1. #contentwriting #contentcreator #thesis #books #latex #creative

  2. Latex Template for Thesis

  3. Math Equations in LATEX|SowmyaSuku's Notions

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

  5. Sample Thesis in LaTeX (UMS)

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

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. Glossaries: list of abbreviations ...

    For my thesis, I would like to generate a list of abbreviations that is ordered alphabetically as well as list of symbols that is ordered by the first appearance of each symbol in the thesis. Having done some research, it seems to me that the glossaries package is the best package for this.

  3. List of abbreviations in table of contents

    1. Use preto from etoolbox package to add your code right before \listofappendixtables is entered. \preto{\listofappendixtables}{. \heading{List of Abbreviations} \noindent. AMPA\dotfill Aminomethylphosphonic Acid\\. Full code. \abstract{This is the abstract for my thesis.}

  4. 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.

  5. 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.

  6. List of symbols or abbreviations (nomenclature)

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

  7. 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. About. About us. Our values.

  8. LaTeX glossary and list of acronyms

    To generate a separate list of acronyms, the package needs to be loaded with the acronym option. 1. \usepackage[acronym]{glossaries} 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. 1. 2.

  9. 8 Abbreviations in LaTeX

    The video explains how to incorporate abbreviations in your thesis

  10. 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 ...

  11. List of Acronyms with alphabetical Ordering

    I want to make a list of acronyms for my thesis. I see an acronym package installed in my system. I want to make a list of acronyms that will automatically take care of alphabetical ordering as we see in a dictionary. Say, if I define: TF: Text Formatting and then LC : Latex Community we should see LC to appear first and then TF. How can I do this?

  12. Create list of abbreviations?

    5. You can use the glossaries package. Linked here are a few examples on how to use it. Here is a MWE on how to get something like what you want, taken and slightly modified from the example site linked, to remove page numbers and change the title of the acronyms section to Abbreviations. The line : \loadglsentries[acronym]{myglossaries} merely ...

  13. list of abbreviation

    1. Insert \usepackage {nomencl} and \makenomenclature at the beginning of the tex file (before \begin {document}). 2. Insert \printnomenclature [distance] at that position in the tex file, where the list of abbreviations should be listed. The parameter distance defines the distance (e.g. 2.5 cm) between Abbreviation and Explanation. 3. Postby ...

  14. LaTeX table of contents, list of figures/tables and some ...

    Creating content lists in LaTeX documents is straight forward. Typing these three commands is sufficient to produce a toc, lof, and lot. To produce the lists, the document has to be typeset twice. The first iteration collects all headings and captions and writes them to meta files (*.toc, *.lof, *.lot). The second iteration prints the lists ...

  15. The acronyms and abbreviations tags

    a type of abbreviation in which letters from the middle of the word are omitted. (such as "Dr" or "Mr") and "shortenings", which are defined as: abbreviations in which the beginning or end of the word has been dropped. (such as "rhino" or "cello"). These are all sub-categories of abbreviations, but in the TeX world many of ...

  16. tinoryj/UESTC-Thesis-Latex-Template

    UESTC Thesis Latex Template 2023. It fully supports the latest format specification in 2023, supports independent symbol table, abbreviation table, and complete and fully customizable Academic/Professional-Master/PhD covers. - tinoryj/UESTC-Thesis-Latex-Template

  17. glossaries

    8. Either use printacronyms for the regular acronyms or \printglossary[type=abbrev] for the self-defined abbrev glossary. In order to be on the safe side about all acronyms, use \glsaddall in the document body. \documentclass[letterpaper,12pt,titlepage,oneside,final]{book} \usepackage[acronym]{glossaries}

  18. 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.

  19. List of Abbrevations as Chapter

    The reason for the list of abbreviations appearing as a section rather than a chapter is because you have explicitly instructed the glossaries package to do this with the section package option: \usepackage[toc,% add the glossary/list of abbreviations to the table of contents nopostdot,nonumberlist,acronym, section% make the glossary/list of ...

  20. How can i use the LaTeX acronym package, and optionally create an

    I believe the acronym package option you're looking for is nolist, e.g., \usepackage[nolist,nohyperlinks]{acronym} The package options aren't clearly listed in the CTAN documentation, but they're discernible from the implementation section. They are: footnote. The option footnote makes the full name appear as a footnote. nohyperlinks

  21. JD Vance name changes have roots in family background

    Marriage to JD Vance's wife Usha. In 2014, Vance married his wife, Usha, and decided to take on his maternal grandparents' surname.In his bestselling novel Hillbilly Elegy, and in his ...

  22. abbreviation not appear in the thesis?

    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. ... 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.

  23. acronyms

    %Load the package \usepackage[ nonumberlist, %do not show page numbers acronym, %generate acronym listing -> Not used in this example (see line with %%% ) toc, %show listings as entries in table of contents section] %use section level for toc entries {glossaries} %Generate a list of symbols \newglossary[slg]{symbols}{syi}{syg}{List of symbols ...