I'm trying to use properties in org mode to set export settings. The the org manual makes it sound like export settings can be set at multiple levels, including properties regarding individual trees (as well as that more specific settings overwrite more general ones). Specifically i want to turn off breaks in some trees to not get my lists messed up in latex export. But no matter how I use properties ("\n:" being the shortcut for org-export-preserve-breaks), they have no effect (same goes for when using export settings, such as those regarding emphasis). Neither
#+options: \n:nil
* title
:PROPERTIES:
:\n: t
:END:
point 1
point 2
point 3
nor
#+options: \n:nil
* title
#+property: \n t
point 1
point 2
point 3
results in
\begin{document}
\tableofcontents
\section{title}
point 1\\
point 2\\
point 3\\
\end{document}
instead i get
\begin{document}
\tableofcontents
\section{title}
point 1
point 2
point 3
\end{document}
Are export settings just not meant to be in properties or is there a way to set them on a tree level?