不显示首字母缩略词列表页面

不显示首字母缩略词列表页面

我正在写一篇论文,我想使用该acronym包来处理首字母缩略词/含义的正确位置。但是,我不想被迫展示带有首字母缩略词的部分,例如\section*{Acronyms},因为它是一篇论文,而不是报告、书籍等。是否可以acronym在不打印首字母缩略词列表的情况下使用?以下是 MWE:

\documentclass[11pt,a4paper]{article}
\usepackage[utf8]{inputenc}
\usepackage[printonlyused]{acronym}

\title{My Paper Title}
\author{J. Lima Filho}
\date{April 2022}

\begin{document}

\maketitle

\section*{Acronyms}
\begin{acronym}
    \acro{OPV}{Organic Photovoltaic}
\end{acronym}

\section{Introduction}
One important field of research is on \acp{OPV} due to their unique features, such as low cost and ease of fabrication.

\end{document}

答案1

您的问题似乎与如何隐藏首字母缩略词列表我通过搜索找到了它"acronym suppress list of"。结果发现这个acronym包有一个nolist选项, 见下文。

\documentclass[11pt,a4paper]{article}
\usepackage[utf8]{inputenc}
\usepackage[printonlyused, nolist]{acronym} % <-- ADDED "nolist"

\title{My Paper Title}
\author{J. Lima Filho}
\date{April 2022}

\begin{document}

\maketitle

\section*{Acronyms}
\begin{acronym}
    \acro{OPV}{Organic Photovoltaic}
\end{acronym}

\section{Introduction}
One important field of research is on \acp{OPV} due to their unique features, such as low cost and ease of fabrication.

\end{document}

相关内容省略缩写列表

相关内容