인용 들여쓰기 문제

인용 들여쓰기 문제

견적을 내고 싶었는데 이제 두 가지 문제가 생겼습니다.

  1. 나는 처음에 들여쓰기를 원하지 않는다
  2. LaTeX가 내 를 무시하는 것 같지만 ~이 줄에 들여쓰기를 추가하고 싶습니다.

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

\documentclass[11pt]{article}

\begin{document}

{
``Five years ago I would certainly have said that we don't do full-text machine translation, it's too complicated for us", recalls Frahling. "Google had developed its old system over ten years with a lot of people and messing with it just didn't make sense." \\
~~~~~~~~ -- Gereon Frahling, founder of DeepL 
}

\end{document} 

답변1

환경 을 이용 quote하고, \hspace*{}간격을 두는 일을 합니다. 어떤 이유로 환경의 여백 변경을 원하지 않는 경우 대신 인용문 시작 부분에 quote추가할 수 있지만 \noindent나머지 텍스트와 구분하기 위해 수동 수직 공간도 필요합니다. 그러나 따옴표는 일반적으로 따옴표임을 표시하기 위해 더 좁은 여백으로 설정됩니다.

개인적으로 나는 여기서도 사용하지 않고 \\단순히 빈 줄을 사용하여 인용문과 이름 줄 사이에 더 좋은 세로 간격을 제공합니다.

\documentclass[11pt]{article}

\begin{document}
This is some text with a regular paragraph indent.
\begin{quote}
``Five years ago I would certainly have said that we don't do full-text machine translation, it's too complicated for us", recalls Frahling. "Google had developed its old system over ten years with a lot of people and messing with it just didn't make sense." \\
\hspace*{1cm} -- Gereon Frahling, founder of DeepL 
\end{quote}
This is some more text.  If this should start a new paragraph, precede it with a blank line in the source.
\end{document} 

코드 출력

관련 정보