나는 프로젝트 개발을 위한 '책'을 쓰고 있는데 해당 장의 시작 부분에 관련 변수를 넣고 싶습니다. 그래서 \description 목록을 다음과 같이 수정하려고 합니다. 이것은 잘 작동합니다:
\begin{description}[labelwidth=1cm]
\itemsep-2pt
\item[KE]{Kinetic Energy}
\item[$C_p$]{Heat Capacity}
\end{description}
labelwidth
하지만 어디에서나 사용하고 있으므로 추가해야 할 항목은 , 또는 itemsep
값이 아닌 다음과 같은 매크로로 만들고 싶습니다.
\begin{myNomenclature}
\item[KE]{Kinetic Energy}
\item[$C_p$]{Heat Capacity}
\end{myNomenclature}
나는 수학적 변수가 아닌 변수를 굵게 표시하기 때문에 \description을 사용하고 있습니다.
시도해 볼 수 있는 제안을 보내주셔서 감사합니다.
답변1
\documentclass[10pt,a4paper]{article}
\usepackage[latin1]{inputenc}
\usepackage{enumitem}
\usepackage{blindtext}
\newenvironment{myNomenclature}{
\begin{description}[labelwidth=1cm]
\setlength{\itemsep}{-2pt}
}{
\end{description}
}
\begin{document}
\blindtext
\begin{myNomenclature}
\item[KE]{Kinetic Energy}
\item[$C_p$]{Heat Capacity}
\end{myNomenclature}
\blindtext
\end{document}
이와 같이?