수동 줄바꿈 없이 인라인 수학을 다음 줄로 푸시(정의 유지)

수동 줄바꿈 없이 인라인 수학을 다음 줄로 푸시(정의 유지)

나의 정리를 보면, 정리의 첫 번째 줄에 수학식의 배치가 여백을 초과하고 있는 것을 볼 수 있습니다. 나는 표현을 깨뜨리고 싶지 않으며, 그 앞에 줄 바꿈을 넣으면 정당화가 엉망이 됩니다. 단락의 시작과 끝을 제외하고 모든 텍스트를 왼쪽과 오른쪽으로 정렬하고 싶습니다. 어떻게 해야 하나요? 감사해요?

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

\documentclass[letterpaper,twoside,notitlepage]{article}
\usepackage{bm}    
\usepackage{lipsum}    
\usepackage{amssymb,amsmath} 
\usepackage[amsmath, thmmarks]{ntheorem}
\usepackage[left=1.5in,right=1.5in,top=0.75in,bottom=.75in,centering,includeheadfoot]{geometry}

\newtheorem{thm}{Theorem}[subsection] 
\newtheorem{mainthm}[thm]{Main Theorem} 

\begin{document}
\large

\lipsum[1][1-3]

\begin{mainthm}\label{thm:VecSpa}
    A maximal set of independent tangency classes $\{[\gamma'(\lambda_0)]_{(\sigma)}\}$ is a basis for a vector space $\mathcal{V}$, and a tangency class of curve derivatives $[\gamma'(\lambda_0)]$ is a vector $\bm V\in\mathcal{V}$.
\end{mainthm}
        
\lipsum[1][4-6]
\end{document}

답변1

\\\newline줄 바꿈을 강제로 실행하여 줄을 짧게 남겨 둡니다 . \linebreak정당성을 잃지 않고 휴식을 강요하여 다음을 사용할 수 있습니다.

classes\linebreak $....

답변2

\sloppy바로 뒤에 명령어를 삽입할 수 있습니다 \begin{mainthm}\label{thm:VecSpa}. 다음 스크린샷에서 볼 수 있듯이 결과적으로 단어 간 간격이 다소 엉성해질 수 있지만 양쪽 정렬은 유지될 수 있습니다.

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

\documentclass[letterpaper,twoside,notitlepage]{article}
\usepackage{bm}    
\usepackage{lipsum}    
\usepackage{amssymb,amsmath} 
\usepackage[amsmath, thmmarks]{ntheorem}
\usepackage[hmargin=1.5in,vmargin=0.75in,
            centering,includeheadfoot]{geometry}

\newtheorem{thm}{Theorem}[subsection] 
\newtheorem{mainthm}[thm]{Main Theorem} 

\begin{document}
\large

\lipsum[1][1-3]

\begin{mainthm}\label{thm:VecSpa}
\sloppy % <-- new
A maximal set of independent tangency classes 
$\{[\gamma'(\lambda_0)]_{(\sigma)}\}$ is a basis 
for a vector space $\mathcal{V}$, and a tangency 
class of curve derivatives $[\gamma'(\lambda_0)]$ 
is a vector $\bm{V}\in\mathcal{V}$.
\end{mainthm}
        
\lipsum[1][4-6]

\end{document}

관련 정보