\lstinputlisting 뒤 줄 바꿈

\lstinputlisting 뒤 줄 바꿈

a 뒤에 줄바꿈을 삽입할 수 있는 방법이 있나요 \lstinputlisting? 현재 lstinputlisting의 코드를 진행하는 텍스트는 바로 뒤에 있지만 줄 바꿈을 선호하지만 넣을 수 없는 것 같습니다.

다음과 같이 보입니다.

이 코드를 사용하면:

\lstinputlisting{newtonsMethod.m}

The derivative function implements the central difference method. The simple implementation is shown below.

\\. 뒤에 넣으면 컴파일되지 않습니다 \lstinputlisting.

사이트에 너무 익숙하지 않아서 내 질문에 답할 수 없지만 알아낼 수 있었습니다.

\이렇게 lstinputlisting 뒤에 넣어서 내가 원하는 것을 얻었습니다 .

\lstinputlisting{newtonsMethod.m}
The derivative function implements the central difference method. The simple implementation is shown below.

답변1

\lstinputlisting자동으로 단락을 끝에서 끝냅니다. 이 아래에서 더 큰 건너뛰기를 원하는 것 같습니다. 이 작업은 여러 가지 방법으로 수행할 수 있습니다.

  1. 수직 건너뛰기 삽입( \smallskip, \medskip또는 등 \bigskip):

    \lstinputlisting{newtonMethod.m}
    \bigskip
    The derivative function ...
    
  2. \vspace{<len>}TeX 길이가 어디에 <len>있는지를 사용하여 수직 공백을 삽입합니다 .

    \lstinputlisting{newtonMethod.m}
    \vspace{\baselineskip}
    The derivative function ...
    
  3. 키 사용 belowskip(기본값은 로 설정됨 \medskipamount):

    \lstinputlisting[belowskip=40pt]{newtonMethod.m}
    The derivarive function ...
    

관련 정보