I am completing my MSc thesis. I need to add an appendix section. At the moment I am using \usepackage[title]{appendix} and the appendices appear as 'Appendix A Derivation of LURB' But I want 'Appendix A. Derivation of LURB' Notice the full stop after Appendix A.
I have the following code in my main file:
\documentclass{article}
\usepackage[title, titletoc]{appendix}
\begin{document}
\begin{appendices}
\input{LUBR}
\end{appendices}
\end{document}
and in the LURB file I have: \section{Derivation of LURB}
\documentclass. – campa Aug 21 '19 at 10:46