누군가 이 오류를 수정하도록 도와주세요.

누군가 이 오류를 수정하도록 도와주세요.

내 코드 및 오류 이미지

내 코드 이미지를 첨부했습니다. 오류도 표시됩니다. 누군가 제가 그 오류를 바로잡도록 도와주세요. \usepackage{ragged2e}메인 .tex 파일인 [KTU M.Tech Thesis.tex]를 입력했습니다 . 여전히 이러한 오류가 발생합니다.

\documentclass[12pt,a4paper,justified]{KTUthesis}
\usepackage{KTUstyle}   \chaptertitle
\usepackage{pdftexcmds}
\usepackage[T1]{fontenc}
\usepackage{newtxmath,newtxtext}
\usepackage[cc]{titlepic}
\usepackage{ragged2e} 
\usepackage[pdftex]{graphicx}
\usepackage{caption}
\usepackage[utf8]{inputenc}
\usepackage{amsmath}
\alternate
\usepackage{etoolbox}
\usepackage{textcase}
\usepackage{rotating}
\usepackage{array}
\usepackage{booktabs}
\usepackage{verbatim}
\usepackage{natbib}
\bibliographystyle{KTUbib}
\newcommand*{\formatauthor}[1]{%
    \textbf{\arabic{NAT@ctr}.#1}%
}
\setlength{\bibhang}{0pt}
\usepackage{hyperref}
\hypersetup{colorlinks=true,linkcolor=black,anchorcolor=black,citecolor=black,filecolor=black,urlcolor=black,bookmarksnumbered=true,pdfview=FitB}
\usepackage{nomencl}
\usepackage{longtable}
\addtocontents{toc}{{CONTENTS}\hfill{Page No.}\par}
\addtocontents{lot}{{No.}\hfill{Title}~\hfill{Page No.}\par}
\addtocontents{lof}{{No.}\hfill{Title}~\hfill{Page No.}\par}
\pdfbookmark[1]{TABLE OF CONTENTS}{table}
\usepackage{scrextend}
\cleardoublepage \phantomsection
\chead{}
\cfoot{\thepage}
\DeclareGraphicsExtensions{.jpg,.pdf,.mps,.png,.eps,.tif}
\makeatletter
\renewcommand{\fnum@figure}{Fig. \thefigure}
\makeatother
\begin{document}
\pagenumbering{gobble}
\include{Preface/titlepage}
\include{Preface/declaration}
\include{Preface/certificate}
\pagenumbering{roman}
\include{Preface/acknowledgement}
\include{Preface/abstract}
\tableofcontents
\addtocontents{toc}{\def\protect\@chapapp{}} \cleardoublepage \phantomsection
\cleardoublepage \phantomsection \addcontentsline{toc}{chapter}{LIST OF FIGURES}
\listoffigures
\include{Extras/LISTOFABBREVIATIONS}
\include{Extras/NOTATIONS}
\addtocontents{toc}{\def\protect\@chapapp{CHAPTER\ }}
\makeatletter
\makeatother
\newpage
\pagenumbering{arabic}
\include{Body/chapter1}
\include{Reference/biblio}
\end{document}

답변1

\paragraph{}\justify명령이나 해당 환경 바로 뒤에 사용하면 안 됩니다 . 를 사용해야 하는 \paragraph{}경우 다음과 같은 구분 공간을 추가하여 작동할 수 있습니다.

\justify~
\paragraph{} Since it was easier to control ...

게다가, \justifyLaTeX의 기본값이므로 왼쪽 정렬: flushleft, \raggedright, 오른쪽 정렬: flushright, \raggedleft또는 중앙: center, \centering, 환경의 첫 번째 단어와 명령의 두 번째 단어만 필요할 것으로 예상됩니다. 이러한 작업을 수행하지 않으면 \justify.

편집하다:

두 단락 사이의 넓은 공간이 마음에 들지 않으면 서문에 추가 \let\indent\parindent하고 텍스트를 다음과 같이 수정해 보세요.

\justify\hspace{\indent}%
Since it was easier to control ...

이게 네가 원하는 거야?

관련 정보