약어 목록 페이지를 표시하지 않음

약어 목록 페이지를 표시하지 않음

acronym저는 논문을 작성 중이며 두문자어/의미의 올바른 배치를 처리하기 위해 패키지를 사용하고 싶습니다 . 다만, 보고서, 단행본 등이 아닌 논문이기 때문에 , 와 같은 약어가 있는 섹션을 강제로 제시하고 싶지 않습니다. 약어 목록을 인쇄하지 않고 \section*{Acronyms}사용이 가능한가요 ? acronymMWE 아래:

\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}

또한 관련된 것은약어 목록 생략.

관련 정보