목록의 특정 지점에서만 페이지 나누기

목록의 특정 지점에서만 페이지 나누기

파일의 소스 코드를 포함할 때(자동으로 최신 상태로 유지하기 위해) 소스 코드를 편집하여 형식에 영향을 줄 수 있는 방법은 없습니다. 문서의 단락이 변경되면 목록을 읽기 어려워질 수 있습니다.

이는 소스 코드가 종종 "문단"(예: 아래 함수 서명 및 해당 설명)으로 구성되어 있기 때문에 이를 깨뜨리지 않기를 원하기 때문입니다. 예를 들어 빈 줄에서만 페이지 나누기를 수행하도록 lstlisting을 강제하는 방법이 있습니까? 다음은 다음과 같은 간단한 예입니다 lstinputlisting.

\RequirePackage{filecontents}
\begin{filecontents*}{stack.mli}
(***********************************************************************)
(*                                                                     *)
(*                                 OCaml                               *)
(*                                                                     *)
(*             Xavier Leroy, projet Cristal, INRIA Rocquencourt        *)
(*                                                                     *)
(*   Copyright 1996 Institut National de Recherche en Informatique et  *)
(*     en Automatique.                                                 *)
(*                                                                     *)
(*   All rights reserved.  This file is distributed under the terms of *)
(*   the GNU Lesser General Public License version 2.1, with the       *)
(*   special exception on linking described in the file LICENSE.       *)
(*                                                                     *)
(***********************************************************************)

(** Last-in first-out stacks.
   This module implements stacks (LIFOs), with in-place modification.
*)

type 'a t
(** The type of stacks containing elements of type ['a]. *)

exception Empty
(** Raised when {!Stack.pop} or {!Stack.top} is applied to an empty stack. *)


val create : unit -> 'a t
(** Return a new stack, initially empty. *)

val push : 'a -> 'a t -> unit
(** [push x s] adds the element [x] at the top of stack [s]. *)

val pop : 'a t -> 'a
(** [pop s] removes and returns the topmost element in stack [s],
   or raises {!Empty} if the stack is empty. *)

val top : 'a t -> 'a
(** [top s] returns the topmost element in stack [s],
   or raises {!Empty} if the stack is empty. *)

val clear : 'a t -> unit
(** Discard all elements from a stack. *)

val copy : 'a t -> 'a t
(** Return a copy of the given stack. *)

val is_empty : 'a t -> bool
(** Return [true] if the given stack is empty, [false] otherwise. *)

val length : 'a t -> int
(** Return the number of elements in a stack. Time complexity O(1) *)

val iter : ('a -> unit) -> 'a t -> unit
(** [iter f s] applies [f] in turn to all elements of [s],
   from the element at the top of the stack to the element at the
   bottom of the stack. The stack itself is unchanged. *)

val fold : ('b -> 'a -> 'b) -> 'b -> 'a t -> 'b
(** [fold f accu s] is [(f (... (f (f accu x1) x2) ...) xn)]
    where [x1] is the top of the stack, [x2] the second element,
    and [xn] the bottom element. The stack is unchanged.
    @since 4.03 *)
\end{filecontents*}
\documentclass{article}
\usepackage{listings}
\begin{document}
\section{Stack}
\lstset{
  basicstyle={\ttfamily\lst@ifdisplaystyle\footnotesize\fi},
  language=[Objective]Caml
}
\lstinputlisting{stack.mli}
\end{document}

위의 예에서는 copy와 해당 주석 사이에 공백이 있습니다. 하지만 한 줄 더 일찍 읽는 것이 훨씬 더 나을 것입니다.

답변1

에 따르면https://tex.stackexchange.com/a/73305/89417목록에서 페이지 나누기를 방지하는 솔루션은 minipage. 따라서 모든 코드 단락을 별도의 미니페이지에 배치하면 단락 사이가 중단됩니다. 다음과 같은 스크립트 언어를 사용하여 이를 쉽게 자동화할 수 있습니다 perl.

print "\\noindent\\begin{minipage}{\\linewidth}\\begin{lstlisting}\n";
while(<>){
    print $_ eq "\n" ? "\\end{lstlisting}\\end{minipage}\n\n\\noindent\\begin{minipage}{\\linewidth}\\begin{lstlisting}\n" : $_;
}
print "\\end{lstlisting}\\end{minipage}\n";

이 스크립트는 빈 줄을 미니페이지의 끝과 시작으로 변환하고 첫 번째와 마지막 단락과 일치하도록 추가 시작과 끝을 넣습니다.

그런 다음 LaTeX에서 다음 스크립트를 호출할 수 있습니다(Linux에서는 로 실행 --shell-escape).

\documentclass{article}
\usepackage{listings}
\usepackage[margin=1.5in]{geometry} % make OCaml comment block fit on a line
\begin{document}
\section{Stack}
\lstset{
  basicstyle={\ttfamily\lst@ifdisplaystyle\footnotesize\fi},
  language=[Objective]Caml
}
\input{|"perl format_listing.pl < stack.mli"}
\end{document}

결과:

여기에 이미지 설명을 입력하세요

답변2

페이지 나누기가 하나만 있는 경우 쉬운 방법 중 하나는 를 사용하는 것입니다 \enlargethispage.

그러면 val copy줄이 다음 페이지로 이동됩니다.

\documentclass{article}
\usepackage{listings}
\begin{document}
\section{Stack}
\lstset{
  basicstyle={\ttfamily\lst@ifdisplaystyle\footnotesize\fi},
  language=[Objective]Caml
}
\enlargethispage{-\baselineskip}
\lstinputlisting{stack.mli}
\end{document}

여기에 이미지 설명을 입력하세요

관련 정보