
envlab
주소 라벨을 생성하고 인쇄하는 환경을 사용하고 있습니다 . 불행하게도 제가 편지를 보내는 데는 긴 이름이 몇 개 있는데, 그 이름 모두가 라벨에 들어갈 수는 없습니다. 이를 보완하기 위해 글꼴 크기를 줄이고 싶습니다. 이 작업을 수행하는 방법을 아는 사람이 있나요? 내가 아는 표준 트릭( \tiny
문서의 시작 부분에 넣기, 8pt
옵션에 추가하기 \documentclass{letter}
)이 작동하지 않는 것 같습니다.
답변1
이 경우 와 같은 크기 변경을 사용하려면 \small
그룹 내에 포함되어야 합니다. 따라서 아래의 두 번째 예에서는 \small Given Name Surname
크기가 변경되지 않지만 세 번째 예에서는 크기가 {\small Given Name Surname}
변경됩니다.
\documentclass{letter}
\usepackage{envlab}
\SetLabel{63mm}{46mm}{10mm}{8mm}{3mm}{3}{6}
\begin{document}
\startlabels
\mlabel{}{%
Given Name Surname \\
Address line \\
postalcode \\
Country
}
\mlabel{}{% This \small has no effect
\small Given Name Surname \\
Address line \\
postalcode \\
Country
}
\mlabel{}{% This \small has as effect
{\small Given Name Surname} \\
Address line \\
postalcode \\
Country
}
\end{document}