Johannes_B wrote:Please show a minimal working example.
Thanks for replying! :)
This is my main LaTex file:
Code: Select all
\documentclass[12pt,doc]{apa6}
\usepackage{parskip}
\usepackage{graphicx}
\usepackage{lmodern}
\usepackage[T1]{fontenc}
\usepackage[spanish,activeacute,es-lcroman,es-tabla]{babel}
\usepackage{mathtools}
\usepackage[latin1]{inputenc}
\usepackage{dcolumn}
\usepackage{float}
\usepackage{amssymb}
\usepackage{amsmath}
\usepackage{epstopdf}
\usepackage{subfig}
\usepackage{color}
\usepackage{pifont}
\usepackage{apacite}
\usepackage{authblk}
\usepackage{rotating}
\usepackage{verbatim}
\usepackage{moreverb}
\spanishdecimal{.}
\title{}
\author{}
\date{}
\bibliographystyle{apacite}
\begin{document}
\input{Titulo.tex}
\pagenumbering{roman}
\clearpage\null\newpage
\input{Blanco.tex}
\clearpage\null\newpage<
\input{Agradecimientos.tex}
\clearpage\null\newpage
\input{Resumen.tex}
\clearpage\null\newpage
%Index input
\tableofcontents
\clearpage\null\newpage
%List of figures input
\listoffigures
\clearpage\null\newpage
%List of tables input
\listoftables
\clearpage\null\newpage
%Text files
\input{Introduccion.tex}
\input{Justificacion.tex}
\clearpage\null\newpage<
\input{Bases_teoricas.tex}
\clearpage\null\newpage
\input{Metodologia.tex}
\clearpage\null\newpage
\bibliography{Bibliografia}
\end{document}
Got a lot of errors! But the output file has correctly printed all my floats, functions and equations, and also it has the page numbering in the top right corner (as desired), but it does not use half inch indentation and paragraph left justification unless
\usepackage[document]{ragged2e}
and
\setlength\RaggedRightParindent{0.5in}
are used.
When I click on one of the 61 undefined control sequence errors, it opens one of the files where
\section, \chapter, \chapter*, \subsection
commands are used.
As it's shown in the attached files, the sections, subsection and chapters labels are not used as it's desired, it does not print chapter, section and subsection number (i.e
2. chaptertwo 2.1 firstsectionofchaptertwo 2.1.1 firstsubsectionofchaptertwo), it just print symbols like * and <, and chapters titles have normal sizes!.
Thanks for reading! :)... and sorry if I'm being annoying :(