\acrodef 또는 \newacro 사용 시 오류 발생

\acrodef 또는 \newacro 사용 시 오류 발생

패키지를 사용하면 다음과 같은 또는 대신 acronym에 약어를 정의하는 중에 오류가 발생합니다 .\acrodef\newacro\acro

! LaTeX Error: Something's wrong--perhaps a missing \item.
See the LaTeX manual or LaTeX Companion for explanation.
Type  H <return>  for immediate help.
 ...                                        
l.11 \end{acronym}
?

이 오류는 무시할 수 있지만 컨퍼런스에 제출하려면 컴파일 파일이 필요합니다.

다음은 해당 오류를 유발하는 예입니다.

\documentclass{scrartcl}
\usepackage[printonlyused]{acronym}
\begin{document}
This is an example; \ac{IHE}.\\
And \ac{IHE} again!

\begin{acronym}[IHE]
\acrodef{IHE}{\emph{Integrating the Health Enterprise}}
\end{acronym}
\end{document}

답변1

acronym매뉴얼 의 섹션 2.3에 따라 \acrodef"를 사용해야 합니다.[i]두문자어 목록이 전혀 생성되는 것을 원하지 않는 경우"(p. 4). 환경 내에서는 acronym간단히 \acro명령을 사용하십시오.

\documentclass{scrartcl}
\usepackage[printonlyused]{acronym}
\begin{document}
This is an example; \ac{IHE}.\\    And \ac{IHE} again!

\begin{acronym}[IHE]
\acro{IHE}{\emph{Integrating the Health Enterprise}}
\end{acronym}
\end{document}

여기에 이미지 설명을 입력하세요

\acrodef공장밖의환경 acronym:

\documentclass{scrartcl}
\usepackage[printonlyused]{acronym}
\acrodef{IHE}{\emph{Integrating the Health Enterprise}}
\begin{document}
This is an example; \ac{IHE}.\\    And \ac{IHE} again!
\end{document}

여기에 이미지 설명을 입력하세요

관련 정보