%EA%B0%80%20%223d%22%EC%97%90%EC%84%9C%20%223D%22%EB%A1%9C%20%EB%AC%B8%EC%9E%A5%EC%9D%84%20%EB%B0%94%EA%BE%B8%EB%8A%94%20%EA%B2%83%EC%9D%84%20%EB%B0%A9%EC%A7%80%ED%95%98%EB%8A%94%20%EB%B0%A9%EB%B2%95%EC%9D%80%20%EB%AC%B4%EC%97%87%EC%9E%85%EB%8B%88%EA%B9%8C%3F.png)
\Gls
문장 케이스 논증인 는 "3d" 문장 케이스가 "3D"라고 믿는 것 같습니다 .
\gls{3d}
문장 시작 부분에 사용하면 첫 번째 언급인 경우 출력이 잘못됩니다("Three" 대신 "3"). 을 사용하는 경우 첫 번째 언급( 대신 ) \Gls{3d}
이 아니면 출력이 잘못됩니다 .\textsc{3D}
\textsc{3d}
첫 번째 언급이 어디에 있는지 수동으로 확인하지 않고 이 문제를 어떻게 해결할 수 있나요?
\documentclass{memoir}
\usepackage{glossaries}
\newacronym{3d}{\textsc{3d}}{three-dimensional}
\newacronym{jae}{\textsc{jae}}{just another example}
\begin{document}
\Gls{3d} in sentence-case.
\Gls{3d} in sentence-case.
\gls{3d} in normal case.
\Gls{jae} in sentence-case.
\Gls{jae} in sentence-case.
\gls{jae} in normal case.
\end{document}