'부록 A' 뒤에 마침표를 추가하는 방법

'부록 A' 뒤에 마침표를 추가하는 방법

나는 석사 논문을 완성하고 있습니다. 부록 섹션을 추가해야 합니다. 현재 사용 중이고 \usepackage[title]{appendix}부록이 'Appendix A Derivation of LURB'로 표시됩니다. 하지만 저는 'Appendix A. Derivation of LURB'를 원합니다. 부록 A 다음에 마침표가 표시됩니다.

내 기본 파일에 다음 코드가 있습니다.

\documentclass{article}
\usepackage[title, titletoc]{appendix}
\begin{document}
    \begin{appendices}
    \input{LUBR}
    \end{appendices}
\end{document}

LURB 파일에는 다음이 있습니다.\section{Derivation of LURB}

답변1

이렇게 \begin{appendices}추가한 후\renewcommand{\thesection}{\Alph{section}.}

\begin{appendices}
\renewcommand{\thesection}{\Alph{section}.}
...

마침표(마침표)를 기록합니다.

관련 정보