コードの画像を添付しました。エラーも表示されています。どなたか、これらのエラーを修正するのを手伝ってください。\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 ...
また、 は\justify
LaTeX のデフォルトなので、必要なのは、環境を表す最初の単語とコマンドを表す 2 番目の単語である、 Left justified: flushleft
、\raggedright
、 Right justified: flushright
、\raggedleft
、または Centered: center
、というテキストだけだと\centering
思います。 これらのいずれも行わない場合は、 に変換されます\justify
。
編集:
2 つの段落の間に大きなスペースを置くのが気に入らない場合は、序文に追加して\let\indent\parindent
テキストを次のように変更してみてください。
\justify\hspace{\indent}%
Since it was easier to control ...
これは、あなたの望むことですか?