용어집 공간 조정

용어집 공간 조정

수학적 매개변수 목록을 생성한 후 두 가지 질문이 있습니다.

  • 각각의 정의 중 일부는 너무 길어서 두 줄을 차지하게 됩니다. 그림에서 볼 수 있듯이 이러한 긴 정의(예: Mjp)의 두 번째 줄은 수학 기호 아래에서 시작됩니다. 이는 보기에 좋지 않으므로 첫 번째 줄 아래에 정의의 두 번째 줄을 넣고 싶습니다.
  • 목록의 마지막 매개변수(예: 매개변수 BFC, BTC 등)는 이진 매개변수이므로 BFC\in{0,1}과 같이 호출하고 싶습니다. 하지만 이렇게 작성하면 Latex에서 오류가 발생합니다. 고칠 수 있는 방법이 있나요?

제가 사용한 코드를 여기에 남겨두겠습니다.

\usepackage{enumitem}
\usepackage{hyperref}
\usepackage{glossaries}


\makeglossaries

\newcommand{\mathgl}[2]{
    \newglossaryentry{#1}{name={#1},description={#2}}
    \begin{description}[labelwidth=2cm]
      \item[\gls{#1}]#2
    \end{description}
}

\subsubsection{Parameters}
The following product flow related parameters are used:\\
\mathgl{D_j_p_y}{Demand of customer $j$ for specific product code $p$ in year $y$.}
\mathgl{Q_i}{Available capacity on facility $i$ [M cans].}
\mathgl{V_i}{Minimum volume required on facility $i$ [M cans].}
\mathgl{Fc_i}{Fixed cost of each facility $i$ [\euro].}
\mathgl{M_j_p}{Minimum volume required per product code $p$ from facility $i$ to customer $j$ [M cans].}
\mathgl{G_o_p}{Minimum volume required per product code $p$ from facility $i$ to OpCo $o$ [M cans].}
\mathgl{Fc_i}{Fixed cost of each facility $i$ [\euro].}
\mathgl{Ec__i_j_p_y}{Ex-works costs per product code p from facility i to customer j in year y [\euro/M cans]. }
\mathgl{Tc_i_j_p}{Unit transportation costs for specific product code p from facility i to customer j [\euro/M cans].}
\mathgl{Lc}{Transportation fixed costs [\euro].}
\mathgl{Vc}{Transportation variable costs [\euro].}
\mathgl{Wc_i_j_p}{Unit warehousing costs for specific product code $p$ from facility $i$ to customer $j$ [\euro/M cans].}
\mathgl{K_i_j}{Distance between facility $i$ and customer $j$ [km].}
\mathgl{Tq_i_p}{Truck capacity of supplier facility $i$ for product code $p$ [M cans].}
\mathgl{Z_i_j_p}{\ce{CO2} emissions for specific product code $p$ from facility $i$ to customer $j$ [kg \ce{CO2}/M cans].}
\mathgl{Zc}{\ce{CO2} costs [\euro/kg \ce{CO2}]. }
\mathgl{BFC}{Binary to indicate whether to include facility fixed costs or not.}
\mathgl{BTC}{Binary to indicate whether to include transportation costs or not.}
\mathgl{BEC}{Binary to indicate whether to include ex-works costs or not.}
\mathgl{BZC}{Binary to indicate whether to include CO2 emissions costs or not.}
\mathgl{BWC}{Binary to indicate whether to include warehouse costs or not.}

내 라텍스 결과

답변1

\newcommand{\mathgl}[2]{
    \newglossaryentry{#1}{name={#1},description={#2}}
    \begin{description}[style=multiline, labelwidth=1cm]
        \item[\gls{#1}]#2
    \end{description}
}

나는 이것이 당신의 문제를 해결했다고 생각하며, 3가지 질문 후에 당신은 마침내 원하는 것을 얻었습니다.

답변2

테이블 형식이나 긴 테이블(목록이 두 페이지 이상을 차지하는 경우 긴 테이블)을 사용하면 문제를 쉽게 해결할 수 있습니다. 표가 텍스트 여백을 초과하는 경우 9cm를 사용하여 표 너비를 조정할 수 있습니다(코드 참조).

\subsubsection{Parameters}
The following product flow related parameters are used:\\

    \begin{longtable}{lp{9cm}}
    $D_j_p_y$ & Demand of customer $j$ for specific product code $p$ in year $y$ [M cans]. \\
    $Q_i$ & Available capacity on facility $i$ [M cans].\\
    $V_i$ & Minimum volume required on facility $i$ [M cans].\\

\end{longtable}

관련 정보