Documento actual

Documento actual

Con el tiempo, agregué una serie de comandos al comienzo de mi documento y me estoy perdiendo y ahora no puedo modificar simplemente el espaciado vertical y el margen.

Documento actual

Aquí están mis paquetes y cosas.

% ---------------------------
DOCUMENTCLASS
% ---------------------------

\documentclass[letterpaper,12pt]{scrartcl}

% --------------------------
BIBLIOGRAPHY
% ---------------------------
\usepackage[round,mcite]{natbib} 
\bibliographystyle{plainnat}

% --------------------------
INPUTSTRUCTURE
% ---------------------------
\input{structure.tex}

% --------------------------
OTHER
% ---------------------------
\usepackage{pifont}% http://ctan.org/pkg/pifont
\usepackage{hhline}
\usepackage{multirow}
\newcommand{\xmark}{\ding{55}}
\hypersetup{citecolor=brown}
\hyphenation{Fortran hy-phen-ation}

y aquí está mi estructura.tex

\usepackage[
nochapters, % Turn off chapters since this is an article        
beramono, % Use the Bera Mono font for monospaced text (\texttt)
eulermath,% Use the Euler font for mathematics
pdfspacing, % Makes use of pdftex’ letter spacing capabilities via the microtype package
dottedtoc % Dotted lines leading to the page numbers in the table of contents
]{classicthesis} % The layout is based on the Classic Thesis style

\usepackage{arsclassica} % Modifies the Classic Thesis package

\usepackage[T1]{fontenc} % Use 8-bit encoding that has 256 glyphs

%\usepackage[utf8]{inputenc} % Required for including letters with accents

\usepackage{graphicx} % Required for including images
\graphicspath{{Figures/}} % Set the default folder for images

\usepackage{enumitem} % Required for manipulating the whitespace between and within lists

\usepackage{lipsum} % Used for inserting dummy 'Lorem ipsum' text into the template

\usepackage{subfig} % Required for creating figures with multiple parts (subfigures)

\usepackage{amsmath,amssymb,amsthm} % For including math equations, theorems, symbols, etc

\usepackage{varioref} % More descriptive referencing

%----------------------------------------------------------------------------------------
%   THEOREM STYLES
%---------------------------------------------------------------------------------------

\theoremstyle{definition} % Define theorem styles here based on the definition style (used for definitions and examples)
\newtheorem{definition}{Definition}

\theoremstyle{plain} % Define theorem styles here based on the plain style (used for theorems, lemmas, propositions)
\newtheorem{theorem}{Theorem}

\theoremstyle{remark} % Define theorem styles here based on the remark style (used for remarks and notes)

%----------------------------------------------------------------------------------------
%   HYPERLINKS
%---------------------------------------------------------------------------------------

\hypersetup{
%draft, % Uncomment to remove all links (useful for printing in black and white)
colorlinks=true, breaklinks=true, bookmarks=true,bookmarksnumbered,
urlcolor=webbrown, linkcolor=RoyalBlue, citecolor=webgreen, % Link colors
pdftitle={}, % PDF title
pdfauthor={\textcopyright}, % PDF Author
pdfsubject={}, % PDF Subject
pdfkeywords={}, % PDF Keywords
pdfcreator={pdfLaTeX}, % PDF Creator
pdfproducer={LaTeX with hyperref and ClassicThesis} % PDF producer
}

Pregunta

¿Cómo puedo modificar el espaciado vertical (entre líneas) y los márgenes?

lo que intenté

Lo siguiente no parece tener ningún impacto en el documento.

\usepackage[body={4.8in,7.5in},
 top=1.2in, left=1.8in]{geometry}

Igual por

\usepackage[a4paper, total={6in, 8in}]{geometry}

Intenté cambiar de scrartcla articlepero no logré mucho.

También probé cosas como

\usepackage[utf8]{inputenc}
\usepackage[english]{babel}

\setlength{\parindent}{4em}
\setlength{\parskip}{1em}
\renewcommand{\baselinestretch}{1.5}

pero a menudo terminaba recibiendo un mensaje de error aunque no entendía por qué ni cuándo.

Respuesta1

En primer lugar, tienes:

% ---------------------------
DOCUMENTCLASS
% ---------------------------

A esto le falta un carácter de comentario antes, DOCUMENTCLASSlo que resultará en un error (aunque espero que sea solo un error al copiar y pegar).

Ahora con respecto a modificar los márgenes, como habrás descubierto, es más fácil usar elgeometrypaquete. Tenga en cuenta que si otro paquete está cambiando el diseño de la página, es posible que desee utilizar el \geometrycomando justo antes \begin{document}:

\geometry{vmargin=2cm,hmargin=3cm}
\begin{document}

Con respecto al espacio entre líneas, Chris ya dio una respuesta en su comentario usando, \linespread{1.1}por ejemplo. También puedes echar un vistazo a lasetspacepaquete que proporciona \singlespacingy \onehalfspacing( doublespacingaunque normalmente se usa para crear copias de revisión).

Finalmente, deberías echar un vistazo al archivo de registro, porque estás recibiendo muchas advertencias. Por ejemplo, las clases KOMA (como scrartcl) proporcionan muchas características que se superponen con otros paquetes (cfr también mencionó eso en su comentario en ese momento). La superposición de estos paquetes puede provocar que las funciones se anulen parcialmente y que ninguno de los paquetes funcione correctamente.

Finalmente, normalmente deberías preferir elsubcaptionpaquete sobre elsubfigpaquete que estás utilizando.

información relacionada