.png)
Например, я пытаюсь сделать свою аббревиатуру сокращенной, используя сочетание заглавных и строчных букв.PoEпо сравнению с тем, что он в настоящее время делает по умолчанию, а именноПОЭ
До сих пор я пробовал \lowercase
\MakeLowercase
и включая метку и пользовательский acro aka:
{poe}[PoE]{Power over Ethernet}
Заранее спасибо за помощь :)
РЕДАКТИРОВАТЬДобавлен MWE страницы глоссария ниже, полный шаблон был заимствован из формы (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}
решение1
Подозреваю, что вы получаете маленькие заглавные буквы вместо заглавных. В diss.tex
строке (с комментариями).
%% 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}}}
Просто удалите эту строку и все будет в порядке.
Это повод с осторожностью относиться к чужим шаблонам.