Consider this MWE:
\documentclass[12pt]{book}
\usepackage{hyperref}
\usepackage[toc,page]{appendix}
\usepackage{titlesec}
\setcounter{tocdepth}{4}
\setcounter{secnumdepth}{4}
\begin{document}
\section*{Introduction}
\label{sec:introduction}
Some text.
As stated in Appendix Chapter \nameref{appendix:chapter1}'', there is an Appendix Section named\nameref{appendix:section1}''.
\begin{appendices}
\chapter*{Some appendix chapter}
\label{appendix:chapter1}
Some appendix text. A Section will follow.
\section*{A section inside appendix chapter}
\label{appendix:section1}
Some appendix section text.
\end{appendices}
\end{document}
The second reference, \nameref{appendix:section1}, is not printed in the output. If I don't use the package titlesec, it works instead.
I need titlesec to have more depth in the document structure: to be able to use a paragraph with its own title, nested inside a subsubsection.
This solution doesn't work in my case.
Either of these two options is OK for me:
Is it possible to still
namerefan Appendix Section in a document usingtitlesec? If yes, how?Is it possible to create
\paragraph*{some title}withouttitlesec, thus being able tonamerefan Appendix Section? If yes, how?
This solution is not suitable, because it has the side-effect of numerating \section*{Introduction} despite the *.


nameref, but it numerates the\section*{Introduction}, despite the star. So, it doesn't fit to my case. – BowPark Mar 02 '21 at 12:37titlesecwhile still having paragraphs with their own title? – BowPark Mar 02 '21 at 12:38