Quería hacer una cotización y ahora hay dos problemas.
- No quiero el guión al principio.
- LaTeX parece ignorar mi
~
, pero quiero que esta línea tenga una sangría
\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}
Respuesta1
Utilice el quote
entorno y \hspace*{}
haga el espaciado. Si por alguna razón no desea cambiar los márgenes del quote
entorno, puede agregarlos \noindent
al principio de la cita, pero también necesitará algo de espacio vertical manual para diferenciarlo del resto del texto. Pero las citas normalmente se establecen con márgenes más estrechos para mostrar que son citas.
Personalmente, tampoco usaría \\
aquí, sino simplemente una línea en blanco, lo que le dará un espacio vertical más agradable entre la cita y la línea del nombre.
\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}