Com o tempo, adicionei vários comandos no início do meu documento e estou me perdendo e agora não consigo simplesmente modificar o espaçamento vertical e a margem.
Documento Atual
Aqui estão meus pacotes e coisas
% ---------------------------
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}
e aqui está minha estrutura.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
}
Pergunta
Como posso modificar o espaçamento vertical (espaçamento entre linhas) e as margens?
O que eu tentei
O seguinte não parece ter qualquer impacto no documento
\usepackage[body={4.8in,7.5in},
top=1.2in, left=1.8in]{geometry}
O mesmo para
\usepackage[a4paper, total={6in, 8in}]{geometry}
Tentei mudar de scrartcl
para article
, mas não consegui muito.
Eu também tentei coisas como
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\setlength{\parindent}{4em}
\setlength{\parskip}{1em}
\renewcommand{\baselinestretch}{1.5}
mas muitas vezes acabei recebendo uma mensagem de erro, embora não conseguisse entender por que e quando.
Responder1
Em primeiro lugar, você tem:
% ---------------------------
DOCUMENTCLASS
% ---------------------------
Falta um caractere de comentário antes DOCUMENTCLASS
que resultará em um erro (embora eu espere que seja apenas um erro ao copiar/colar).
Agora em relação à modificação das margens, como você descobriu, é mais fácil usar ogeometry
pacote. Observe que se outro pacote estiver alterando o layout da página, você pode querer usar o \geometry
comando antes \begin{document}
:
\geometry{vmargin=2cm,hmargin=3cm}
\begin{document}
Quanto ao espaçamento entre linhas, Chris já respondeu em seu comentário usando \linespread{1.1}
por exemplo . Você também pode dar uma olhada nosetspace
pacote que fornece \singlespacing
, \onehalfspacing
e doublespacing
(embora normalmente seja usado para criar cópias de revisão).
Por fim, você deve dar uma olhada no arquivo de log, pois está recebendo muitos avisos. Por exemplo, as classes KOMA (como scrartcl
) fornecem muitos recursos que se sobrepõem a outros pacotes (cfr também mencionou isso em seu comentário). A sobreposição desses pacotes pode resultar na substituição parcial de recursos e nenhum dos pacotes funcionar corretamente.
Finalmente, você normalmente deve preferir osubcaption
pacote sobre osubfig
pacote que você está usando.