Adjunto la imagen de mi código. También se muestran errores. alguien por favor ayúdeme a corregir esos errores. Ingresé \usepackage{ragged2e}
en el archivo .tex principal [KTU M.Tech Thesis.tex]. Aún así estos errores ocurren.
\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}
Respuesta1
\paragraph{}
no debe usarse directamente después de un \justify
comando o su entorno, si debe usar un \paragraph{}
, puede agregar un espacio de separación como este para que funcione:
\justify~
\paragraph{} Since it was easier to control ...
Además, \justify
es el valor predeterminado en LaTeX, por lo que espero que solo necesites el texto Justificado a la izquierda: flushleft
, \raggedright
, Justificado a la derecha: flushright
, \raggedleft
, o Centrado: center
, \centering
, las primeras palabras para entornos y las segundas para comandos. No hacer nada de esto se traduce en \justify
.
Editar:
Si no le gusta el gran espacio entre dos párrafos, intente agregarlo al preámbulo \let\indent\parindent
y modifique el texto de la siguiente manera:
\justify\hspace{\indent}%
Since it was easier to control ...
¿Es esto lo que quieres?