引用のインデントの問題

引用のインデントの問題

見積もりをしたいのですが、問題が 2 つあります。

  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} 

コードの出力

関連情報