acro icon indicating copy to clipboard operation
acro copied to clipboard

acronyms for LaTeX

Results 35 acro issues
Sort by recently updated
recently updated
newest added

The manual gives `acro/trailing/define` as the key to add additional trailing characters but this is undefined and the source uses `acro/trailing/register` instead https://github.com/cgnieder/acro/blob/9a56e414b0eb82ff89241decc66da9620f2292df/doc/acro-manual.tex#L1587 https://github.com/cgnieder/acro/blob/d2479bb10855d57984aabbd75762db79bb058c9a/code/acro.tools.code.tex#L486

I use a master acronym list which hold all my acro definitions, I just keep adding to it as I need new ones. I had been doing this for years...

I'm trying to write an article in two languages simultaneously using `babel`. I need to define some acronyms that usually have a definition in both languages but use the same...

Dear all, please consider the following example: ``` \documentclass{article} \usepackage[utf8]{inputenc} \usepackage{acro} \acsetup{ make-links, } \usepackage{hyperref} \DeclareAcronym{mpm}{ short=MPM, long=mobile phase modulator, short-indefinite=an, long-indefinite=a, } \begin{document} \iac{mpm} \par \iac{mpm} \end{document} ``` In...

Hi, I'm trying to print a list of acronyms in a similar manner than what is proposed in this stackexchange answer: https://tex.stackexchange.com/a/498790 Using the `longtable` option for the template, I...

Good afternoon, Thank you for this great package ! I see in your documentation that you can export a list of acronyms to a csv file. Is it possible to...

enhancement

The (abstract of the) documentation claims that `acro` can also be used for glossaries or nomenclatures. And indeed, a glossary can be found in it, which it is typeset thanks...

enhancement

I would like to do something like the following for a series of documents which share tags and potentially unused tags, Currently, when using an empty list, it still shows...

enhancement

One can argue that this feature but in my opinion it should be considered a bug. If you use acronyms across a large project (in case of TLC 1600+ pages)...

bug

```latex \documentclass{article} \usepackage{acro} \acsetup{ use-id-as-short, single, barriers/use, barriers/single, } \DeclareAcronym{CPU}{long=central processing unit} \DeclareAcronym{RAM}{long=random access memory} \begin{document} \ac{CPU} -- OK (single use) \ac{RAM}, \ac{RAM} -- OK (first and nth use) ---...