1

アイテムの名前 (括弧内) が 2 文字以下のリスト内のアイテムは、名前と同じ行に説明が表示されます。すべての説明が次の行にインデントされるようにする方法を探しています。ありがとうございます。

\documentclass[11pt]{article}

%% Layout Alteration
%% --------------------------
\usepackage{
            enumitem,           % indented items for glossary
            framed,             % nice boxes; used in Supervisor's Approval
            geometry,           % change the margins for specific PAGES
            }
\setlist[description]{style=nextline}
\geometry{                      % specify page size options for (geometry)
            a4paper,            % paper size
            margin=1in,         % specified independently with hmargin vmargin
         }

% Hides the formatting for the glossary
\newenvironment{Glossary}
    {
        \begin{description}
    }
    {
        \end{description}
    }

\begin{document}

\begin{Glossary}
    \item[Uvic] University of Victoria
    \item[2-FSK] 2 tone Frequency Shift Keying
    \item[Core blocks] The pre installed modules and blocks in Gnuradio
    \item[CSA] Canadian Space Agency
    \item[CubeSat] A miniaturized space satellite for research
    \item[DSP] Digital Signal Processor
    \item[FM] Frequency Modulation
    \item[FPGA] Field-Programmable Gate Array
    \item[FSK] Frequency Shift Keying
    \item[GFSK] Gaussian Frequency Shift Keying
    \item[GNU Radio] A DSP and SDR creation software
    \item[GPIO] General Purpose Input/Output
    \item[GRC] GNU Radio Companion, GUI interface for GNU Radio
    \item[gr\_modtool] A script that simplifies the process of creating OOT Modules
    \item[GUI] Graphical User Interface
    \item[IO] Input/Output
    \item[OS] Operating System
    \item[OOT Module] Out-of-tree Module
    \item[PDU] Protocol Data Unit, A PMT that is a pair of a dictionary and a uniform vector type
    \item[PMT] Polymorphic Type, An opaque data type designed as generic containers of data that can be safely passed between blocks in Gnuradio
\end{Glossary}

\end{document}

「FM」、「IO」、および「OS」の名前はすべて、同じ行に説明があります

4

1 に答える 1