一页上的缩写词列表

一页上的缩写词列表

我使用 创建了一个缩写列表\usepackage{acronym}。现在我有一份长达两页的列表。我想将缩写放在一个表格中或一页上的两列中。我该怎么做?

这是我的代码:

\documentclass{article}
\usepackage{hyperref}
\usepackage[T1]{fontenc}
\usepackage[ngerman]{babel}
\usepackage[printonlyused,nohyperlinks]{acronym}




\begin{document}
\chapter{Abkürzungen}

\begin{acronym}
\acro{cf}[CF]{Carbon Microfaser}
\acro{eh}[EH]{Energy Harvesting}
\acro{ehs}[EHS]{Energy-Harvesting-System}
\acro{ekg}[EKG]{Elektrokardiogramm}
\acro{fem}[FEM]{Finite-Elemente-Methode}
\acro{hh}[HH]{Halb-Heusler-Verbindung}
\acro{ht}[HT]{Hochtemperatur}
\acro{imd}[IMD]{implantiertes medizinisches Gerät}
\acro{iot}[IoT]{Internet of Things}
\acro{nt}[NT]{Niedertemperatur}
\acro{pcu}[PCU]{Power Control Unit}
\acro{pf}[PF]{Power Factor}
\acro{pvc}[PVC]{Polyvinylchlorid}
\acro{rfid}[RFID]{Radiofrequenz Identification}
\acro{sc}[SC]{Supply Chain}
\acro{sps}[SPS]{Funkenplasma-Sintern}
\acro{te}[TE]{thermoelektrisch}
\acroplural{te}[TE]{thermoelektrische}
\acro{tec}[TEC]{Thermoelektrischer Kühler}
\acro{teg}[TEG]{Thermoelektrischer Generator}
\acro{fteg}[FTEG]{flexibler TEG}
\acroplural{fteg}[FTEG]{flexible TEGs}
\acro{tteg}[TTEG]{Touristischer TEG}
\acro{tem}[TEM]{Thermoelement}
\acro{hex}[HEX]{Wärmetauscher}
\acro{zt}[ZT]{Gütezahl}

\end{acronym}

\chapter{Text}

\ac{cf} \ac{eh} \ac{ehs} \ac{ekg} \ac{fem} 

\ac{hh} \ac{ht} \ac{imd} \ac{iot} \ac{nt}

\ac{pcu} \ac{pf} \ac{pvc} \ac{sc} \ac{sps} 

\ac{te} \ac{tec} \ac{teg} \ac{fteg} \ac{tteg} 

\ac{tem} \ac{hex} \ac{zt}

\end{document}

答案1

  • 文档类article尚未定义chapter,您应该使用
    • reportbook文档类别,或
    • 而是\chapter使用\section
  • 一种可能的解决方案是插入acronym环境multicols
\documentclass{book}
\usepackage{geometry}
\usepackage[T1]{fontenc}
\usepackage[ngerman]{babel}
\usepackage{multicol}

\usepackage{hyperref}
\usepackage[printonlyused,nohyperlinks]{acronym}


\begin{document}
\chapter{Abkürzungen}

\begin{multicols}{2}
    \setlength\parskip{0pt}
    \begin{acronym}
\acro{cf}[CF]{Carbon Microfaser}
\acroplural{cf}[CF]{Carbon Microfasern}
\acro{eh}[EH]{Energy Harvesting}
\acro{ehs}[EHS]{Energy-Harvesting-System}
\acroplural{ehs}[EHS]{Energy-Harvesting-Systemen}
\acro{ekg}[EKG]{Elektrokardiogramm}
\acro{fem}[FEM]{Finite-Elemente-Methode}
\acro{hh}[HH]{Halb-Heusler-Verbindung}
\acroplural{hh}[HH]{Halb-Heusler-Verbindungen}
\acro{ht}[HT]{Hochtemperatur}
\acro{imd}[IMD]{implantiertes medizinisches Gerät}
\acroplural{imd}[IMD]{implantierten medizinischen Geräten}
\acro{iot}[IoT]{Internet of Things}
\acro{nt}[NT]{Niedertemperatur}
\acro{pcu}[PCU]{Power Control Unit}
\acro{pf}[PF]{Power Factor}
\acro{pvc}[PVC]{Polyvinylchlorid}
\acro{rfid}[RFID]{Radiofrequenz Identification}
\acro{sc}[SC]{Supply Chain}
\acro{sps}[SPS]{Funkenplasma-Sintern}
\acro{te}[TE]{thermoelektrisch}
\acroplural{te}[TE]{thermoelektrische}
\acro{tec}[TEC]{Thermoelektrischer Kühler}
\acroplural{tec}[TECs]{Thermoelektrische Kühler}
\acro{teg}[TEG]{Thermoelektrischer Generator}
\acroplural{teg}[TEGs]{Thermoelektrische Generatoren}
\acro{fteg}[FTEG]{flexibler TEG}
\acroplural{fteg}[FTEG]{flexible TEGs}
\acro{tteg}[TTEG]{Touristischer TEG}
\acro{tem}[TEM]{Thermoelement}
\acroplural{tem}[TEMs]{Thermoelemente}
\acro{hex}[HEX]{Wärmetauscher}
\acro{zt}[ZT]{Gütezahl}
    \end{acronym}
\end{multicols}


\chapter{Text}

\ac{cf} \ac{eh} \ac{ehs} \ac{ekg} \ac{fem}

\ac{hh} \ac{ht} \ac{imd} \ac{iot} \ac{nt}

\ac{pcu} \ac{pf} \ac{pvc} \ac{sc} \ac{sps}

\ac{te} \ac{tec} \ac{teg} \ac{fteg} \ac{tteg}

\ac{tem} \ac{hex} \ac{zt}

\end{document}

在此处输入图片描述

相关内容