현재 문서

현재 문서

시간이 지남에 따라 문서 시작 부분에 여러 명령을 추가했는데 점점 길을 잃어서 이제 단순히 수직 간격과 여백을 수정하는 데 실패했습니다.

현재 문서

여기 내 패키지와 물건이 있습니다

% ---------------------------
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}

그리고 여기 내 구조가 있습니다.

\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
}

질문

세로 간격(줄 사이 간격)과 여백을 어떻게 수정하나요?

내가 시도한 것

다음 내용은 문서에 아무런 영향을 미치지 않는 것 같습니다.

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

동일

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

scrartcl에서 로 전환하려고 시도했지만 article많은 것을 달성하지 못했습니다.

나는 또한 다음과 같은 것을 시도했습니다.

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

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

하지만 이유와 시기를 이해하지 못했지만 종종 오류 메시지를 받게 되었습니다.

답변1

첫째, 다음과 같습니다.

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

이전에 오류가 발생하는 주석 문자가 누락되었습니다 DOCUMENTCLASS(복사/붙여넣기 오류일 뿐이길 바라지만).

이제 여백 수정과 관련하여 알아낸 것처럼 다음을 사용하는 것이 가장 쉽습니다.geometry패키지. 다른 패키지가 페이지 레이아웃을 변경하는 경우 \geometry바로 앞에 명령을 사용할 수 있습니다 \begin{document}.

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

줄 사이의 간격과 관련하여 Chris는 이미 \linespread{1.1}예를 들어 자신의 의견에 . 당신은 또한 볼 수 있습니다setspace\singlespacing, \onehalfspacingdoublespacing(일반적으로 교정 사본을 만드는 데 사용됨)을 제공하는 패키지입니다 .

마지막으로 많은 경고가 표시되므로 로그 파일을 살펴봐야 합니다. 예를 들어, KOMA 클래스(예: scrartcl)는 다른 패키지와 겹치는 많은 기능을 제공합니다(cfr도 당시 그의 의견에서 언급했습니다). 이러한 패키지가 겹치면 기능이 부분적으로 재정의되고 두 패키지 모두 제대로 작동하지 않을 수 있습니다.

마지막으로 일반적으로 다음을 선호해야 합니다.subcaption위에 패키지subfig사용하고 있는 패키지입니다.

관련 정보