{"id":327,"date":"2022-02-14T02:25:19","date_gmt":"2022-02-13T18:25:19","guid":{"rendered":"https:\/\/www.scijournal.org\/articles\/?p=327"},"modified":"2023-05-22T06:11:56","modified_gmt":"2023-05-21T22:11:56","slug":"glossaries-in-latex","status":"publish","type":"post","link":"https:\/\/www.scijournal.org\/articles\/glossaries-in-latex","title":{"rendered":"How to Create Glossaries in LaTeX&nbsp;"},"content":{"rendered":"\n<p>Documents that contain a large number of terms or acronyms may require special Glossaries in LaTeX section at the end. This glossary typically includes a list of these terms and their definitions.&nbsp;<\/p>\n\n\n\n<p>If you intend to create a professional document in LaTeX, you should know that it is possible to create <em>glossaries in LaTeX<\/em> relatively easily. Let\u2019s look at the different ways to do this.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"what-is-a-glossary\"><span class=\"ez-toc-section\" id=\"What_is_a_Glossary\"><\/span>What is a Glossary?<span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<p>Before we look at how to create glossaries in LaTeX, it is worth discussing what exactly they are. A glossary can be defined as a list of words that relate to a specific subject. They are usually set in alphabetical order and offer brief explanations of each term. You can view a Glossaries in LaTeX as a list of definitions for terms contained within the preceding text.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"how-to-create-a-glossary-in-latex\"><span class=\"ez-toc-section\" id=\"How_to_Create_a_Glossary_in_LaTeX\"><\/span>How to Create a Glossary in LaTeX<span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<p>Creating glossaries in LaTeX is a relatively straightforward process. However, you should be aware of the different commands and packages required to do this properly. The main package required for glossaries in LaTeX is called <em>glossaries<\/em>. You can use this package using the command <em>\\usepackage{glossaries}<\/em> in your document\u2019s preamble. Then, you can use the command <em>\\makeglossaries<\/em> prior to adding the first glossary entry.<\/p>\n\n\n\n<p>Finally, you can start adding glossary entries using the command <em>\\newglossaryentry{YOUR GLOSSARY TERM}<\/em>. Following this, you can reference the glossary entry in your document text by using the command <em>gls<\/em>.&nbsp;<\/p>\n\n\n\n<p>Once this is complete, it is possible to print each of your glossaries in LaTeX entries along with their corresponding definitions and descriptions using the command <em>\\printglossaries<\/em>. Each of these terms will automatically be printed under the section title <em>Glossary<\/em>.<\/p>\n\n\n\n<p>We demonstrate the code for creating glossaries in LaTeX and adding a single term in the example below:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: latex; title: ; notranslate\" title=\"\">\n\\documentclass{article}\n\\usepackage&#x5B;utf8]{inputenc}\n\\usepackage{glossaries}\n \n\\makeglossaries\n \n\\newglossaryentry{fondue}\n{\n    name=fondue,\n    description={is a Swiss dish consisting of melted cheese that is served in a communal pot heated over a portable stove using a candle or a spirit lamp. It is eaten with bread using long-stemmed forks. }\n}\n \n\\newglossaryentry{raclette}\n{\n    name=raclette,\n    description={is a Swiss dish that is also popular in France. It involves heating cheese and scraping off the melted portion and topping it onto meats or vegetables.}\n}\n \n\\title{Different Types of Cheese Dishes in Europe}\n\\author{ }\n\\date{ }\n \n\\begin{document}\n\\maketitle\n \n\\Gls{fondue} is a very popular dish and is often associated with \\gls{raclette}.\n \n\\clearpage\n \n\\printglossaries\n \n\\end{document}\n\n<\/pre><\/div>\n\n\n<p>When compiled, the output code resembles the following:<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter\"><img decoding=\"async\" src=\"https:\/\/lh4.googleusercontent.com\/ySr_QgADv8zre6VjR8yeSTlaRDxBQVpVgfovx5UtZJaDhtSK70kAsFRLBZg2ACTt5b-xFCQipUe06CRuDB6_QkqBVop6aDQOQ32KUPe5m3SQkYfaeypi7DHxohrJnbfRVZHEeVYv=s0\" alt=\"\"\/><figcaption>Image: Author<\/figcaption><\/figure><\/div>\n\n\n<h2 class=\"wp-block-heading\" id=\"referencing-terms-in-uppercase-and-lowercase\"><span class=\"ez-toc-section\" id=\"Referencing_Terms_in_Uppercase_and_Lowercase\"><\/span>Referencing Terms in Uppercase and Lowercase<span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<p>You may have noticed that we used the commands <em>gls <\/em>and <em>Gls <\/em>in different places in the code above. As mentioned earlier, <em>gls<\/em> informs LaTeX to reference the entry. However, this lowercase version references the term in a slightly different manner than <em>Gls<\/em> does. We explain the differences between the two as well as similar commands below.<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: latex; title: ; notranslate\" title=\"\">\n\\gls{TERM TEXT }: This will print your term with lowercase lettering. For example, \\gls{fondue} prints fondue when used.\n\\Gls{TERM TEXT}: This is similar to the \\gls command, except that\u00a0 the first letter of the term will be printed in uppercase. For example: \\Gls{fondue} prints Fondue.\n\\glspl{TERM TEXT}: This is similar to the \\gls command, except that the term will be shown in its plural form. For example, \\glspl{cheese} will show up as cheeses in the final document.\n\\Glspl{TERM TEXT}: This is similar to the command \\Gls, except that the term will be put in its plural form. For example, \\Glspl{cheese} will show up as Cheeses.\n<\/pre><\/div>\n\n\n<h2 class=\"wp-block-heading\" id=\"using-terms-and-acronyms-in-latex\"><span class=\"ez-toc-section\" id=\"Using_Terms_and_Acronyms_in_LaTeX\"><\/span>Using Terms and Acronyms in LaTeX<span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<p>In the above example, we demonstrated how to add definitions for terms in LaTeX. However, glossaries in LaTeX are also useful for explaining what different acronyms mean.&nbsp;<\/p>\n\n\n\n<p>You can print both terms and acronyms separately within a glossary in LaTeX.&nbsp; This is demonstrated in the following example:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: latex; title: ; notranslate\" title=\"\">\n\\documentclass{article}\n\\usepackage&#x5B;utf8]{inputenc}\n\\usepackage&#x5B;acronym]{glossaries}\n \n\\makeglossaries\n \n\\newglossaryentry{fondue}\n{\n    name=fondue,\n    description={is a Swiss dish consisting of melted cheese that is served in a communal pot heated over a portable stove using a candle or a spirit lamp. It is eaten with bread using long-stemmed forks. }\n}\n \n\\newglossaryentry{raclette}\n{\n    name=raclette,\n    description={is a Swiss dish that is also popular in France. It involves heating cheese and scraping off the melted portion and topping it onto meats or vegetables.}\n}\n\\newacronym{msg}{MSG}{Monosodium glutamate}\n\\newacronym{oz}{OZ}{Ounce}\n\\title{Different Types of Cheese Dishes in Europe}\n\\author{ }\n\\date{ }\n \n\\begin{document}\n\\maketitle\n \n\\Gls{fondue} is a very popular dish and is often associated with \\gls{raclette}.\n \n\\clearpage\n \n\\printglossaries\n \n\\end{document}\n<\/pre><\/div>\n\n\n<p>When compiled, the output will resemble:<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/lh3.googleusercontent.com\/bwvhC3NuU0Ka1plmuvLtBxSd0ED9YwpJzlfv4pxJyGDQAqGXCoCSfzC3zvst5493mXjBUqmJogqs-2ujeu2fk5LgKTAARbQlIWKZayhCwJ9Idkp49rWLru9QDfH-M-Tv9EOsLBO2=s0\" alt=\"\"\/><\/figure>\n\n\n\n<p>As you can see, the acronyms section appears before the glossary section in LaTeX. The acronyms section contains only abbreviations and their corresponding terms, while the glossary section contains terms and their descriptions.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"adding-acronyms-to-latex\"><span class=\"ez-toc-section\" id=\"Adding_Acronyms_to_LaTeX\"><\/span>Adding Acronyms to LaTeX<span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<p>Let\u2019s examine how to add only acronyms to LaTeX. In the code above, you may have noticed the commands <em>\\usepackage[acronym]{glossaries}<\/em> and&nbsp; <em>\\newacronym<\/em>.&nbsp;<\/p>\n\n\n\n<p>Adding the command <em>\\usepackage[acronym]{glossaries} <\/em>in the preamble informs LaTeX to create an acronyms section. Once this is done, the command <em>\\newacronym <\/em>lets you declare new acronyms for your document.<\/p>\n\n\n\n<p>For example, we used the code <em>\\newacronym{msg}{MSG}{Monosodium glutamate}<\/em>.&nbsp;<\/p>\n\n\n\n<p>In the above code, <em>msg<\/em> can be viewed as the label that references the acronym in the document. <em>MSG <\/em>is the acronym itself and is normally denoted in all capital letters. Finally, <em>Monosodium glutamate<\/em> is the full term the acronym denotes.<\/p>\n\n\n\n<p>Once the acronyms have been added to your preamble, you can use additional commands to describe how they should be denoted.<\/p>\n\n\n\n<ul><li><em>\\acrlong{ACRONYM LABEL}<\/em>: This command displays the full phrase that the acronym stands for. So <em>\\acrlong{msg}<\/em> will be shown as <em>Monosodium glutamate<\/em> in the final document.<\/li><li><em>\\acrshort{ACRONYM LABEL}<\/em>: This command displays the acronym that the label is associated with. So <em>\\arshort{msg}<\/em> will be shown as MSG in the final document.<\/li><li><em>\\acrfull{ACRONYM LABEL}<\/em>: This command displays both the acronym as well as its definition. So <em>\\acrfull{msg} <\/em>will be shown as <em>Monosodium glutamate (MSG)<\/em> in the final document.<\/li><\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"printing-your-list-of-acronyms\"><span class=\"ez-toc-section\" id=\"Printing_Your_List_of_Acronyms\"><\/span>Printing Your List of Acronyms<span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<p>LaTeX allows you to print your list of acronyms using the command <em>\\printglossary[type=\\acronymtype]<\/em>. You should note that LaTeX requires a temporary file to print your acronyms. This temporary file is generated using the command <em>\\printglossary<\/em>, so it must be added just before <em>\\printglossary[type=\\acronymtype]<\/em> in your code. After this, you should compile the code and remove the <em>\\printglossary <\/em>line.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"changing-the-glossary-title\"><span class=\"ez-toc-section\" id=\"Changing_the_Glossary_Title\"><\/span>Changing the Glossary Title<span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<p>In the above examples, we showed that LaTeX creates the glossary section in the final document with the title \u201cGlossary\u201d. However, in some situations, you may need to use a different title for your glossary. You can do this by adding parameters to the <em>\\printglossary<\/em> command near the end of your code.<\/p>\n\n\n\n<p>For example:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: latex; title: ; notranslate\" title=\"\">\n\\printglossary&#x5B;title=Terms Explained, toctitle=List of Different Terms Used]\n<\/pre><\/div>\n\n\n<p>This sets the glossary title as <em>Terms Explained<\/em> and the table of contents title as <em>List of Different Terms Used<\/em>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"displaying-your-glossaries-in-latex-via-document-table-of-contents\"><span class=\"ez-toc-section\" id=\"Displaying_Your_Glossaries_in_LaTeX_via_Document_Table_of_Contents\"><\/span>Displaying Your Glossaries in LaTeX via Document Table of Contents<span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<p>It is possible to include your glossary in the document\u2019s table of contents using the command <em>\\usepackage<div id=\"ez-toc-container\" class=\"ez-toc-v2_0_67_1 counter-hierarchy ez-toc-counter ez-toc-grey ez-toc-container-direction\">\n<p class=\"ez-toc-title\">Table of Contents<\/p>\n<label for=\"ez-toc-cssicon-toggle-item-69e1d0ef9ca4e\" class=\"ez-toc-cssicon-toggle-label\"><span class=\"\"><span class=\"eztoc-hide\" style=\"display:none;\">Toggle<\/span><span class=\"ez-toc-icon-toggle-span\"><svg style=\"fill: #999;color:#999\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"list-377408\" width=\"20px\" height=\"20px\" viewBox=\"0 0 24 24\" fill=\"none\"><path d=\"M6 6H4v2h2V6zm14 0H8v2h12V6zM4 11h2v2H4v-2zm16 0H8v2h12v-2zM4 16h2v2H4v-2zm16 0H8v2h12v-2z\" fill=\"currentColor\"><\/path><\/svg><svg style=\"fill: #999;color:#999\" class=\"arrow-unsorted-368013\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"10px\" height=\"10px\" viewBox=\"0 0 24 24\" version=\"1.2\" baseProfile=\"tiny\"><path d=\"M18.2 9.3l-6.2-6.3-6.2 6.3c-.2.2-.3.4-.3.7s.1.5.3.7c.2.2.4.3.7.3h11c.3 0 .5-.1.7-.3.2-.2.3-.5.3-.7s-.1-.5-.3-.7zM5.8 14.7l6.2 6.3 6.2-6.3c.2-.2.3-.5.3-.7s-.1-.5-.3-.7c-.2-.2-.4-.3-.7-.3h-11c-.3 0-.5.1-.7.3-.2.2-.3.5-.3.7s.1.5.3.7z\"\/><\/svg><\/span><\/span><\/label><input type=\"checkbox\"  id=\"ez-toc-cssicon-toggle-item-69e1d0ef9ca4e\" checked aria-label=\"Toggle\" \/><nav><ul class='ez-toc-list ez-toc-list-level-1 ' ><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class=\"ez-toc-link ez-toc-heading-1\" href=\"https:\/\/www.scijournal.org\/articles\/glossaries-in-latex\/#What_is_a_Glossary\" title=\"What is a Glossary?\">What is a Glossary?<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class=\"ez-toc-link ez-toc-heading-2\" href=\"https:\/\/www.scijournal.org\/articles\/glossaries-in-latex\/#How_to_Create_a_Glossary_in_LaTeX\" title=\"How to Create a Glossary in LaTeX\">How to Create a Glossary in LaTeX<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class=\"ez-toc-link ez-toc-heading-3\" href=\"https:\/\/www.scijournal.org\/articles\/glossaries-in-latex\/#Referencing_Terms_in_Uppercase_and_Lowercase\" title=\"Referencing Terms in Uppercase and Lowercase\">Referencing Terms in Uppercase and Lowercase<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class=\"ez-toc-link ez-toc-heading-4\" href=\"https:\/\/www.scijournal.org\/articles\/glossaries-in-latex\/#Using_Terms_and_Acronyms_in_LaTeX\" title=\"Using Terms and Acronyms in LaTeX\">Using Terms and Acronyms in LaTeX<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class=\"ez-toc-link ez-toc-heading-5\" href=\"https:\/\/www.scijournal.org\/articles\/glossaries-in-latex\/#Adding_Acronyms_to_LaTeX\" title=\"Adding Acronyms to LaTeX\">Adding Acronyms to LaTeX<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class=\"ez-toc-link ez-toc-heading-6\" href=\"https:\/\/www.scijournal.org\/articles\/glossaries-in-latex\/#Printing_Your_List_of_Acronyms\" title=\"Printing Your List of Acronyms\">Printing Your List of Acronyms<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class=\"ez-toc-link ez-toc-heading-7\" href=\"https:\/\/www.scijournal.org\/articles\/glossaries-in-latex\/#Changing_the_Glossary_Title\" title=\"Changing the Glossary Title\">Changing the Glossary Title<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class=\"ez-toc-link ez-toc-heading-8\" href=\"https:\/\/www.scijournal.org\/articles\/glossaries-in-latex\/#Displaying_Your_Glossaries_in_LaTeX_via_Document_Table_of_Contents\" title=\"Displaying Your Glossaries in LaTeX via Document Table of Contents\">Displaying Your Glossaries in LaTeX via Document Table of Contents<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class=\"ez-toc-link ez-toc-heading-9\" href=\"https:\/\/www.scijournal.org\/articles\/glossaries-in-latex\/#How_to_Compile_Your_Glossaries_in_LaTeX\" title=\"How to Compile Your Glossaries in LaTeX\">How to Compile Your Glossaries in LaTeX<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class=\"ez-toc-link ez-toc-heading-10\" href=\"https:\/\/www.scijournal.org\/articles\/glossaries-in-latex\/#Using_Different_Glossary_Styles\" title=\"Using Different Glossary Styles\">Using Different Glossary Styles<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class=\"ez-toc-link ez-toc-heading-11\" href=\"https:\/\/www.scijournal.org\/articles\/glossaries-in-latex\/#Final_Thoughts\" title=\"Final Thoughts\">Final Thoughts<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class=\"ez-toc-link ez-toc-heading-12\" href=\"https:\/\/www.scijournal.org\/articles\/glossaries-in-latex\/#Frequently_Asked_Questions\" title=\"Frequently Asked Questions\">Frequently Asked Questions<\/a><ul class='ez-toc-list-level-3' ><li class='ez-toc-heading-level-3'><a class=\"ez-toc-link ez-toc-heading-13\" href=\"https:\/\/www.scijournal.org\/articles\/glossaries-in-latex\/#Q1_How_Can_I_Link_an_Acronym_eg_MVP_to_the_Glossary_at_Occurrence_but_Spell_It_Out_at_the_First_Occurrence_eg_Minimal_Viable_Product\" title=\"Q1. How Can I Link an Acronym (e.g: MVP) to the Glossary at Occurrence but Spell It Out at the First Occurrence (e.g: Minimal Viable Product)?\">Q1. How Can I Link an Acronym (e.g: MVP) to the Glossary at Occurrence but Spell It Out at the First Occurrence (e.g: Minimal Viable Product)?<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-3'><a class=\"ez-toc-link ez-toc-heading-14\" href=\"https:\/\/www.scijournal.org\/articles\/glossaries-in-latex\/#Q2_How_Do_I_Add_Acronyms_in_LaTex\" title=\"Q2. How Do I Add Acronyms in LaTex?\">Q2. How Do I Add Acronyms in LaTex?<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-3'><a class=\"ez-toc-link ez-toc-heading-15\" href=\"https:\/\/www.scijournal.org\/articles\/glossaries-in-latex\/#Q3_How_Do_I_Reference_Terms_So_That_the_First_Letter_is_Uppercase\" title=\"Q3. How Do I Reference Terms So That the First Letter is Uppercase?\">Q3. How Do I Reference Terms So That the First Letter is Uppercase?<\/a><\/li><\/ul><\/li><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class=\"ez-toc-link ez-toc-heading-16\" href=\"https:\/\/www.scijournal.org\/articles\/glossaries-in-latex\/#Further_Reading\" title=\"Further Reading\">Further Reading<\/a><\/li><\/ul><\/nav><\/div>\n{glossaries}<\/em>. This command should be added in the preamble after <em>\\documentclass{}<\/em>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"how-to-compile-your-glossaries-in-latex\"><span class=\"ez-toc-section\" id=\"How_to_Compile_Your_Glossaries_in_LaTeX\"><\/span>How to Compile Your Glossaries in LaTeX<span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<p>Compiling glossaries in LaTeX is straightforward. However, if you intend to add new terms to it after it has been compiled, you will need to select the <em>Clear cached files<\/em> option under logs. If you intend to compile your document on your local device using pdflatex, you can use the following code:<\/p>\n\n\n\n<p><em>pdflatex myglossaries.tex<\/em><\/p>\n\n\n\n<p><em>makeglossaries glossaries<\/em><\/p>\n\n\n\n<p><em>pdflatex myglossaries.tex<\/em><\/p>\n\n\n\n<p><em>myglossaries.tex<\/em> is the document name in this example.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"using-different-glossary-styles\"><span class=\"ez-toc-section\" id=\"Using_Different_Glossary_Styles\"><\/span>Using Different Glossary Styles<span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<p>Glossaries in LaTeX also allows you to set different styles for your glossary. This can be accomplished using the command <em>\\glossarystyle{YOUR CHOSEN STYLE}<\/em> before the command <em>\\printglossaries<\/em>. The different glossary styles and their corresponding codes are listed below:<\/p>\n\n\n\n<ul><li><em>list<\/em>: This style shows each defined term using boldface font<\/li><li><em>altlist<\/em>: This style inserts a new line after the displayed term and indents its description.<\/li><li><em>listgroup<\/em>: This style groups each term based on their first letter.<\/li><li><em>listhypergroup<\/em>: This style adds hyperlinks at the very top of the glossary index.<\/li><\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"final-thoughts\"><span class=\"ez-toc-section\" id=\"Final_Thoughts\"><\/span>Final Thoughts<span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<p>As you can see, creating glossaries in LaTeX is a simple task. You can enhance the content of your documents using glossaries. So try offering readers additional information about terms and acronyms by adding a glossary to your next LaTeX Document.&nbsp;<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"frequently-asked-questions\"><span class=\"ez-toc-section\" id=\"Frequently_Asked_Questions\"><\/span>Frequently Asked Questions<span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<p>Some frequently asked questions related to glossaries in LaTeX are shown below:<\/p>\n\n\n<div id=\"rank-math-faq\" class=\"rank-math-block\">\n<div class=\"rank-math-list \">\n<div id=\"faq-question-1630933923974\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><span class=\"ez-toc-section\" id=\"Q1_How_Can_I_Link_an_Acronym_eg_MVP_to_the_Glossary_at_Occurrence_but_Spell_It_Out_at_the_First_Occurrence_eg_Minimal_Viable_Product\"><\/span>Q1. How Can I Link an Acronym (e.g: MVP) to the Glossary at Occurrence but Spell It Out at the First Occurrence (e.g: Minimal Viable Product)?<span class=\"ez-toc-section-end\"><\/span><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>You can use the command <em>\\acrshort{ACRONYM LABEL}<\/em> to display the acronym and the command <em>\\acrlong{ACRONYM LABEL}<\/em> to display the full term.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1630933928608\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><span class=\"ez-toc-section\" id=\"Q2_How_Do_I_Add_Acronyms_in_LaTex\"><\/span>Q2. How Do I Add Acronyms in LaTex?<span class=\"ez-toc-section-end\"><\/span><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>You can easily add acronyms in LaTeX documents by first using the command <em>\\usepackage[acronym]{glossaries}<\/em> and then <em>\\newacronym{LOWERCASE LABEL}{UPPERCASE LABEL}{THE FULL TERM}<\/em>.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1630933932247\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><span class=\"ez-toc-section\" id=\"Q3_How_Do_I_Reference_Terms_So_That_the_First_Letter_is_Uppercase\"><\/span>Q3. How Do I Reference Terms So That the First Letter is Uppercase?<span class=\"ez-toc-section-end\"><\/span><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>You can reference terms in a manner that displays the first letter as uppercase using the command <em>\\Gls{TERM TEXT }<\/em>.<\/p>\n\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n\n\n<h2 class=\"gb-headline gb-headline-c8ee9dc0 gb-headline-text\"><span class=\"ez-toc-section\" id=\"Further_Reading\"><\/span><strong>Further Reading<\/strong><span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<p><strong>LaTex Tutorial<\/strong><\/p>\n\n\n\n<ol><li><a href=\"https:\/\/www.scijournal.org\/articles\/pros-and-cons-of-using-latex\">27 Pros and Cons of Using LaTex for Scientific Writing<\/a> <\/li><li><a href=\"https:\/\/www.scijournal.org\/articles\/latex-document\">6 easy steps to create your first Latex document examples<\/a><\/li><li><a href=\"https:\/\/www.scijournal.org\/articles\/circuit-diagrams-in-latex\">How to add circuit diagrams in Latex<\/a> <\/li><li><a href=\"https:\/\/www.scijournal.org\/articles\/latex-font\">How to change Latex font and font size<\/a><\/li><li><a href=\"https:\/\/www.scijournal.org\/articles\/latex-table-of-contents\">How to create a Latex table of contents<\/a> <\/li><li><a href=\"https:\/\/www.scijournal.org\/articles\/footnotes-in-latex\">How to create footnotes in LaTeX and how to refer to them, using the builtin commands<\/a> <\/li><li><a href=\"https:\/\/www.scijournal.org\/articles\/plots-in-latex\">How to create plots in Latex \u2013 codes and examples<\/a><\/li><li><a href=\"https:\/\/www.scijournal.org\/articles\/symbols-in-latex\">How to create symbols in LaTeX \u2013 commands for Latex greek alphabet<\/a>\u00a0 <\/li><li><a href=\"https:\/\/www.scijournal.org\/articles\/latex-tables\">How to create tables in LaTeX \u2013 rows, columns, pages and landscape tables<\/a><\/li><li><a href=\"https:\/\/www.scijournal.org\/articles\/graphs-in-latex\">How to drawing graphs in Latex \u2013 vector graphics with tikz<\/a><\/li><li><a href=\"https:\/\/www.scijournal.org\/articles\/source-code-in-latex\">How to highlight source code in LaTeX<\/a><\/li><li><a href=\"https:\/\/www.scijournal.org\/articles\/image-in-latex\">How to insert an image in LaTeX \u2013 Managing Latex figure and picture<\/a><\/li><li><a href=\"https:\/\/www.scijournal.org\/articles\/latex-bullet-points\">How to Itemize and Number List \u2013 Adding Latex Bullet Points<\/a><\/li><li><a href=\"https:\/\/www.scijournal.org\/articles\/hyperlinks-in-latex\">How to make hyperlink in latex \u2013 Clickable links<\/a><\/li><li><a href=\"https:\/\/www.scijournal.org\/articles\/reference-in-latex\">How to reference in Latex \u2013 5 steps to bibliography with Bibtex<\/a><\/li><li><a href=\"https:\/\/www.scijournal.org\/articles\/latex-packages\">How to use Latex Packages with examples<\/a><\/li><li><a href=\"https:\/\/www.scijournal.org\/articles\/latex-paragraphs\">How to use LaTeX paragraphs and sections<\/a><\/li><li><a href=\"https:\/\/www.scijournal.org\/articles\/latex-installation-guide\">LaTeX Installation Guide \u2013 Easy to follow steps to install LaTex<\/a><\/li><li><a href=\"https:\/\/www.scijournal.org\/articles\/latex-equations-and-math\">Learn to typeset and align Latex equations and math<\/a><\/li><\/ol>\n","protected":false},"excerpt":{"rendered":"<p>Documents that contain a large number of terms or acronyms may require special Glossaries in LaTeX section at the end. This glossary typically includes a list of these terms and their definitions.&nbsp; If you intend to create a professional document in LaTeX, you should know that it is possible to create glossaries in LaTeX relatively &#8230; <a title=\"How to Create Glossaries in LaTeX&nbsp;\" class=\"read-more\" href=\"https:\/\/www.scijournal.org\/articles\/glossaries-in-latex\" aria-label=\"Read more about How to Create Glossaries in LaTeX&nbsp;\">Read more<\/a><\/p>\n","protected":false},"author":3,"featured_media":328,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_mi_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":""},"categories":[7],"tags":[],"_links":{"self":[{"href":"https:\/\/www.scijournal.org\/articles\/wp-json\/wp\/v2\/posts\/327"}],"collection":[{"href":"https:\/\/www.scijournal.org\/articles\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.scijournal.org\/articles\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.scijournal.org\/articles\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/www.scijournal.org\/articles\/wp-json\/wp\/v2\/comments?post=327"}],"version-history":[{"count":12,"href":"https:\/\/www.scijournal.org\/articles\/wp-json\/wp\/v2\/posts\/327\/revisions"}],"predecessor-version":[{"id":5583,"href":"https:\/\/www.scijournal.org\/articles\/wp-json\/wp\/v2\/posts\/327\/revisions\/5583"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.scijournal.org\/articles\/wp-json\/wp\/v2\/media\/328"}],"wp:attachment":[{"href":"https:\/\/www.scijournal.org\/articles\/wp-json\/wp\/v2\/media?parent=327"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.scijournal.org\/articles\/wp-json\/wp\/v2\/categories?post=327"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.scijournal.org\/articles\/wp-json\/wp\/v2\/tags?post=327"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}