Utilizo este código y hay un error cuando siempre hago referencia a una página web que contiene _ y dice que me falta $ insertado. ¿Cómo podría cancelar este problema?
\begin{thebibliography}{9}
\bibitem{Introduction to CFT}
Blumenhagen, R., Plauschinn, E., Introduction to Conformal Field Theory: With Applications
to String Theory, Lect. Notes Phys. 779 (Springer, Berlin Heidelberg 2009), DOI 10.1007
978-3-642-00450-6
\\\texttt{http://stringworld.ru/files/Blumenhagen_R._Plauschinn_E._Introduction_to_conformal_field_theory_with_applications_to_string_theory.pdf}`
\end{thebibliography}
Respuesta1
No deberías encerrar la URL en una \texttt
directiva. En su lugar, asegúrese de cargar elURLpaquete, posiblemente con la opción hyphens
, y luego escriba \url{<long url string here>}
.
\documentclass{article}
\usepackage{url}
\begin{document}
\begin{thebibliography}{9}
\bibitem{Introduction to CFT}
Blumenhagen, R., Plauschinn, E., Introduction to Conformal Field Theory:
With Applications to String Theory, Lect.\ Notes Phys.\ 779 (Springer,
Berlin and Heidelberg 2009), DOI 10.1007, ISBN 978-3-642-00450-6\linebreak
\url{http://stringworld.ru/files/Blumenhagen_R._Plauschinn_E._Introduction_to_conformal_field_theory_with_applications_to_string_theory.pdf}
\end{thebibliography}
\end{document}