如何在「附錄 A」後面加上句號

如何在「附錄 A」後面加上句號

我正在完成我的碩士學位論文。我需要添加一個附錄部分。目前我正在使用\usepackage[title]{appendix},附錄顯示為“附錄 A LURB 的推導”,但我想要“附錄 A. 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}.}
...

記下句點(句號)。

相關內容