-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
184 lines (175 loc) · 11.6 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
---
layout: default
title: 我的Blog
---
<h2>{{ page.title }}</h2>
<p>最新文章</p>
<ul>
{% for post in site.posts %}
<li>{{ post.date | date_to_string }} <a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
</ul>
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<title>沒錯,然而道存在嗎?</title>
<!-- 2016-04-28 四 02:08 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="generator" content="Org-mode" />
<style type="text/css">
<!--/*--><![CDATA[/*><!--*/
.title { text-align: center; }
.todo { font-family: monospace; color: red; }
.done { color: green; }
.tag { background-color: #eee; font-family: monospace;
padding: 2px; font-size: 80%; font-weight: normal; }
.timestamp { color: #bebebe; }
.timestamp-kwd { color: #5f9ea0; }
.right { margin-left: auto; margin-right: 0px; text-align: right; }
.left { margin-left: 0px; margin-right: auto; text-align: left; }
.center { margin-left: auto; margin-right: auto; text-align: center; }
.underline { text-decoration: underline; }
#postamble p, #preamble p { font-size: 90%; margin: .2em; }
p.verse { margin-left: 3%; }
pre {
border: 1px solid #ccc;
box-shadow: 3px 3px 3px #eee;
padding: 8pt;
font-family: monospace;
overflow: auto;
margin: 1.2em;
}
pre.src {
position: relative;
overflow: visible;
padding-top: 1.2em;
}
pre.src:before {
display: none;
position: absolute;
background-color: white;
top: -10px;
right: 10px;
padding: 3px;
border: 1px solid black;
}
pre.src:hover:before { display: inline;}
pre.src-sh:before { content: 'sh'; }
pre.src-bash:before { content: 'sh'; }
pre.src-emacs-lisp:before { content: 'Emacs Lisp'; }
pre.src-R:before { content: 'R'; }
pre.src-perl:before { content: 'Perl'; }
pre.src-java:before { content: 'Java'; }
pre.src-sql:before { content: 'SQL'; }
table { border-collapse:collapse; }
caption.t-above { caption-side: top; }
caption.t-bottom { caption-side: bottom; }
td, th { vertical-align:top; }
th.right { text-align: center; }
th.left { text-align: center; }
th.center { text-align: center; }
td.right { text-align: right; }
td.left { text-align: left; }
td.center { text-align: center; }
dt { font-weight: bold; }
.footpara:nth-child(2) { display: inline; }
.footpara { display: block; }
.footdef { margin-bottom: 1em; }
.figure { padding: 1em; }
.figure p { text-align: center; }
.inlinetask {
padding: 10px;
border: 2px solid gray;
margin: 10px;
background: #ffffcc;
}
#org-div-home-and-up
{ text-align: right; font-size: 70%; white-space: nowrap; }
textarea { overflow-x: auto; }
.linenr { font-size: smaller }
.code-highlighted { background-color: #ffff00; }
.org-info-js_info-navigation { border-style: none; }
#org-info-js_console-label
{ font-size: 10px; font-weight: bold; white-space: nowrap; }
.org-info-js_search-highlight
{ background-color: #ffff00; color: #000000; font-weight: bold; }
/*]]>*/-->
</style>
<link rel="stylesheet" href="../asset/css/page.css" type="text/css" media="screen" />
<script type="text/javascript">
/*
@licstart The following is the entire license notice for the
JavaScript code in this tag.
Copyright (C) 2012-2013 Free Software Foundation, Inc.
The JavaScript code in this tag is free software: you can
redistribute it and/or modify it under the terms of the GNU
General Public License (GNU GPL) as published by the Free Software
Foundation, either version 3 of the License, or (at your option)
any later version. The code is distributed WITHOUT ANY WARRANTY;
without even the implied warranty of MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the GNU GPL for more details.
As additional permission under GNU GPL version 3 section 7, you
may distribute non-source (e.g., minimized or compacted) forms of
that code without the copy of the GNU GPL normally required by
section 4, provided you include this license notice and a URL
through which recipients can access the Corresponding Source.
@licend The above is the entire license notice
for the JavaScript code in this tag.
*/
<!--/*--><![CDATA[/*><!--*/
function CodeHighlightOn(elem, id)
{
var target = document.getElementById(id);
if(null != target) {
elem.cacheClassElem = elem.className;
elem.cacheClassTarget = target.className;
target.className = "code-highlighted";
elem.className = "code-highlighted";
}
}
function CodeHighlightOff(elem, id)
{
var target = document.getElementById(id);
if(elem.cacheClassElem)
elem.className = elem.cacheClassElem;
if(elem.cacheClassTarget)
target.className = elem.cacheClassTarget;
}
/*]]>*///-->
</script>
</head>
<body>
<div id="content">
<h1 class="title">沒錯,然而道存在嗎?</h1>
<ul class="org-ul">
<li>沒錯,然而道存在嗎?
</li>
<li>唉,唉,你爲何如此固執!好吧,讓我稍微多談談這個問題。
</li>
<li>道家不像西方的不可知論者一樣。那些人承認或者不承認上帝的存在,但他們其實不知道哪個結論對。西方的不可知論者會說,“由簡單的亞裏士多德式邏輯,就能明了,不管上帝存在與否,我們都沒有確切證據證明。因此,唯一理性的辦法,就是暫緩判斷這個問題,直到更進一步的證據出現。”反之,道教徒以完全不同的方式看待此問題。他不會“暫緩判斷”道是否存在的問題;他根本不會提出“道是否存在”這個問題,或者說,就算有人問他,他也會認爲,這個問題本身是含糊、沒有意義的,某種程度上是不着邊際和莫名其妙的。在這方面,他與西方的邏輯實證主義者不謀而合,雖然也許出於不同的理由。假設你問一個邏輯實證主義者“道是否存在”,他會宣稱這個問題“沒有意義”。他會首先考慮給“道”下一個明確的定義。如此,如果就像邏輯實證主義者所說那樣,這個問題是無意義的話,我將很高興地回答,“如果問題本身沒有意義可以免去不少麻煩的話,我們就不用費力去探尋什麼意義了。”
</li>
<li>對此,你可能會有點惱火,並且表示說,“別回避問題!道到底存不存在?道究竟是某種真實的東西,還是其僅僅只是幻想——一種想象的虛構?”
</li>
<li>好吧,類似的關於“存在”的問題在其他領域也已被問出,而且也一樣沒什麼用處。已經有更加形而上的問題,譬如說,所謂共性的存在——比如紅色,三角形,美麗,善良之類的。“紅色”存在嗎?如果答案是肯定的,那麼,它在哪兒?它多重?它長什麼形狀?什麼顏色?(你回答說“紅色”本身是紅的?不見得吧!)“紅色”到底存在不存在?有人可能會天真地回答,“紅色當然存在啦;看看玫瑰花,口紅,某些蘋果,等等等等……”然而,這只不過意味着,確實存在着某些東西是紅色的,卻不能證明所謂的“紅色”實體的存在。關於存在的實在性的問題的討論,在西方哲學史上一直相當活躍。所謂唯名論者相信,這個問題的答案是否定的。當然,他們承認,存在着特定的紅色物體,但他們否認“紅”的實體的存在。他們接受“色”的形容詞用法(因爲確實有紅色的東西),然而徹底否認將“紅”本身用作名詞的行爲。他們認爲“紅”這一名詞沒有任何實際的意義;他們不相信作爲名詞的“紅”能夠指代任何東西。此外,也有一些所謂的“唯實論者”(或曰“柏拉圖主義者”),覺得作爲名詞的“紅”的的確確是一個合法的名詞——它指代了實體的“紅色”。他們也相信,“紅”這個詞既可以作形容詞,也可以作名詞。比如說,像“這個蘋果是紅的”這句話,其中的“紅”就是形容詞;像“紅是三原色之一”這句話,其中的“紅”就是名詞。唯實論者認爲,“紅”確實是一個名字,它是紅顏色的名字。
</li>
<li>與此相似,唯名論-唯實論之間的爭論也延伸到了其他所謂的“普遍性”上。唯實論者,比如柏拉圖,相信“美”,“善”,“真理”,都是存在的;唯名論者卻僅僅認爲,某些藝術品是“美”的,某些行爲是“善”的,某些命題可以被適當地標記爲“真”的。
</li>
<li>可能會讓某些非數學專業的讀者驚訝的是,即使是在數學基礎領域,也存在這種爭論。外行人會誤解這一領域是確定的、非爭議性的。但是這可謂謬之千里!有一種所謂數學“唯實論者”(或者說古典主義者,柏拉圖主義者),他們認爲,在非語言的數學實體,譬如“數字、集合、函數、羣、拓撲空間……等等”的世界中,是數學的宗旨發現並證明了這些陳述,表明了這些實體的真實性。另一方面,還有所謂的數學“形式主義者”,他們相信這些所謂的數學實體完全出自想象力的虛構;唯一的現實,是用來表達他們的符號本身!所以,數學形式主義的興趣似乎是純粹的語言學。對這些人而言,數學是一種關於所謂“正規表達式”的字符串是如何根據被研究的系統的規則被操作的研究;表達式本身並不表達任何東西!而且,形式主義者(類似唯名論者)否認像“數”這樣的概念有語言表達之外的意義存在。
</li>
<li>我們似乎接近道的存在問題了。大概有人否認“道”作爲一個名詞的用法;他們拒絕承認存在名爲道的“實體”,但是他們會承認作爲形容詞的“道家的”一詞的意義。所有學習中國藝術的學生(即使是那些絕對不做任何意義上的形而上學討論的)都會明顯地做出判斷,某件藝術品相對擁有更多的道家特徵。比如,人們普遍認爲,宋代山水畫比唐代藝術更有道家氣息。因此,很少有人反對使用“道家的”這一形容詞,盡管許多人可能會反對使用名詞“道”。
</li>
<li>你們有些人可能依然認爲,我在回避道真實存在與否的問題。其實呢,我知道這個問題的答案嗎?你可能會回復我說:“你甚至根本沒有關於這個問題的個人觀點吧?”
</li>
<li>假設,你已經把我逼到了我書房的角落裏,命令我要直截了當地回答問題。“薩繆里安!不要再含糊其辭了!你覺得道到底存不存在?”我該怎麼回答才好呢?這將取決於,你問我問題的時候,我身處的語境更偏向於西方還是東方。如果我身處的語境更爲西方式(遵守存在-不存在的二元對立),那麼,因爲我更傾向於柏拉圖主義,我可能會回答:“沒錯,道存在。”但是假如我身處東方式的語境中呢?好了,想想看,你問一個禪師,道是否存在,那他可能會給你來個當頭棒喝。不過我現在情緒比較溫和,可能只是給你個微笑吧(沒準兒會有點居高臨下),並且給你沏杯茶。
</li>
</ul>
</div>
<div id="postamble" class="status">
<p class="date">Created: 2016-04-28 四 02:08</p>
<p class="creator"><a href="http://www.gnu.org/software/emacs/">Emacs</a> 24.5.1 (<a href="http://orgmode.org">Org</a> mode 8.2.10)</p>
<p class="validation"><a href="http://validator.w3.org/check?uri=referer">Validate</a></p>
</div>
</body>
</html>