V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX  ›  yibie  ›  全部回复第 15 页 / 共 24 页
回复总数  473
1 ... 7  8  9  10  11  12  13  14  15  16 ... 24  
2011-07-14 13:26:42 +08:00
回复了 yibie 创建的主题 macOS OS X 下有无比较合用的树状笔记本软件?
Mindnode 以及 PersonalBrain 两者是思维导图软件,不是我所需求的笔记软件。

我是希望像 MiniPad 这样的以编辑文本为主的软件……

大家还有其他推荐的嘛?
2011-07-13 00:04:56 +08:00
回复了 Mianco 创建的主题 iPhone 你们是如何导出iPhone里的照片的
我一般都导入到 iPhoto 中去。
2011-07-07 22:08:39 +08:00
回复了 L42y 创建的主题 Emacs Org-Mode 7.6 发布
我把原文发到这里:

From: Bastien <bzg <at> altern.org>
Subject: Release 7.6
Newsgroups: gmane.emacs.orgmode
Date: 2011-07-07 07:16:24 GMT (6 hours and 48 minutes ago)

Dear all,

I'm releasing Org 7.6.

You can get it from the website as an archive:

http://orgmode.org/org-7.6.zip
http://orgmode.org/org-7.6.tar.gz

Apologies for the delay between 7.5 and 7.6 -- it has been hectic times.
I owe a big *thank* to everyone who maintain a high level of activity,
both in the code and on the mailing list.

In particular: Carsten, Eric Schulte, Nicolas Goaziou, David Maus,
Julien Danjou, Jambunathan K, Michael Brand, Achim Gratz, Eric S. Fraga,
Nick Dokos, Lawrence Mitchell, Memnon Anon, Bernt Hansen, Sébastien
Vauban, Thomas S. Dye, Manuel Giraud, Karl Voit, Huy, ... and many
more! Thanks to all.

The highlight of this release is the new ODT exporter, which lives in
the contrib/ directory but will soon make its way to the core: kudos to
Jambunathan for this addition, and thanks to him for his patience.

Below is the (incomplete) list of changes:

Version 7.6
------------

New features and user-visible improvements
===========================================

Integration of Jambunathan's OpenDocumentText Exporter
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

* Activation

Org-mode 7.6 supports exporting to OpenDocument Text (=odt=)
format using org-odt.el. Depending on how you installed Org,
this module can be enabled in one of the following ways:

1. If you have downloaded the Org from the Web, either as a
distribution =.zip= or =.tar.gz= file, or as a Git archive,
enable the =odt= option in the variable =org-modules=.

2. If you are using Org-mode 7.6 that comes bundled with
Emacs-24.0.50 (or future Emacs-24.1), then you can install the
OpenDocumentText exporter using the package manager. Check
the list of available packages with =M-x list-packages= and
install the =org-odt= package.

Thanks a lot to Jambunathan K for this great contribution.

* Keybindings

The following interactive commands are provided:

1. =C-c C-e o= (=org-export-as-odt=): Export as an =odt= file.

2. =C-c C-e O= (=org-export-as-odt-and-open=): Export as an =odt=
file and open the resulting file.

See the =contrib/odt/README.org= file for further details; you
may check in particular the commands =M-x org-lparse= and =M-x
org-export-convert=.

Ob-Lilypond -- new Babel language to allow score generation
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

