我想更改 acro 包在節標題中使用時的行為方式,以默認為首字母縮略詞的長形式並忽略首字母縮略詞的使用,相當於\acl*{GPS}
.我想預設這樣做,這樣你就可以寫\ac{GPS}
而不是\acl*{GPS}
每次都寫。這可能嗎?
程式碼如下:
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{acro}
\acsetup{sort=true, only-used = true, list-style = extra-tabular, macros=true, list-caps=true, single}
\acsetup{list-short-width=-1cm}
\DeclareAcroListStyle{extra-tabular}{extra-table}{
table = tabular, table-spec = lp{12cm}p{2cm}l
}
\newcommand*{\acro}[3]{\DeclareAcronym{#1}{short=#2,long=#3}}
\acro{GPS}{GPS}{Global Positioning Service}
\begin{document}
\ac{GPS}
\section{\acl*{GPS}}
\subsection{\ac{GPS}}
\ac{GPS}
\end{document}
答案1
如果您實際上正在使用該類article
,則可以透過將以下內容新增至序言(在 之前)來重新定義其\section
命令(在 中找到) :article.cls
\begin{document}
\makeatletter
\renewcommand\section{\@startsection {section}{1}{\z@}%
{-3.5ex \@plus -1ex \@minus -.2ex}%
{2.3ex \@plus.2ex}%
{\normalfont\Large\bfseries\def\ac{\acl*}}}
\makeatother