\DocumentMetadata{
pdfstandard = ua-2, % PDF/UA-2 for accessibility
lang = en-US, % Document language
uncompress, % Optional: easier to inspect PDF source
tagging = on,
tagging-setup={math/setup=mathml-SE}% Enable PDF tagging
}
%%<-many packages will simply not work to express mathematical symbols and they won't work to be read as they should. We await development of these packages to enable accuracy of mathematical expressions read by screen readers. In some cases, you may need to create alternative text to allow your mathematical expressions to be read. See the conclusion for an example.
\documentclass[11pt]{report}
\usepackage{inputenc}
\usepackage{graphicx}
\graphicspath{ {images/} }
\usepackage{caption}
\usepackage{subcaption}
\usepackage{amsmath, amsthm, amssymb, amsfonts}%<-for writing math symbols
\usepackage{unicode-math}%%important
\usepackage{float}
\usepackage[width=150mm,top=35mm,bottom=25mm,bindingoffset=6mm]{geometry}
\usepackage{fancyhdr}
\usepackage{setspace}
\usepackage{titlesec}% <- this allows us to change the font of the titles
\usepackage{fontsetup}
\usepackage{makecell}
\usepackage{tagpdf}%<- this allows for document tagging
\tagpdfsetup{
activate-all%<- suggested for correct use of table tagging, and space issues
}
\pagestyle{fancyplain}% <- use fancyplain instead fancy
\fancyhf{}
\fancyhead[R]{\thepage}
\fancyhfinit{\bfseries\sffamily}%<-changing font, sffamily is sans serif family
\renewcommand{\headrulewidth}{0pt}
\setlength{\headheight}{14pt}
\renewcommand{\familydefault}{\sfdefault}
\usepackage[style=authoryear,sorting=none]{biblatex}
\addbibresource{references.bib}
\directlua{callback.register("post_linebreak_filter", parsepara)}%<-removing glue to make screen reader easier to understand. For more information: https://www.overleaf.com/latex/examples/using-luatex-to-convert-interword-glue-to-spaces-and-kerns/sfdkdkybrvkv
\title{Thesis Title}
\author{Author Name}
\date{Day Month Year}
\begin{document}
\pagenumbering{roman}
\input{titlepage}
\input{abstract}
\chapter*{Dedication}
To mum and dad
\chapter*{Declaration}
I declare that..
\chapter*{Acknowledgments}
I want to thank...
Supported by grant numbers...
\tableofcontents
\listoffigures
\listoftables
\doublespacing
\chapter{Introduction}
\pagenumbering{arabic}
\input{chapters/introduction}
\chapter{Chapter Two Title}
\input{chapters/chapter02}
\chapter{Chapter Three Title}
\input{chapters/chapter03}
\chapter{Chapter Four Title}
\input{chapters/chapter04}
\chapter{Conclusion}
\input{chapters/conclusion}
\appendix
\chapter{Appendix Title}
\input{chapters/appendix}
\singlespacing
\renewcommand{\familydefault}{\sfdefault} % <- this is telling the bibliography to be sans serif
\urlstyle{same}
\printbibliography
\end{document}