0

存在しない組織モードのヘッダーを相互参照しようとしたときの例を見てみましょう。org ファイルを LaTeX にエクスポートするとreftexttt. 例えば:

* Foo

Detail X is in Section [[Bar]]. Detail Y is in Section [[Baz]].

* Bar

これは次の場所にエクスポートします:

\section{Foo}
\label{sec-1}

Detail X is in Section \ref{sec-2}. Detail Y is in Section \texttt{Baz}.
\section{Bar}
\label{sec-2}

:export:タグとタグを使用し:noexportて組織ドキュメントの一部のみをエクスポートすると、「不適切な」相互参照 (つまり、エクスポートされていない見出しを参照するもの) は、 を使用して逐語的に変換されtextttます。これらの見出しが長い場合、結果として得られる悪い相互参照は見苦しくなります。

Question: can I instead tell org-mode just simply export \texttt{??} for a bad cross-referenced heading? This would make it look consistent with broken bibtex citations.

4

2 に答える 2

1

この変数をチェックしてください:

org-latex-link-with-unknown-path-formatで定義された変数ですox-latex.el。その値は\\texttt{%s}

ドキュメント: 不明なパス タイプのリンクの書式文字列。

于 2013-07-08T17:21:30.290 に答える