狄俄尼索斯·特拉克斯

Multi tool use
狄俄尼索斯·特拉克斯(希腊语:Διονύσιος ὁ Θρᾷξ,前170年-前90年),是生活于希腊化时期的一位语法学家,被一些人认为曾经在亚历山大里亚生活过,之后到罗得岛生活。
西方第一部语法著作《读写技巧》(Tékhnē grammatiké)被归于他的名下,但是今日已经有很多学者怀疑这部作品是否为他所作。特拉克斯在这本书里把词分为名词、动词、分词、冠词、代词、介词、副词和连词八大类。这本小册子对后世影响很大,在此后将近两千年的历史长河中,欧洲的语法学家在分析其它语言时,仍将词分为八大类,尽管所用的术语略有不同。在这部书的开篇,特拉克斯还给出了他对语法的定义,语法是“诗人和散文作家使用语言的实际知识”。
参考资料
 |
希臘語维基文库中与本条目相关的原始文献: Dionysius Thrax
|
- Dionysios Thrax, Art of Grammar
- Robins, R. H. A Short History of Linguistics (Indiana UP, 1967). (ISBN 0-253-35210-X)
- Robins, R. H. The Technē Grammatikē of Dionysius Thrax in historical perspective. In P. Swiggers, W. van Hoecke (Eds.), Mots et parties du discours. Leuven: Leuven University Press, 1987.
- V. Di Benedetto, "At the Origins of Greek Grammar," Glotta 68 (1990): 19-39.
- J. Lallot, La grammaire de Denys le Thrace, Paris: CNRS Éditions, 1998 (2e édition 2003).
规范控制 |
- WorldCat Identities
- BNE: XX957930
- BNF: cb130917207 (data)
- FAST: 193605
- GND: 118525891
- ISNI: 0000 0000 0026 7099
- LCCN: n87807248
- SUDOC: 028066073
- VIAF: 41977022
|
|
wAB40O05w,vcyhCctAh,SlWp3Ph2d6H,RQpr,EcQRDNiKgKW1 8qOM,1mR93AXmyutTRJTWLeUkqJ k XV
Popular posts from this blog
提示 :本条目的主题不是 香港中文大學(深圳) 。 body.skin-minerva .mw-parser-output table.infobox caption{text-align:center} 香港中文大學 The Chinese University of Hong Kong 校训 博文約禮 [1] [2] 创建时间 1963年10月17日 学校类型 法定(公立)、研究型 監督 主權移交前:英屬香港總督 主權移交後:香港特別行政區行政長官 校董會主席 梁乃鵬博士 校長 段崇智教授 副校长 華雲生教授(常務副校長) 霍泰輝教授、吳基培教授 張妙清教授、潘偉賢教授 陳偉儀教授、吳樹培先生 教师人數 1,619 [3] 学生人數 25,489 [3] 本科生人數 20,147 [3] 研究生人數 5,342 [3] 校址 香港新界沙田馬料水沙田市地段437號(大埔公路十一至十二咪左右(正門及崇基門) 22°25′10″N 114°12′19″E / 22.41946°N 114.205358°E / 22.41946; 114.205358 坐标: 22°25′10″N 114°12′19″E / 22.41946°N 114.205358°E / 22.41946; 114.205358 科學園路與澤祥街交界(東校門) 澤祥街18號(沙田凱悅酒店及工商管理學院)) 校區 新市鎮 总面积 134.4公頃(1,344,000平方米) [2] 代表色 紫與金 [1] 吉祥物 鳳凰 [1] 隶属 英聯邦大學協會 國際商管學院促進協會(AACSB) 東南亞高等教育協會 ( 英语 : ASAIHL ) 國際大學協會 亚太高校书院联盟 八大公立大學聯盟(譯自:HK8)[3] 网站 http://www.cuhk.edu.hk/ 香港中文大學 ( 英语: The Chinese University of Hong Kong ,縮寫为 CUHK ),簡稱 中文大學 、 中大...
10
1
I have a function that searches a vector of iterators and returns the iterator if its names matches a string passed as an argument. koalaGraph::PVertex lookUpByName(std::string Name, std::vector<koalaGraph::PVertex>& Vertices) { for (size_t i = 0; i < Vertices.size(); i++) { if(Vertices[i]->info.name == Name) return Vertices[i]; } } My question is how can I implement this as a lambda, to use it in connection with std::find_if ? I'm trying this: std::vector<koalaGraph::PVertex> V; std::string Name; std::find_if(V.begin(), V.end(), [&Name]() {return Name == V->info.name;}) But it says that V an enclosing-function local variable cannot be referenced in a lambda body unless it is in the capture list.
...
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
4
1
I am installing hackintosh in virtualbox on ubuntu, but when I try to start, I get above error. Here are some more details, Result Code: NS_ERROR_FAILURE (0x80004005) Component: ConsoleWrap Interface: IConsole {872da645-4a9b-1727-bee2-5585105b9eed} How can I solve this issue?
16.04 virtualbox
share | improve this question
asked Oct 22 '17 at 15:10
luv.preet luv.preet
1,502 4 13 29
...