I have a problem where I want to structure my document visually with a heading but do not want it to actually execute a \section{Fake Heading} for the latex export. I imagine this would be customizable through an org mode property that I am unaware of.
* Normal Heading ** Subheading 1 baz * Fake Heading :PROPERTIES: :UNKNOWN_PROPERTY_NAME: t :END: ** Appendix A foo ** Appendix B bar Desired result.
\section{Normal Heading} \subsection{Subheading 1} baz \subsection{Appendix A} foo \subsection{Appendix B} bar Bonus: it would be nice that it would only ignore the fake heading for latex export. The reason I need the fake heading in the first place is that there is a custom command in the latex \documentclass{...} I am using that generates an appendix \makeAppendix thus it is redundant to have a \section{Appendix}