頭字語と用語集の別個のリストを作成する

頭字語と用語集の別個のリストを作成する

私は LaTeX で用語集を使用していますが、頭字語のリストを含むページを 1 つ作成し、次に章を追加し、章の後に用語集を含む別のページを作成したいと考えています。これは可能ですか?

これは私のメインファイルです:

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

頭字語のリストと用語集の両方にすべてが表示されるという問題があります。最初の部分に頭字語のリストのみを表示し、最後の部分に用語集のエントリのみを表示することは可能ですか?

以下は文書からの写真です:


頭字語のリスト

「コンピュータ」というエントリはこのリストに含まれてはいけません。


用語集

ここには、「頭字語」にのみ属する 2 つの頭字語「ssd」と「ram」があります。


答え1

acronymパッケージをロードするときにオプションを追加するだけです:

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

関連情報