我在 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}