I'm trying to make my acronym short hand a mix of upper and lower case for example PoE versus what it currently does by default which is POE
So far I have tried the \lowercase \MakeLowercase and including the label and custom acro aka:
{poe}[PoE]{Power over Ethernet}
Thank you for your help in advance for this :)
EDIT Added MWE of the glossary page below, the full template was borrowed form (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}
\documentclass{...}and ending with\end{document}. – Dai Bowen Nov 14 '16 at 00:44acronympackage but you say you use theacropackage (inacroacronyms are defined through key-value lists) please confirm which package is being used. Either way I cannot replicate your problem with either package with what little has been posed here, please do construct an MWE which we can copy and compile to replicate your problem withPOEappearing instead ofPoE. – Dai Bowen Nov 14 '16 at 01:00acronymplus an answer I wrote using it you should be able to use whatever case you want. i.e.\acro{poe}[PoE]{Power over Ethernet}or\acro{PoE}{Power over Ethernet}should just work. I wonder if there's something odd in your template. – Chris H Nov 14 '16 at 09:18acropackage! – cgnieder Nov 14 '16 at 20:11