我保存着我父亲写的手稿。数据文件位于5.25“软盘上。我已经从磁盘上成功读取了文件,但是我们都不知道标记语言是什么格式。1990年代初期,这是图书出版商使用的一种格式。
这是其中一个文件的几行。
\m\m<ps;3><l>\
<ep>\
{cn}1 \
{ct}Rethinking Universality:<qa>\
Six Cases<lrh;;1>Rethinking Universality: Six
Cases<xlrh><rrh;;2>Rethinking Universality: Six Cases<xrrh> \
{t1}In 1983 the anthropological community was convulsed by reactions to
Derek Freeman\'s <ital>Margaret Mead and Samoa: The Making and Unmaking
of a Myth.<med> Remarkably, two books with a very similar message but
by different authors attacking different myths were published within a
year of Freeman\'s. One was Melford Spiro\'s <ital>Oedipus in the
Trobriands<med> (1982); the other was Ekkehart Malotki\'s <ital>Hopi
Time<med> (1983). Each of these books refutes or questions one of the
centerpieces of anthropological relativism.\
%In <ital>Coming of Age in Samoa<med> (1928) Margaret Mead argued that
adolescence among Samoans was not the time of storm and stress that it
is in the West and, hence, that the Western conception of adolescence
is strictly cultural\Msomething that we could change. Freeman shows
that adolescence was just as stressful in Samoa as in the West and that
in other ways Samoa was not so different from Western societies as Mead
had led us to believe.\
谁能识别在此使用的标记语言?
我既有这些原始文件,也有出版的书。对我来说,弄清楚代码的含义并不是很困难。但是,如果可以识别格式,则可以使用某种自动翻译成最新的格式(RTF,XML等)。
编辑
这就像是一个未解之谜!这是表格开始的方式:
<begtab;tbl2;1p><setnc;2><setctr;5p><tblwidth;15p><setbgut;rsidbox;0q>
我做了一些谷歌搜索,例如begtab
和setbgut
。后者打开了一个似乎带有“ typo”字样的PDF文档,但错字是一个setbgut
几乎与我文件中的标签完全一样的标签。
http://sfmb.ulb.ac.be/pdf/J_Biol_Chem_1999_274_22_15510.pdf(搜索setbgut
)
看来该研究论文是使用相同的软件进行布局的。我将其带入Acrobat,属性说它是由Xyvision Parlance Publisher(XPP)生成的。这是到目前为止我找到的关于它们的最好的方法:http : //www.isgmlug.org/n2-1/n2-1-49.htm
编辑2
好,我现在知道了 XPP是一种类似于SGML的标记语言。实际上,XPP销售文献宣传采取现有SGML文档并添加其专有标签是多么“容易”。不幸的是,几年前XPP被卖给了通用动力公司。没有DTD,很难将文档自动转换为HTML。但是,正如其他人指出的那样,大多数标签都很容易弄清楚。其中一些,例如书目参考和标记中的分号后的值,例如<rrh;1>
和<lp;&-1q>
仍然使我难以理解。我必须将文件与物理硬拷贝并排比较,以对所有文件进行解码。
lrh
和rrh
分别是左和右的运行头。xlrh
并xrrh
退出运行头模式。cn
将数字ct
居中-将标题居中。ital
将您置于斜体模式,而med
将您置于中等模式。%
开始一个新段落,其中反斜杠仅延续该段落。我无法弄清楚其他字词,做了很多搜索字词,但都没有透露格式...