참고문헌과 동일한 미주 들여쓰기

참고문헌과 동일한 미주 들여쓰기

나는 내 책의 끝부분과 참고문헌에 대한 endnote각주를 미주로 사용하고 있습니다. natbib따라서 두 목록 모두 동일한 들여쓰기를 갖기를 원합니다.

미주의 들여쓰기를 다음과 같이 설정할 수 있다는 것을 알고 있습니다.

\def\enoteformat{\rightskip=0pt \leftskip=0pt \parindent=1.8em
\leavevmode\llap{\makeenmark}}

하지만 에서 사용되는 설정을 가져오는 방법이 궁금합니다 natbib.

MWE:

% endnotes
\usepackage{endnotes}
\let\footnote=\endnote
% bibliography
\usepackage[super, longnamesfirst, sort&compress]{natbib}
\setlength{\bibsep}{0.0pt}

\begin{document}

\endnote{testendnote} and \citep{testcite}

% the endnotes
\theendnotes
% the bibliography
\bibliographystyle{ieeetr}
\begin{thebibliography}{99} 
\bibitem{testcite} Bloggs, J., The Journal of Stuff, 2012 
\end{thebibliography} 

\end{document}

답변1

귀하의 의견을 읽으면 다음과 같이 원하는 것 같습니다.

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

다음을 통해 얻을 수 있습니다:

\def\enoteformat{\rightskip=0pt \leftskip=21pt \parindent=-11pt
\leavevmode\llap{\makeenmark}\hspace*{11pt}}

전체 코드:

\documentclass{article}

% endnotes
\usepackage{endnotes}
\let\footnote=\endnote
% bibliography
\usepackage[super, longnamesfirst, sort&compress]{natbib}
\setlength{\bibsep}{0.0pt}

\def\enoteformat{\rightskip=0pt \leftskip=21pt \parindent=-11pt
\leavevmode\llap{\makeenmark}\hspace*{11pt}}

\begin{document}

\endnote{testendnote some text some text some text some text some text some text some text some text  some text some text} and \citep{testcite}

% the endnotes
\theendnotes
% the bibliography
\bibliographystyle{ieeetr}
\begin{thebibliography}{99}
\bibitem{testcite} Bloggs, J., The Long Long Long Long Long Long Long Long Long Long Long Long Long Long Long Long Journal of Stuff, 2012
\end{thebibliography}

\end{document} 

원래 답변

이런 뜻인가요?

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

그것은 다음과 같이 얻을 수 있습니다

\def\enoteformat{\rightskip=0pt \leftskip=10pt \parindent=0pt
\leavevmode\llap{\makeenmark}}

관련 정보