组织模式表:从导出中排除列
我正在导出一组组织模式的表,但我希望将用于计算和代码块消耗的某些列从 LaTeX 导出中排除。
我确信我找到了一种方法,通过在表格下方指定要导出的一系列列来实现此目的,但我在网络上的任何地方都找不到对它的引用,所以很有可能是我梦到的。
I have a set of tables in org-mode that I am exporting, but I'd like certain columns used for calculations and consumption by code blocks to be excluded from LaTeX export.
I'm sure I saw a way to do this by specifying a range of columns to export below the table, but I can't find reference to it anywhere on the web so there's a good chance I dreamt it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
实现此目的的另一种方法是在 org 文件的 LaTeX 标头选项中定义“隐藏”列类型
H
,然后使用#+ATTR_LATEX: :align llH
来指示第三列在导出时隐藏(来源) :Another way to achieve this is by defining a "hidden" column type
H
in the LaTeX header options of the org file and then use#+ATTR_LATEX: :align llH
to indicate that the third column is to be hidden on export (source):如果您使用“Radio Tables”,您可以执行类似的操作
,请参阅 http://www.gnu.org/software/emacs/manual/html_mono/org.html#Radio-tables 了解所有详细信息。
我相信通过
Cc Ce
直接导出可能是不可能的,因为他们在 http://comments.gmane.org/gmane.emacs.orgmode/33946 从 2010 年 11 月开始。If you are using "Radio Tables" you can do something like
See http://www.gnu.org/software/emacs/manual/html_mono/org.html#Radio-tables for all the details.
I believe it may not be possible directly with export via
C-c C-e
since they offer the same answer at http://comments.gmane.org/gmane.emacs.orgmode/33946 from November 2010.我使用 此处提出的 Michael Brand 解决方案德里克·费希廷格 (Derek Feichtinger) 编目 这里(确保以原始模式查看文件,否则源会被 GitHub 隐藏)。
为了方便起见,我复制了下面的代码:
I use Michael Brand's solution proposed here and cataloged by Derek Feichtinger here (make sure to view the file in raw mode, otherwise the source is hidden by GitHub).
For convenience, I reproduce the code below:
http://www.gnu.org/software/emacs /manual/html_mono/org.html#The-spreadsheet
3.5.6 编辑和调试公式
使用
'/'
表示:不导出此行。对于包含缩小 '' 标记或列组标记的行很有用。请注意,要执行此操作,您必须使用第一列来获取额外信息。
http://www.gnu.org/software/emacs/manual/html_mono/org.html#The-spreadsheet
3.5.6 Editing and debugging formulas
Use
‘/’
for: Do not export this line. Useful for lines that contain the narrowing ‘’ markers or column group markers.Note to do this you must use the first column for extra info to do this.
我发现最方便的方法是:
这是一个 elisp 的例子。
您还可以使用源块支持的任何其他语言来循环结果并生成所需的输出。
I've found that the most convenient way is to:
Here is an example with elisp.
You can also use any other language that is supported by the source blocks to loop over the results and produce desired output.