별도의 약어 및 용어집 목록 만들기

별도의 약어 및 용어집 목록 만들기

나는 LaTeX에서 용어집을 사용하고 있으며 약어 목록이 있는 한 페이지, 그 다음에는 내 장, 그리고 장 뒤에는 용어집이 있는 별도의 페이지를 원합니다. 이것이 가능한가?

이것은 내 메인파일입니다:

\documentclass[a4paper,12pt]{scrreprt}
\usepackage[latin1]{inputenc}
\usepackage[german,ngerman]{babel}

\usepackage[toc,nopostdot, nonumberlist,style=long,automake]{glossaries}
\loadglsentries{Intro/Glossar}
\makeglossaries

\begin{document}
  \pagenumbering{Roman}

  \tableofcontents

  %List of Acronyms
  \newpage
  \printglossary[type=\acronymtype,title={List of Acronyms}]


  %Main Part
  \newpage
  \pagenumbering{arabic}

  \chapter{Test}
  This is a test with \acrlong{ssd} and \acrlong{ram}.
  This is a \gls{computer}.


  %Glossary      
  \printglossary[title=Glossary]

\end{document}

모든 용어 항목이 포함된 별도의 "Intro/Glossar" 파일도 있습니다.

\newacronym{ssd}{SSD}{Solid State Drive}
\newacronym{ram}{RAM}{Random Access Memory}

\newglossaryentry{computer}
{
    name=computer,
    description={is a programmable machine that receives input,
        stores and manipulates data, and provides
        output in a useful format}
}

문제는 약어 목록과 용어집 모두에 모든 것이 표시된다는 것입니다. 첫 번째 부분에는 약어 목록만 표시하고 마지막 부분에는 용어집 항목만 표시할 수 있나요?

다음은 문서의 일부 사진입니다.


약어 목록

"컴퓨터" 항목은 이 목록에 있어서는 안 됩니다.


용어 사전

여기에는 "두문자어"에만 속하는 두 개의 두문자어 "ssd"와 "ram"이 있습니다.


답변1

acronym패키지를 로드할 때 옵션을 추가하기만 하면 됩니다 .

\usepackage[toc,nopostdot, nonumberlist,style=long,automake,acronym]{glossaries}

관련 정보