.png)
Estoy tratando de hacer que mi acrónimo sea una combinación de mayúsculas y minúsculas, por ejemplo.PoEversus lo que hace actualmente por defecto, que esPOE
Hasta ahora he probado \lowercase
\MakeLowercase
e incluido la etiqueta y el acro personalizado también conocido como:
{poe}[PoE]{Power over Ethernet}
Gracias por su ayuda de antemano para esto :)
EDITARSe agregó MWE de la página del glosario a continuación, la plantilla completa se tomó prestada (https://github.com/briandealwis/ubcdiss):
%% The following is a directive for TeXShop to indicate the main file
%%!TEX root = diss.tex
\chapter{Glossary}
%This glossary uses the handy \latexpackage{acroynym} package to automaticallymaintain the glossary. It uses the package's \texttt{printonlyused}option to include only those acronyms explicitly referenced in the\LaTeX\ source.
% use \acrodef to define an acronym, but no listing
\acrodef{UI}{user interface}
% The acronym environment will typeset only those acronyms that were
% *actually used* in the course of the document
\begin{acronym}[ANOVA]
%Begin template acronyms that were not removed
\acro{PoE}[PoE]{application programming interface}
\acro{DOI}{Document Object Identifier\acroextra{ (see\url{http://doi.org})}}
\end{acronym}
Respuesta1
Sospecho que obtienes versalitas en lugar de mayúsculas. Ahí diss.tex
está la línea (con comentarios).
%% The ubcdiss.cls loads the `textcase' package which provides commands
%% for upper-casing and lower-casing text. The following causes
%% the acronym package to typeset acronyms in small-caps
%% as recommended by Bringhurst.
\renewcommand{\acsfont}[1]{{\scshape \MakeTextLowercase{#1}}}
Simplemente elimine esta línea y estará bien.
Ésta es una razón para desconfiar del modelo ajeno.