
내 bibtex는 다음과 같습니다
@Misc{CordaWhite,
title = {{Corda Whitepaper}},
howpublished = {\url{https://docs.corda.net/_static/corda-introductory-whitepaper.pdf}},
note = {Accessed: 2017-08-28},
}
가져오기는 다음과 같습니다.
\begin{document}
....
\bibliographystyle{plain}
bibliography{lit/lit}
...
\end{document}
과도한 공백을 어떻게 제거할 수 있나요?
답변1
질문을 하실 때는 항상 MWE를 추가해 주세요. 종종 그들은 자명하다.모든 측면 아래 MWE의 경우가 그러하길 바랍니다.
\documentclass{article}
\usepackage[colorlinks]{hyperref}
\usepackage[english]{babel}
\usepackage{lipsum}
\begin{document}
\parindent0pt
\cite{CordaWhite} \verb|\url| \verb|\href|\par
\cite{CordaWhite1} \verb|\href|\par
\cite{CordaWhite2} \verb|\href| allowing extra hyphens\par
\cite{CordaWhite3} \verb|\href| allowing line breaks without hyphens\par
\bibliographystyle{plain}
\bibliography{lit}
\lipsum[2] % to show the right margin
\end{document}