ob-lilypond - an org-babel language, provided to allow LilyPond
music score generation, complete with optional auditioning via
midi, whilst leveraging the full power of org mode, and literate
programming. See [https://github.com/mjago/ob-lilypond] for more
documentation.

Thanks to Martyn Jago for this addition.

Org-Bibtex -- major improvements
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Provides support for managing bibtex bibliographical references
data in headline properties. Each headline corresponds to a
single reference and the relevant bibliographic meta-data is
stored in headline properties, leaving the body of the headline
free to hold notes and comments. Org-bibtex is aware of all
standard bibtex reference types and fields.

The key new functions are

org-bibtex-check: queries the user to flesh out all required
(and with prefix argument optional) bibtex fields available
for the specific reference =type= of the current headline.

org-bibtex-create: Create a new entry at the given level,
using org-bibtex-check to flesh out the relevant fields.

org-bibtex-yank: Yank a bibtex entry on the kill ring as a
formatted Org-mode headline into the current buffer

org-bibtex-export-to-kill-ring: Export the current headline
to the kill ring as a formatted bibtex entry.

Spreadsheet computation of durations and time values
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

If you want to compute time values use the =T= flag, either in
Calc formulas or Elisp formulas:

Task 1 Task 2 Total
--------+--------+---------
35:00 35:00 1:10:00

Values must be of the form =[HH:]MM:SS=, where hours are
optional.

Thanks to Martin Halder, Eric Schulte and Carsten for code and
feedback on this.

Links within inlined footnotes.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

It as also possible to have footnotes side-by-side correctly
exported. New variables =org-export-latex-footnote-separator=,
=org-export-html-footnote-separator= and
=org-export-docbook-footnote-separator= are used to separate them
in that case.

Fontification of footnotes is also more accurate.

New variable =org-export-with-tasks=
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Non-nil means include TODO items for export.

This may have the following values:

- t include tasks independent of state.
- todo include only tasks that are not yet done.
- done include only tasks that are already done.
- nil remove all tasks before export
- list of TODO kwds keep only tasks with these keywords

Thanks to Carsten for implementing this!

New variable =org-export-latex-timestamp-inactive-markup=
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

This variable allows the user to define the LaTeX markup for
inactive timestamps. It defaults to the same markup than active
timestamps. Thanks to Eric S Fraga for this patch.

New =org-default= face
~~~~~~~~~~~~~~~~~~~~~~~

=M-x customize-face RET org-default RET= will let you define the
default face for =org-mode= buffers.

Babel improvements
~~~~~~~~~~~~~~~~~~~
* In line code block call syntax
It is now possible to call code blocks from within blocks of
prose.

The new syntax is exactly analogous to the existing =#+call:=
line syntax, only it may be present embedded in a block of prose
for example =call_double(num=8)= would call the =double= code
block assigning the =num= variable to the value =8=.

* Optional variable names in code block calls
Variable names are now optional when passing variables to a code
block reference. Un-named variables will be assigned in order as
shown below.

#+source: minus
#+begin_src emacs-lisp :var a=0 :var b=0
(- a b)
#+end_src

#+call: minus(a=8, b=4)

#+call: minus(8,4)

* Sub-tree ID as valid code block variable reference
It is now possible to assign the textual contents of an Org-mode
subtree to a code block variable using the ID of the subtree.
Both custom IDs and Org-mode IDs may be used. For example;



* =org-babel-tangle-body-hook= for reprocessing code block bodies during tangling
* =padline= header argument controls newline padding during tangling
* Maxima code blocks are now supported

Thanks to Eric Fraga for contributing this support.

* =awk= code blocks are now supported
* Added =xmpfilter= to Ruby code blocks for annotated code output
* New =noweb-ref= header argument

This header argument may be used to concatenate the bodies of
many code blocks into a single noweb reference. This brings
Org-mode's tangling functionality in line with traditional noweb
tangling.

A no web reference like the following



will now expand to include the bodies of all code blocks which
are named =the-ref=, as well as all code blocks which have a
=:noweb-ref= header argument set to the value =the-ref=.

New tests
~~~~~~~~~~

The =tests/= directory has been extensively updated.

Important bugfixes
===================

Org-exp-blocks --- proper handling of recursively nested blocks
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

During export pre-processing org-exp-blocks will now ensure that
all matched blocks contain a proper balanced number of
recursively nested blocks.

Before this fix nested blocks such as the following would break
during export.

List handling
~~~~~~~~~~~~~~

Fix an infinite loop when a list has an end of block string
without the corresponding beginning.

Auto-filling cannot happen at a location where it would otherwise
insert a new item.

Details
========

Footnotes have gone through some bug-fixing:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

- properly ignore footnotes in comments,
- export calls to previously defined footnotes in LaTeX using
\footnotemark,
- export footnotes before first heading (LaTeX),
- export footnotes when selecting a subtree not holding their
definition (LaTeX).

Many small bug fixes have been applied to list handling
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

- fix `org-timer-item',
- fix insertion of a new item with a non-nil `indent-tabs-mode',
- fix use of `fill-region' in an item,
- correct export lists within footnotes and footnotes within lists,
- correctly export lists containing macros,
- don't ignore with-case specification when sorting a list,
- better indentation handling when changing an item to an headline
or the other way,
- fix check-boxes' cookies updating.

--
2011-07-07 22:03:10 +08:00
回复了 lunaya 创建的主题 问与答 推荐个好用的mac下的双拼吧??
用 QIM,内置就有微软双拼的键位
也可以自定义
其实么,Google字典就不错啦
实际上只要清理一下自己的Cookies就可以了
如果一次不行,可以清理多次……
这是我的经验
2011-06-26 05:04:02 +08:00
回复了 dc 创建的主题 天黑以后 20110626 午夜俱乐部
半夜起床,搞搞Firefox在Mac下的不良表现……
2011-06-26 00:11:52 +08:00
回复了 bbs 创建的主题 问与答 macbook港行为什么外壳有拆封和未拆封的区别?
应该是指过关的时候被海关拆封检查
2011-06-24 21:59:02 +08:00
回复了 ccp0101 创建的主题 macOS 发布个MacOSX西厢计划的傻瓜安装包
@ccp0101 感谢。之前着急了,如有打扰,先说声抱歉啊。
2011-06-23 20:14:13 +08:00
回复了 ccp0101 创建的主题 macOS 发布个MacOSX西厢计划的傻瓜安装包
楼主看到我的问题了吗?请回复
装了这个西厢计划的包之后,上网速度非常慢
很多网站也打不开
2011-06-22 20:52:51 +08:00
回复了 ccp0101 创建的主题 macOS 发布个MacOSX西厢计划的傻瓜安装包
如何卸载呢?请问
2011-06-22 17:30:37 +08:00
回复了 lightory 创建的主题 iPhone AnimeTaste iOS App
好久没有看过动漫,悲剧的飘过
回去下载支持
2011-06-22 17:25:26 +08:00
回复了 pepsin 创建的主题 问与答 你们京东那天订的书都发货了吗?
今天刚收到,被那个快递叼了一顿
2011-06-20 13:32:35 +08:00
回复了 L42y 创建的主题 Emacs Emacs 的 Gnome 3 Adwaita color theme
无主题飘过
2011-06-20 13:23:33 +08:00
回复了 yibie 创建的主题 分享发现 分享一个港行学生机代购苹果产品的淘宝店
@superhack 大哥给个便宜的代购地址来吧!谢谢了啊!
2011-06-18 11:02:07 +08:00
回复了 lyklykkkkkkk 创建的主题 问与答 你使用双拼输入吗?
在Mac下,可以使用 QIM,输入比较顺畅,尤其是安装了 QIT 语句识别库之后,智能程度大大提高
基本输入情况下,不必怎么选字
2011-06-18 10:59:39 +08:00
回复了 lyklykkkkkkk 创建的主题 问与答 你使用双拼输入吗?
@Kymair 普及以下知识(说错了勿怪),自然码是周志农发明的,世界上第一个采用双拼键位的双拼输入法。DOS时代下的自然码可以做到和五笔一样盲打,因为采用了音+形编码,基本上输入四个字母就可以直接出一个字,无重码,不必选择。

但进入Win之后,由于规则改变了,虽然无法做到盲打,但是双拼+辅助码的输入思想,影响了拼音加加的开发,后者直接可以自定义码表,直接添加多种不同的辅助码方案。

关于双拼,我认为是学习成本比五笔低得多,但学了之后,能够大幅度提高输入效率、减低疲劳的好方式。

十分推荐大家学习(学会大概只需要7~8小时,熟练则需要大概一个星期)。
2011-06-18 10:48:49 +08:00
回复了 chenggiant 创建的主题 分享发现 京东图书又开始发力了,满100减50,满200减100
感谢分享
1 ... 7  8  9  10  11  12  13  14  15  16 ... 24  
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   857 人在线   最高记录 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 36ms · UTC 21:25 · PVG 05:25 · LAX 14:25 · JFK 17:25
Developed with CodeLauncher
♥ Do have faith in what you're doing.