나머지 줄을 굵게 표시

나머지 줄을 굵게 표시

참조 줄 바꿈까지 색상 지정(Luatex 제외)

줄의 나머지 부분(어느 지점에서든 끝까지)을 색칠하는 솔루션이 제공되는 경우 텍스트를 색칠하는 대신 굵은 글씨로 표시하려고 했지만 소용이 없었습니다.

내 TeX 지식이 충분히 심오하지 않기 때문에 질문합니다. 어떤 TeX 전문가가 나에게 이에 대한 해결책을 줄 수 있습니까?

감사합니다 잭

답변1

줄바꿈 지점을 선택하기 전에 글꼴을 선택하고 텍스트를 설정해야 하므로 자동 줄바꿈 시 글꼴을 변경할 수 없습니다.

그러나 글꼴 변경 여부에 관계없이 텍스트를 두 번 설정한 다음 원하는 단락을 다시 구성할 수 있습니다.

여기에 이미지 설명을 입력하세요

\documentclass{article}

\begin{document}

\setbox0\vbox{{%
    Medium text here
\fontseries{b}\selectfont% b not bx so line breaking (hopefully) not affected
bold starts here and goes on \ldots
the first line of the paragraph has several lines and may have\[math\]
and other stuff, the line break may happen at a hyphenation point.
}}



\setbox2\vbox{{%
    Medium text here
bold starts here and goes on \ldots
the first line of the paragraph has several lines and may have\[math\]
and other stuff, the line break may happen at a hyphenation point.
}}


{\vbadness=10000
\setbox4=\vsplit0 to \ht\strutbox
\setbox6=\vsplit2 to \ht\strutbox

\box4
\nointerlineskip
\box2
}

\end{document}

관련 정보