セクション ヘッダーで使用される場合の 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