Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Q&A

Post History

60%
+1 −0
Q&A Where to put acronym/abbreviation explanation?

I assume you're using latex with autogenerated glossary, if not you probably should. \usepackage[acronym]{glossaries} \makeglossaries \newacronym{MDBs}{MDBs}{Multilateral Development Banks} If...

posted 4y ago by Milo Bem‭  ·  last activity 4y ago by System‭

Answer
#3: Attribution notice added by user avatar System‭ · 2019-12-08T13:08:34Z (over 4 years ago)
Source: https://writers.stackexchange.com/a/48694
License name: CC BY-SA 4.0
License URL: https://creativecommons.org/licenses/by-sa/4.0/
#2: Initial revision by user avatar Milo Bem‭ · 2019-12-08T13:08:34Z (over 4 years ago)
I assume you're using latex with autogenerated glossary, if not you probably should.

    \usepackage[acronym]{glossaries}
    
    \makeglossaries
    
    \newacronym{MDBs}{MDBs}{Multilateral Development Banks}

If this is some acronym you will use more later, it's better to introduce it in the main text before it shows up in a table:

    In this part of research we used \gls{MDBs}, the best stuff since slice bread, see \autoref{tab:table1}. 
    
    \begin{table}[h]
        some stuff about \gls{MDBs}
    \label{tab:table1}
    \end{table}

If it is only used in this table and nowhere else there is little reason to make an acronym at all. Just spell it all out:

    \begin{table}[h]
        some stuff about Multilateral Development Banks.
    \label{tab:table1}
    \end{table}

If you really need or want to introduce the acronym in the table, it makes more sense to expand it in the caption. I don't remember how to do it in tex macro:

    \begin{table}[h]
        some stuff about Multilateral Development Banks^{1}.
    \caption[Table about stuff]{This table contains stuff. Acronyms: \gls{MDBs}, \gls{ABC}, ...}
    \label{tab:table1}
    \end{table}

#1: Imported from external source by user avatar System‭ · 2019-10-23T18:05:42Z (over 4 years ago)
Original score: 1