当我使用 将以下 org 文件导出到 latex 时C-c C-e d
,生成的 tex 文件与我对创建部分的方式的期望不符。导出的子部分和子子部分最终出现在 itemize 环境中,而不是\subsection{}
中。我尝试添加#+OPTIONS: H:3
,但H
-option 不会以任何方式影响创建的 tex 文件。我该怎么做才能让 org 按照我的意图导出文件?
.org:
#+TITLE: export
#+OPTIONS: H:3
* section 1
** subsection 1
** subsection 2
*** subsubsection 1
* Section 2
结果为 .tex
% Created 2014-03-16 Sun 17:46
\documentclass{article}
\title{export}
\date{16 March 2014}
\begin{document}
\setcounter{tocdepth}{3}
\tableofcontents
\vspace*{1cm}
\section{Section 1}
\label{sec-1}
\begin{itemize}
\item subsection 1\\
\label{sec-1.1}
\item subsection 2\\
\label{sec-1.2}
\begin{itemize}
\item subsubsection 1\\
\label{sec-1.2.1}
\end{itemize} % ends low level
\end{itemize} % ends low level
\section{Section 2}
\label{sec-2}
\end{document}
答案1
#+OPTIONS: H:3
* section
** subsection
*** subsubsection
在 下对我有用Org-mode version 8.2.5h (8.2.5h-30-gdd810b-elpa @ /…/org-20140303/)
。请确保在第一行使用 来应用该选项C-c C-c
。