Initial commit
6885
ZAEANNOTATION.csv
Normal file
BIN
ZAEANNOTATION.xlsx
Normal file
BIN
ZBKLIBRARYASSET.xlsx
Normal file
BIN
__pycache__/annotationdata.cpython-312.pyc
Normal file
BIN
__pycache__/booklist_parse.cpython-312.pyc
Normal file
BIN
__pycache__/opf_parse.cpython-312.pyc
Normal file
BIN
__pycache__/toc_parse.cpython-312.pyc
Normal file
107
annotationdata.py
Normal file
@@ -0,0 +1,107 @@
|
|||||||
|
import sqlite3
|
||||||
|
from collections import defaultdict
|
||||||
|
import re
|
||||||
|
import os
|
||||||
|
|
||||||
|
def parse_location(location):
|
||||||
|
"""
|
||||||
|
解析ZANNOTATIONLOCATION,返回(idref, filepos)
|
||||||
|
- epubcfi(...)格式优先提取[]内内容为idref
|
||||||
|
- 其他格式兼容原逻辑
|
||||||
|
"""
|
||||||
|
idref = None
|
||||||
|
filepos = None
|
||||||
|
if not location:
|
||||||
|
return idref, filepos
|
||||||
|
# 统一处理,提取前两个[]内容
|
||||||
|
matches = re.findall(r'\[(.*?)\]', location) if location else []
|
||||||
|
idref = matches[0] if len(matches) > 0 else None
|
||||||
|
filepos = matches[1] if len(matches) > 1 else None
|
||||||
|
return idref, filepos
|
||||||
|
|
||||||
|
def get_annotations(db_path='./data/AEAnnotation.sqlite'):
|
||||||
|
# 检查WAL模式相关文件
|
||||||
|
base = db_path.rsplit('.', 1)[0]
|
||||||
|
wal_path = base + '.sqlite-wal'
|
||||||
|
shm_path = base + '.sqlite-shm'
|
||||||
|
for f in [db_path, wal_path, shm_path]:
|
||||||
|
if not os.path.exists(f):
|
||||||
|
print(f'警告: 缺少 {f},可能无法获取全部最新笔记')
|
||||||
|
conn = sqlite3.connect(db_path)
|
||||||
|
cursor = conn.cursor()
|
||||||
|
cursor.execute('''
|
||||||
|
SELECT ZANNOTATIONASSETID, ZANNOTATIONCREATIONDATE, ZANNOTATIONLOCATION, ZANNOTATIONNOTE, ZANNOTATIONSELECTEDTEXT, ZANNOTATIONUUID
|
||||||
|
FROM ZAEANNOTATION
|
||||||
|
''')
|
||||||
|
rows = cursor.fetchall()
|
||||||
|
annotations = defaultdict(dict)
|
||||||
|
import datetime
|
||||||
|
for row in rows:
|
||||||
|
assetid, creationdate, location, note, selectedtext, uuid = row
|
||||||
|
# 转换 creationdate 格式,支持苹果时间戳(以2001-01-01为基准)
|
||||||
|
date_str = creationdate
|
||||||
|
if creationdate:
|
||||||
|
try:
|
||||||
|
origin = datetime.datetime(2001, 1, 1)
|
||||||
|
# 苹果时间戳 float/int 或数字字符串
|
||||||
|
if isinstance(creationdate, (int, float)):
|
||||||
|
dt = origin + datetime.timedelta(seconds=creationdate)
|
||||||
|
elif isinstance(creationdate, str) and creationdate.replace('.', '', 1).isdigit():
|
||||||
|
dt = origin + datetime.timedelta(seconds=float(creationdate))
|
||||||
|
else:
|
||||||
|
dt = datetime.datetime.strptime(creationdate[:10], "%Y-%m-%d")
|
||||||
|
date_str = f"{dt.year}/{dt.month}/{dt.day}"
|
||||||
|
except Exception:
|
||||||
|
date_str = str(creationdate)
|
||||||
|
idref, filepos = parse_location(location)
|
||||||
|
# 跳过note和selectedtext都为None的笔记
|
||||||
|
if note is None and selectedtext is None:
|
||||||
|
continue
|
||||||
|
annotations[str(assetid)][uuid] = {
|
||||||
|
'creationdate': date_str,
|
||||||
|
'filepos': filepos,
|
||||||
|
'idref': idref,
|
||||||
|
'note': note,
|
||||||
|
'selectedtext': selectedtext
|
||||||
|
}
|
||||||
|
conn.close()
|
||||||
|
return annotations
|
||||||
|
|
||||||
|
# 用法示例:输出每本书的前3条笔记
|
||||||
|
if __name__ == "__main__":
|
||||||
|
# 测试 parse_location
|
||||||
|
'''
|
||||||
|
test_locations = [
|
||||||
|
'epubcfi(/6/746[id509]!/4[4MLOS0-27b363c65bfe41ad8429f530566a2737]/10,/2/1:0,/7:8',
|
||||||
|
'epubcfi(/6/22[id15]!/4/156/1,:21,:157)',
|
||||||
|
'epubcfi(/6/764[id518]!/4[4V8DU0-27b363c65bfe41ad8429f530566a2737]/56,/1:0,/3:2)'
|
||||||
|
]
|
||||||
|
for loc in test_locations:
|
||||||
|
idref, filepos = parse_location(loc)
|
||||||
|
print(f"location: {loc}\n idref: {idref}\n filepos: {filepos}\n")
|
||||||
|
'''
|
||||||
|
|
||||||
|
annotations = get_annotations()
|
||||||
|
|
||||||
|
# 格式化打印所有 annotations
|
||||||
|
from pprint import pprint
|
||||||
|
print("\n所有笔记:")
|
||||||
|
pprint(annotations, indent=2, sort_dicts=False)
|
||||||
|
|
||||||
|
# 输出每本书的前3条笔记
|
||||||
|
'''
|
||||||
|
book_notes = defaultdict(list)
|
||||||
|
for assetid, notes_dict in annotations.items():
|
||||||
|
for uuid, ann in notes_dict.items():
|
||||||
|
book_notes[assetid].append({**ann, 'uuid': uuid})
|
||||||
|
for assetid, notes in book_notes.items():
|
||||||
|
print(f"\nAssetID: {assetid}")
|
||||||
|
for i, note in enumerate(notes[:3]):
|
||||||
|
print(f" 笔记{i+1}:")
|
||||||
|
print(f" creationdate: {note['creationdate']}")
|
||||||
|
print(f" idref: {note['idref']}")
|
||||||
|
print(f" filepos: {note['filepos']}")
|
||||||
|
print(f" note: {note['note']}")
|
||||||
|
print(f" selectedtext: {note['selectedtext']}")
|
||||||
|
print(f" uuid: {note['uuid']}")
|
||||||
|
'''
|
||||||
60
backup/booksnote.py
Normal file
@@ -0,0 +1,60 @@
|
|||||||
|
"""
|
||||||
|
生成 booksnote 数据结构:
|
||||||
|
booksnote = {
|
||||||
|
assetid: {uuid: {
|
||||||
|
'chapter': label_path,
|
||||||
|
'creationdate': '2023/7/12',
|
||||||
|
'filepos': None,
|
||||||
|
'idref': '008.xhtml',
|
||||||
|
'note': None,
|
||||||
|
'selectedtext': '這就是宣傳的恐怖之處'
|
||||||
|
}}
|
||||||
|
}
|
||||||
|
"""
|
||||||
|
from collections import defaultdict
|
||||||
|
from annotationdata import get_annotations
|
||||||
|
from opf_parse import parse_opf
|
||||||
|
from toc_parse import parse_navpoints, find_label_path
|
||||||
|
import os
|
||||||
|
from bs4 import BeautifulSoup
|
||||||
|
|
||||||
|
def get_toc_tree(toc_path):
|
||||||
|
with open(toc_path, 'r', encoding='utf-8') as f:
|
||||||
|
soup = BeautifulSoup(f, 'xml')
|
||||||
|
nav_map = soup.find('navMap')
|
||||||
|
return parse_navpoints(nav_map.find_all('navPoint', recursive=False))
|
||||||
|
|
||||||
|
def build_booksnote(annotation_db='data/AEAnnotation.sqlite', opf_path=None, toc_path=None):
|
||||||
|
annotations = get_annotations(annotation_db)
|
||||||
|
booksnote = defaultdict(lambda: defaultdict(dict))
|
||||||
|
# 解析OPF和TOC
|
||||||
|
if not opf_path or not toc_path:
|
||||||
|
raise ValueError('必须提供OPF和TOC路径')
|
||||||
|
id2href = parse_opf(opf_path)
|
||||||
|
toc_tree = get_toc_tree(toc_path)
|
||||||
|
# 遍历所有笔记
|
||||||
|
for assetid, notes in annotations.items():
|
||||||
|
for uuid, ann in notes.items():
|
||||||
|
idref = ann['idref']
|
||||||
|
filepos = ann['filepos']
|
||||||
|
href = id2href.get(idref, idref)
|
||||||
|
chapter = find_label_path(toc_tree, href, filepos)
|
||||||
|
if chapter is None:
|
||||||
|
chapter = "(未找到章节)"
|
||||||
|
booksnote[assetid][chapter][uuid] = {
|
||||||
|
'chapter': chapter,
|
||||||
|
'creationdate': ann['creationdate'],
|
||||||
|
'filepos': filepos,
|
||||||
|
'idref': href,
|
||||||
|
'note': ann['note'],
|
||||||
|
'selectedtext': ann['selectedtext']
|
||||||
|
}
|
||||||
|
return booksnote
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
# 示例:请根据实际epub路径填写
|
||||||
|
opf_path = './examples/epub_format_3/OEBPS/content.opf'
|
||||||
|
toc_path = './examples/epub_format_3/OEBPS/toc.ncx'
|
||||||
|
booksnote = build_booksnote(opf_path=opf_path, toc_path=toc_path)
|
||||||
|
from pprint import pprint
|
||||||
|
pprint(booksnote, indent=2, width=120, sort_dicts=False)
|
||||||
36
booklist_parse.py
Normal file
@@ -0,0 +1,36 @@
|
|||||||
|
import plistlib
|
||||||
|
from collections import defaultdict
|
||||||
|
|
||||||
|
def parse_books_plist(plist_path):
|
||||||
|
booksinfo = defaultdict(dict)
|
||||||
|
with open(plist_path, 'rb') as f: plist_data = plistlib.load(f)
|
||||||
|
for book in plist_data.get('Books', []):
|
||||||
|
bk_id = book.get('BKGeneratedItemId')
|
||||||
|
if not bk_id: continue
|
||||||
|
booksinfo[bk_id] = {
|
||||||
|
'displayname': book.get('BKDisplayName', ''),
|
||||||
|
'author': book.get('artistName', ''),
|
||||||
|
'type': book.get('BKBookType', ''),
|
||||||
|
'bookid': bk_id,
|
||||||
|
'itemname': book.get('itemName', ''),
|
||||||
|
'path': book.get('path', '')
|
||||||
|
}
|
||||||
|
return booksinfo
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
booksinfo = parse_books_plist('./data/Books.plist')
|
||||||
|
from pprint import pprint
|
||||||
|
print("\n【前三条示例】")
|
||||||
|
for k, v in list(booksinfo.items())[:3]:
|
||||||
|
print(f"{k}:")
|
||||||
|
pprint(v, sort_dicts=False, indent=2)
|
||||||
|
print('-' * 60)
|
||||||
|
|
||||||
|
'''
|
||||||
|
print("\n【全部内容】")
|
||||||
|
for k, v in booksinfo.items():
|
||||||
|
print(f"{k}:")
|
||||||
|
pprint(v, sort_dicts=False, indent=2)
|
||||||
|
print('-' * 60)
|
||||||
|
'''
|
||||||
|
|
||||||
BIN
data/AEAnnotation.qlite-wal
Normal file
BIN
data/AEAnnotation.sqlite
Normal file
BIN
data/BKLibrary.sqlite
Normal file
BIN
data/Books.plist
Normal file
BIN
examples/.DS_Store
vendored
Normal file
8
examples/epub_format_1/META-INF/container.xml
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
<?xml version="1.0"?>
|
||||||
|
<container version="1.0" xmlns="urn:oasis:names:tc:opendocument:xmlns:container">
|
||||||
|
<rootfiles>
|
||||||
|
<rootfile full-path="content.opf" media-type="application/oebps-package+xml"/>
|
||||||
|
|
||||||
|
</rootfiles>
|
||||||
|
</container>
|
||||||
|
|
||||||
160
examples/epub_format_1/content.opf
Normal file
@@ -0,0 +1,160 @@
|
|||||||
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
|
<package xmlns="http://www.idpf.org/2007/opf" unique-identifier="uuid_id" version="2.0">
|
||||||
|
<metadata xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:calibre="http://calibre.kovidgoyal.net/2009/metadata" xmlns:opf="http://www.idpf.org/2007/opf" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
|
<dc:creator opf:file-as="(美)德肖维茨" opf:role="aut">(美)德肖维茨</dc:creator>
|
||||||
|
<dc:date>2013-04-11T16:00:00+00:00</dc:date>
|
||||||
|
<dc:subject>法律</dc:subject>
|
||||||
|
<dc:contributor opf:role="bkp">calibre (2.52.0) [http://calibre-ebook.com]</dc:contributor>
|
||||||
|
<meta name="calibre:timestamp" content="2016-10-03T15:14:59+00:00"/>
|
||||||
|
<meta name="calibre:title_sort" content="最好的辩护"/>
|
||||||
|
<meta name="cover" content="cover"/>
|
||||||
|
<dc:language>zh</dc:language>
|
||||||
|
<dc:title>最好的辩护</dc:title>
|
||||||
|
<dc:publisher>南海出版公司</dc:publisher>
|
||||||
|
<dc:identifier opf:scheme="MOBI-ASIN">605b48eb-fdb0-4c1e-93e3-50b91f34e879</dc:identifier>
|
||||||
|
<dc:identifier id="uuid_id" opf:scheme="uuid">48bb3d6c-275d-48e6-85e9-bf486694aac4</dc:identifier>
|
||||||
|
<dc:identifier opf:scheme="calibre">48bb3d6c-275d-48e6-85e9-bf486694aac4</dc:identifier>
|
||||||
|
</metadata>
|
||||||
|
<manifest>
|
||||||
|
<item href="cover.jpeg" id="cover" media-type="image/jpeg"/>
|
||||||
|
<item href="index_split_000.html" id="id163" media-type="application/xhtml+xml"/>
|
||||||
|
<item href="index_split_001.html" id="id162" media-type="application/xhtml+xml"/>
|
||||||
|
<item href="index_split_002.html" id="id161" media-type="application/xhtml+xml"/>
|
||||||
|
<item href="index_split_003.html" id="id160" media-type="application/xhtml+xml"/>
|
||||||
|
<item href="index_split_004.html" id="id159" media-type="application/xhtml+xml"/>
|
||||||
|
<item href="index_split_005.html" id="id158" media-type="application/xhtml+xml"/>
|
||||||
|
<item href="index_split_006.html" id="id157" media-type="application/xhtml+xml"/>
|
||||||
|
<item href="index_split_007.html" id="id156" media-type="application/xhtml+xml"/>
|
||||||
|
<item href="index_split_008.html" id="id155" media-type="application/xhtml+xml"/>
|
||||||
|
<item href="index_split_009.html" id="id154" media-type="application/xhtml+xml"/>
|
||||||
|
<item href="index_split_010.html" id="id153" media-type="application/xhtml+xml"/>
|
||||||
|
<item href="index_split_011.html" id="id152" media-type="application/xhtml+xml"/>
|
||||||
|
<item href="index_split_012.html" id="id151" media-type="application/xhtml+xml"/>
|
||||||
|
<item href="index_split_013.html" id="id150" media-type="application/xhtml+xml"/>
|
||||||
|
<item href="index_split_014.html" id="id149" media-type="application/xhtml+xml"/>
|
||||||
|
<item href="index_split_015.html" id="id148" media-type="application/xhtml+xml"/>
|
||||||
|
<item href="index_split_016.html" id="id147" media-type="application/xhtml+xml"/>
|
||||||
|
<item href="index_split_017.html" id="id146" media-type="application/xhtml+xml"/>
|
||||||
|
<item href="index_split_018.html" id="id145" media-type="application/xhtml+xml"/>
|
||||||
|
<item href="index_split_019.html" id="id144" media-type="application/xhtml+xml"/>
|
||||||
|
<item href="index_split_020.html" id="id143" media-type="application/xhtml+xml"/>
|
||||||
|
<item href="index_split_021.html" id="id142" media-type="application/xhtml+xml"/>
|
||||||
|
<item href="index_split_022.html" id="id141" media-type="application/xhtml+xml"/>
|
||||||
|
<item href="index_split_023.html" id="id140" media-type="application/xhtml+xml"/>
|
||||||
|
<item href="index_split_024.html" id="id139" media-type="application/xhtml+xml"/>
|
||||||
|
<item href="index_split_025.html" id="id138" media-type="application/xhtml+xml"/>
|
||||||
|
<item href="index_split_026.html" id="id137" media-type="application/xhtml+xml"/>
|
||||||
|
<item href="index_split_027.html" id="id136" media-type="application/xhtml+xml"/>
|
||||||
|
<item href="index_split_028.html" id="id135" media-type="application/xhtml+xml"/>
|
||||||
|
<item href="index_split_029.html" id="id134" media-type="application/xhtml+xml"/>
|
||||||
|
<item href="index_split_030.html" id="id133" media-type="application/xhtml+xml"/>
|
||||||
|
<item href="index_split_031.html" id="id132" media-type="application/xhtml+xml"/>
|
||||||
|
<item href="index_split_032.html" id="id131" media-type="application/xhtml+xml"/>
|
||||||
|
<item href="index_split_033.html" id="id130" media-type="application/xhtml+xml"/>
|
||||||
|
<item href="index_split_034.html" id="id129" media-type="application/xhtml+xml"/>
|
||||||
|
<item href="index_split_035.html" id="id128" media-type="application/xhtml+xml"/>
|
||||||
|
<item href="index_split_036.html" id="id127" media-type="application/xhtml+xml"/>
|
||||||
|
<item href="index_split_037.html" id="id126" media-type="application/xhtml+xml"/>
|
||||||
|
<item href="index_split_038.html" id="id125" media-type="application/xhtml+xml"/>
|
||||||
|
<item href="index_split_039.html" id="id124" media-type="application/xhtml+xml"/>
|
||||||
|
<item href="index_split_040.html" id="id123" media-type="application/xhtml+xml"/>
|
||||||
|
<item href="index_split_041.html" id="id122" media-type="application/xhtml+xml"/>
|
||||||
|
<item href="index_split_042.html" id="id121" media-type="application/xhtml+xml"/>
|
||||||
|
<item href="index_split_043.html" id="id120" media-type="application/xhtml+xml"/>
|
||||||
|
<item href="index_split_044.html" id="id119" media-type="application/xhtml+xml"/>
|
||||||
|
<item href="index_split_045.html" id="id118" media-type="application/xhtml+xml"/>
|
||||||
|
<item href="index_split_046.html" id="id117" media-type="application/xhtml+xml"/>
|
||||||
|
<item href="index_split_047.html" id="id116" media-type="application/xhtml+xml"/>
|
||||||
|
<item href="index_split_048.html" id="id115" media-type="application/xhtml+xml"/>
|
||||||
|
<item href="index_split_049.html" id="id114" media-type="application/xhtml+xml"/>
|
||||||
|
<item href="index_split_050.html" id="id113" media-type="application/xhtml+xml"/>
|
||||||
|
<item href="index_split_051.html" id="id112" media-type="application/xhtml+xml"/>
|
||||||
|
<item href="index_split_052.html" id="id111" media-type="application/xhtml+xml"/>
|
||||||
|
<item href="index_split_053.html" id="id110" media-type="application/xhtml+xml"/>
|
||||||
|
<item href="index_split_054.html" id="id19" media-type="application/xhtml+xml"/>
|
||||||
|
<item href="index_split_055.html" id="id18" media-type="application/xhtml+xml"/>
|
||||||
|
<item href="index_split_056.html" id="id17" media-type="application/xhtml+xml"/>
|
||||||
|
<item href="index_split_057.html" id="id16" media-type="application/xhtml+xml"/>
|
||||||
|
<item href="index_split_058.html" id="id15" media-type="application/xhtml+xml"/>
|
||||||
|
<item href="index_split_059.html" id="id14" media-type="application/xhtml+xml"/>
|
||||||
|
<item href="index_split_060.html" id="id13" media-type="application/xhtml+xml"/>
|
||||||
|
<item href="index_split_061.html" id="id12" media-type="application/xhtml+xml"/>
|
||||||
|
<item href="index_split_062.html" id="id11" media-type="application/xhtml+xml"/>
|
||||||
|
<item href="index_split_111.html" id="id" media-type="application/xhtml+xml"/>
|
||||||
|
<item href="page_styles.css" id="page_css" media-type="text/css"/>
|
||||||
|
<item href="stylesheet.css" id="css" media-type="text/css"/>
|
||||||
|
<item href="titlepage.xhtml" id="titlepage" media-type="application/xhtml+xml"/>
|
||||||
|
<item href="toc.ncx" id="ncx" media-type="application/x-dtbncx+xml"/>
|
||||||
|
</manifest>
|
||||||
|
<spine toc="ncx">
|
||||||
|
<itemref idref="titlepage"/>
|
||||||
|
<itemref idref="id163"/>
|
||||||
|
<itemref idref="id162"/>
|
||||||
|
<itemref idref="id161"/>
|
||||||
|
<itemref idref="id160"/>
|
||||||
|
<itemref idref="id159"/>
|
||||||
|
<itemref idref="id158"/>
|
||||||
|
<itemref idref="id157"/>
|
||||||
|
<itemref idref="id156"/>
|
||||||
|
<itemref idref="id155"/>
|
||||||
|
<itemref idref="id154"/>
|
||||||
|
<itemref idref="id153"/>
|
||||||
|
<itemref idref="id152"/>
|
||||||
|
<itemref idref="id151"/>
|
||||||
|
<itemref idref="id150"/>
|
||||||
|
<itemref idref="id149"/>
|
||||||
|
<itemref idref="id148"/>
|
||||||
|
<itemref idref="id147"/>
|
||||||
|
<itemref idref="id146"/>
|
||||||
|
<itemref idref="id145"/>
|
||||||
|
<itemref idref="id144"/>
|
||||||
|
<itemref idref="id143"/>
|
||||||
|
<itemref idref="id142"/>
|
||||||
|
<itemref idref="id141"/>
|
||||||
|
<itemref idref="id140"/>
|
||||||
|
<itemref idref="id139"/>
|
||||||
|
<itemref idref="id138"/>
|
||||||
|
<itemref idref="id137"/>
|
||||||
|
<itemref idref="id136"/>
|
||||||
|
<itemref idref="id135"/>
|
||||||
|
<itemref idref="id134"/>
|
||||||
|
<itemref idref="id133"/>
|
||||||
|
<itemref idref="id132"/>
|
||||||
|
<itemref idref="id131"/>
|
||||||
|
<itemref idref="id130"/>
|
||||||
|
<itemref idref="id129"/>
|
||||||
|
<itemref idref="id128"/>
|
||||||
|
<itemref idref="id127"/>
|
||||||
|
<itemref idref="id126"/>
|
||||||
|
<itemref idref="id125"/>
|
||||||
|
<itemref idref="id124"/>
|
||||||
|
<itemref idref="id123"/>
|
||||||
|
<itemref idref="id122"/>
|
||||||
|
<itemref idref="id121"/>
|
||||||
|
<itemref idref="id120"/>
|
||||||
|
<itemref idref="id119"/>
|
||||||
|
<itemref idref="id118"/>
|
||||||
|
<itemref idref="id117"/>
|
||||||
|
<itemref idref="id116"/>
|
||||||
|
<itemref idref="id115"/>
|
||||||
|
<itemref idref="id114"/>
|
||||||
|
<itemref idref="id113"/>
|
||||||
|
<itemref idref="id112"/>
|
||||||
|
<itemref idref="id111"/>
|
||||||
|
<itemref idref="id110"/>
|
||||||
|
<itemref idref="id19"/>
|
||||||
|
<itemref idref="id18"/>
|
||||||
|
<itemref idref="id17"/>
|
||||||
|
<itemref idref="id16"/>
|
||||||
|
<itemref idref="id15"/>
|
||||||
|
<itemref idref="id14"/>
|
||||||
|
<itemref idref="id13"/>
|
||||||
|
<itemref idref="id12"/>
|
||||||
|
<itemref idref="id11"/>
|
||||||
|
<itemref idref="id"/>
|
||||||
|
</spine>
|
||||||
|
<guide>
|
||||||
|
<reference href="titlepage.xhtml" title="Cover" type="cover"/>
|
||||||
|
<reference href="index_split_062.html#filepos1021129" title="Table of Contents" type="toc"/>
|
||||||
|
</guide>
|
||||||
|
</package>
|
||||||
BIN
examples/epub_format_1/cover.jpeg
Normal file
|
After Width: | Height: | Size: 78 KiB |
10
examples/epub_format_1/index_split_000.html
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<title>最好的辩护</title>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||||
|
<link href="stylesheet.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<link href="page_styles.css" rel="stylesheet" type="text/css"/>
|
||||||
|
</head>
|
||||||
|
<body class="calibre"><p id="filepos109" class="calibre_"><span class="calibre1"><span class="bold">最好的辩护</span></span></p><p class="calibre_1"><span class="calibre1"><span class="bold">THE BEST DEFENSE</span></span></p><p class="calibre_1"><span class="calibre1"><span class="calibre_2">[美]亚伦·德萧维奇</span></span></p><p class="calibre_3"><span class="calibre1"><span class="calibre_2">本书由“行行”整理,如果你不知道读什么书或者想获得更多免费电子书请加小编微信或QQ:491256034 小编也和结交一些喜欢读书的朋友 或者关注小编个人微信公众号id:d716-716 为了方便书友朋友找书和看书,小编自己做了一个电子书下载网站,网址:www.ireadweek.com QQ群:550338315</span></span></p><div class="mbp_pagebreak" id="calibre_pb_0"></div>
|
||||||
|
</body></html>
|
||||||
11
examples/epub_format_1/index_split_001.html
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<title>最好的辩护</title>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||||
|
<link href="stylesheet.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<link href="page_styles.css" rel="stylesheet" type="text/css"/>
|
||||||
|
</head>
|
||||||
|
<body class="calibre">
|
||||||
|
<p id="filepos669" class="calibre_4"><span class="calibre2"><span class="bold">图书在版编目(CIP)数据</span></span></p><p class="calibre_5">ISBN 7-5442-2212-8/D-61</p><p class="calibre_6">定价:29.80 元</p><p class="calibre_6">最好的辩护/[美]德萧维奇著;李贞莹,郭静美译,海口:南海出版公司,2002.9</p><p class="calibre_6">ISBN 7 - 5442-2212 – 8</p><p class="calibre_6">I.最… II.①德…②李…③郭… III.司法制度-研究-美国 IV .0971,26</p><p class="calibre_6">中国版本图书馆CIP数据 核字(2002)第042716号</p><p class="calibre_6">著作权合同登记号 图字:30-2002-68</p><p class="calibre_6">责任编辑:陈明俊 项竹薇</p><p class="calibre_6">策划编辑:陈明俊 季晟康</p><p class="calibre_6">Email:schmj@95777.com</p><p class="calibre_6">封面设计:新经典工作室</p><p class="calibre_6">南海出版公司</p><p class="calibre_6">电话(0898)65350227海口市机场路友利园大厦B座3楼</p><p class="calibre_6">邮编570203</p><p class="calibre_6">新华书店北京迪鑫印刷厂880 x 1230 毫米 1/3215350千</p><p class="calibre_6">2002年9月第1版2002年9月第1次印刷</p><p class="calibre_6">The Best Defense</p><p class="calibre_6">Copyright © 1982 by Alan M. Dershowitz</p><p class="calibre_6">Published by arrangement with Random House Trade Publishing</p><p class="calibre_6">a division of Random House,Inc.</p><p class="calibre_6">Simplified Chinese translation copyright © 2002</p><p class="calibre_6">by Naihai Publishing Corporation(南海出版公司)</p><p class="calibre_6">through BARDON CHINESE MEDIA AGENCY</p><p class="calibre_6">ALL RIGHTS RESERVED</p><p class="calibre_6">南海版图书版权所有盗版必究</p><div class="mbp_pagebreak" id="calibre_pb_1"></div>
|
||||||
|
</body></html>
|
||||||
11
examples/epub_format_1/index_split_002.html
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<title>最好的辩护</title>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||||
|
<link href="stylesheet.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<link href="page_styles.css" rel="stylesheet" type="text/css"/>
|
||||||
|
</head>
|
||||||
|
<body class="calibre">
|
||||||
|
<p id="filepos3004" class="calibre_4"><span class="calibre2"><span class="bold">谨以此书献给</span></span></p><p class="calibre_5">我挚爱的双亲</p><p class="calibre_6">哈利·德萧维奇和克蕾儿·德萧维奇</p><p class="calibre_6">在波罗公园那些年,他们鼓励我包容我</p><p class="calibre_6">也献给我的孩子艾隆和吉米</p><p class="calibre_6">在剑桥那些年,他们给予我最大的鼓励与包容</p><div class="mbp_pagebreak" id="calibre_pb_2"></div>
|
||||||
|
</body></html>
|
||||||
11
examples/epub_format_1/index_split_003.html
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<title>最好的辩护</title>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||||
|
<link href="stylesheet.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<link href="page_styles.css" rel="stylesheet" type="text/css"/>
|
||||||
|
</head>
|
||||||
|
<body class="calibre">
|
||||||
|
<p id="filepos3565" class="calibre_4"><span class="calibre2"><span class="bold">作者简介</span></span></p><p class="calibre_4"><span class="calibre1"><span class="calibre_2">[美]亚伦·德萧维奇(Alan M. Dershowitz)</span></span></p><p class="calibre_6">美国当代最伟大的律师,曾为辛普森杀妻案、克林顿绯闻案与弹劾案、泰森案等一系列轰动全球的大案担任辩护律师。1962年自耶鲁法学院毕业。28岁时即成为哈佛法学院教授,是这所名校有史以来最年轻的教授。1981年,美国刑事辩护律师协会颁奖给他,奖励他作为学者对于美国司法体制建设的卓越贡献。德萧维奇将自己亲身经历的大案撰写成书,著有《厚颜无耻》、 《颠覆命运》、《合理的怀疑》等部畅销不衰的作品。其中《最好的辩护》堪称解剖美国司法体制的经典著作。</p><div class="mbp_pagebreak" id="calibre_pb_3"></div>
|
||||||
|
</body></html>
|
||||||
11
examples/epub_format_1/index_split_004.html
Normal file
11
examples/epub_format_1/index_split_005.html
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<title>最好的辩护</title>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||||
|
<link href="stylesheet.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<link href="page_styles.css" rel="stylesheet" type="text/css"/>
|
||||||
|
</head>
|
||||||
|
<body class="calibre">
|
||||||
|
<p id="filepos27953" class="calibre_4"><span class="calibre2"><span class="bold">作者记</span></span></p><p class="calibre_5">这本书是爱的结晶。我有幸得到许多朋友、家人和同事的帮助,使这个耗费多时的工作显得很愉快。我的儿子艾隆在编辑上甚至是常识上提供了一些建议。我另一个儿子吉米则提供了有建设性的质疑。我的弟弟纳坦和他的儿子亚当,他们读了部分的原稿,也给我一些有帮助的建议。我的母亲除了在疲劳的诉讼期间下厨做饭之外,她还集合家族的人仔细追忆我们家族的根源。而我的父亲用他自己的方式默默地支持着我。我亲近的朋友及同事琼·贝克和哈维·希维格,他们不但在书里所提到的案例中支持我,也总是在我需要他们的时候在我身边。我的编辑,温文尔雅的罗伯·考雷,是这一行的佼佼者,也是艺术大师,他在书中每个重要转折处提供协助。还有我的出版商包伯·伯恩斯坦,当我最需要鼓励的时候,他总是适时敦促我继续写下去。</p><p class="calibre_6">我在哈佛法学院的学生们也扮演着重要的角色。我将用几个章节介绍这个班级,我也从他们那里得到珍贵的回馈。那些学生现在都成为杰出的年轻律师,例如:辛西亚·汉弥敦,乔安娜·克里斯比,詹姆士·维特肯,罗拉·汉夫和马裘利·汉斯,他们都提供了无价的协助。贝蒂·阿吉斯特、温蒂·罗素、布鲁·泰伯和安·麦德彭也给了我十分宝贵的建议和许多编辑上的意见,还有其他不胜枚举的学生也在研究上帮忙许多,其中包括最近的爱伦·麦德彭、马克·费比尼和多娜·列文。</p><p class="calibre_6">我在哈佛法学院的同事们,即使并非完全同意我的主张,却仍然鼓励我。我特别想要感谢约翰·艾利、詹姆士·瓦伦伯、菲利普·赫曼、苏珊·艾斯翠和艾蓝·史东。哈佛法学院的帮忙也是很重要的,特别是凯·吐斯雷、西维亚·马德里葛、潘·福雷、黛比·瑞马和文字处理及录像中心的工作人员。而兰登书屋的珊蒂·萧芬在编辑工作上更展现了极大的耐心和真正的专业技术。</p><p class="calibre_6">最后,我也谢谢书中的当事人、检察官、法官及其他辩护律师,他们提供了本书的基本素材,我想尽可能地对所有人都公平,可是事实上却很难,对此我倒希望是我有所遗漏了。</p><div class="mbp_pagebreak" id="calibre_pb_5"></div>
|
||||||
|
</body></html>
|
||||||
11
examples/epub_format_1/index_split_006.html
Normal file
11
examples/epub_format_1/index_split_007.html
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<title>最好的辩护</title>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||||
|
<link href="stylesheet.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<link href="page_styles.css" rel="stylesheet" type="text/css"/>
|
||||||
|
</head>
|
||||||
|
<body class="calibre">
|
||||||
|
<p id="filepos56127" class="calibre_4"><span class="calibre2"><span class="bold">第一部无罪推定</span></span></p><div class="mbp_pagebreak" id="calibre_pb_7"></div>
|
||||||
|
</body></html>
|
||||||
11
examples/epub_format_1/index_split_008.html
Normal file
11
examples/epub_format_1/index_split_009.html
Normal file
11
examples/epub_format_1/index_split_010.html
Normal file
11
examples/epub_format_1/index_split_011.html
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<title>最好的辩护</title>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||||
|
<link href="stylesheet.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<link href="page_styles.css" rel="stylesheet" type="text/css"/>
|
||||||
|
</head>
|
||||||
|
<body class="calibre">
|
||||||
|
<p id="filepos450261" class="calibre_4"><span class="calibre2"><span class="bold">第二部妨碍秩序</span></span></p><div class="mbp_pagebreak" id="calibre_pb_11"></div>
|
||||||
|
</body></html>
|
||||||
11
examples/epub_format_1/index_split_012.html
Normal file
11
examples/epub_format_1/index_split_013.html
Normal file
11
examples/epub_format_1/index_split_014.html
Normal file
11
examples/epub_format_1/index_split_015.html
Normal file
11
examples/epub_format_1/index_split_016.html
Normal file
11
examples/epub_format_1/index_split_017.html
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<title>最好的辩护</title>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||||
|
<link href="stylesheet.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<link href="page_styles.css" rel="stylesheet" type="text/css"/>
|
||||||
|
</head>
|
||||||
|
<body class="calibre">
|
||||||
|
<p id="filepos773399" class="calibre_4"><span class="calibre2"><span class="bold">第三部打击不义</span></span></p><div class="mbp_pagebreak" id="calibre_pb_17"></div>
|
||||||
|
</body></html>
|
||||||
11
examples/epub_format_1/index_split_018.html
Normal file
11
examples/epub_format_1/index_split_019.html
Normal file
11
examples/epub_format_1/index_split_020.html
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<title>最好的辩护</title>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||||
|
<link href="stylesheet.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<link href="page_styles.css" rel="stylesheet" type="text/css"/>
|
||||||
|
</head>
|
||||||
|
<body class="calibre">
|
||||||
|
<p id="filepos999281" class="calibre_10"><sup class="calibre3"><small class="calibre4"><a href="index_split_006.html#filepos37589"><span class="calibre4">{1}</span></a></small></sup></p><p class="calibre_16"><span class="calibre6">这并非是个激进或短暂的想法,就像英国律师亨利•布鲁汉于1820年所说的:“辩护人对他的当事人有着非常神圣的义务,因而全世界中只知道为他一人履行职务,且仅止于这个当事人,别无他人。为了拯救当事人而去使用各种适当的方法,或利用各种机会,以他人甚至辩护人自己为代价来保护当事人,这是身为辩护人最重要也是最毫无疑问的义务。他不能去思考他的辩护可能带给其他人紧张、折磨、痛苦或是毁灭。不但如此,如果需要的话,他必须要将爱国者的责任与辩护人的义务分开,他必须不顾后果地继续下去,保护他的当事人,如果上天注定他的命运如此,即使会导致他的国家陷于混乱也应在所不惜。”</span></p><div class="mbp_pagebreak" id="calibre_pb_20"></div>
|
||||||
|
</body></html>
|
||||||
11
examples/epub_format_1/index_split_021.html
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<title>最好的辩护</title>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||||
|
<link href="stylesheet.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<link href="page_styles.css" rel="stylesheet" type="text/css"/>
|
||||||
|
</head>
|
||||||
|
<body class="calibre">
|
||||||
|
<p id="filepos1000306" class="calibre_10"><sup class="calibre3"><small class="calibre4"><a href="index_split_006.html#filepos50379"><span class="calibre4">{2}</span></a></small></sup></p><p class="calibre_16"><span class="calibre6">并不是这两个法官告诉我这个故事的,我在该法院中有可靠的消息来源,而他本人曾看过所有的文件。</span></p><div class="mbp_pagebreak" id="calibre_pb_21"></div>
|
||||||
|
</body></html>
|
||||||
11
examples/epub_format_1/index_split_022.html
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<title>最好的辩护</title>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||||
|
<link href="stylesheet.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<link href="page_styles.css" rel="stylesheet" type="text/css"/>
|
||||||
|
</head>
|
||||||
|
<body class="calibre">
|
||||||
|
<p id="filepos1000649" class="calibre_10"><sup class="calibre3"><small class="calibre4"><a href="index_split_008.html#filepos65567"><span class="calibre4">{3}</span></a></small></sup></p><p class="calibre_16"><span class="calibre6">埃利法特(Elefant)和大象(elephant)音相近,故有此误。----译注</span></p><div class="mbp_pagebreak" id="calibre_pb_22"></div>
|
||||||
|
</body></html>
|
||||||
11
examples/epub_format_1/index_split_023.html
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<title>最好的辩护</title>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||||
|
<link href="stylesheet.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<link href="page_styles.css" rel="stylesheet" type="text/css"/>
|
||||||
|
</head>
|
||||||
|
<body class="calibre">
|
||||||
|
<p id="filepos1000938" class="calibre_10"><sup class="calibre3"><small class="calibre4"><a href="index_split_008.html#filepos74779"><span class="calibre4">{4}</span></a></small></sup></p><p class="calibre_16"><span class="calibre6">金斯县(Kings Country)与国王(king〉在英语上谐音。——译注</span></p><div class="mbp_pagebreak" id="calibre_pb_23"></div>
|
||||||
|
</body></html>
|
||||||
11
examples/epub_format_1/index_split_024.html
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<title>最好的辩护</title>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||||
|
<link href="stylesheet.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<link href="page_styles.css" rel="stylesheet" type="text/css"/>
|
||||||
|
</head>
|
||||||
|
<body class="calibre">
|
||||||
|
<p id="filepos1001224" class="calibre_10"><sup class="calibre3"><small class="calibre4"><a href="index_split_008.html#filepos74951"><span class="calibre4">{5}</span></a></small></sup></p><p class="calibre_16"><span class="calibre6">布鲁克林与昆士区(Queens)相邻,故为“皇后”之谑、——译注</span></p><div class="mbp_pagebreak" id="calibre_pb_24"></div>
|
||||||
|
</body></html>
|
||||||
11
examples/epub_format_1/index_split_025.html
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<title>最好的辩护</title>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||||
|
<link href="stylesheet.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<link href="page_styles.css" rel="stylesheet" type="text/css"/>
|
||||||
|
</head>
|
||||||
|
<body class="calibre">
|
||||||
|
<p id="filepos1001514" class="calibre_10"><sup class="calibre3"><small class="calibre4"><a href="index_split_008.html#filepos89110"><span class="calibre4">{6}</span></a></small></sup></p><p class="calibre_16"><span class="calibre6">庆法节(Simchath Torah),犹太宗教节日,即犹太历法第一个月的第23天,庆祝一年一度的犹太历法循环的结束及新的循环的开始。——译注</span></p><div class="mbp_pagebreak" id="calibre_pb_25"></div>
|
||||||
|
</body></html>
|
||||||
11
examples/epub_format_1/index_split_026.html
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<title>最好的辩护</title>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||||
|
<link href="stylesheet.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<link href="page_styles.css" rel="stylesheet" type="text/css"/>
|
||||||
|
</head>
|
||||||
|
<body class="calibre">
|
||||||
|
<p id="filepos1001899" class="calibre_10"><sup class="calibre3"><small class="calibre4"><a href="index_split_008.html#filepos92512"><span class="calibre4">{7}</span></a></small></sup></p><p class="calibre_16"><span class="calibre6">这件案子是在联邦法院审判,而非州法庭,因为新的联邦法令已经承认联邦当局的司法管辖权涵盖在建筑物中使用爆炸物的行为,这行为会妨碍州际和国际间的贸易。</span></p><div class="mbp_pagebreak" id="calibre_pb_26"></div>
|
||||||
|
</body></html>
|
||||||
11
examples/epub_format_1/index_split_027.html
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<title>最好的辩护</title>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||||
|
<link href="stylesheet.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<link href="page_styles.css" rel="stylesheet" type="text/css"/>
|
||||||
|
</head>
|
||||||
|
<body class="calibre">
|
||||||
|
<p id="filepos1002326" class="calibre_10"><sup class="calibre3"><small class="calibre4"><a href="index_split_008.html#filepos106419"><span class="calibre4">{8}</span></a></small></sup></p><p class="calibre_16"><span class="calibre6">犹太节日(Succoth),意为Feast of Tabernacles,即“临时遮身之所的盛宴”,以庆祝秋收,纪念出埃及时困在沙漠中的历史。——译注</span></p><div class="mbp_pagebreak" id="calibre_pb_27"></div>
|
||||||
|
</body></html>
|
||||||
11
examples/epub_format_1/index_split_028.html
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<title>最好的辩护</title>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||||
|
<link href="stylesheet.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<link href="page_styles.css" rel="stylesheet" type="text/css"/>
|
||||||
|
</head>
|
||||||
|
<body class="calibre">
|
||||||
|
<p id="filepos1002699" class="calibre_10"><sup class="calibre3"><small class="calibre4"><a href="index_split_008.html#filepos130465"><span class="calibre4">{9}</span></a></small></sup></p><p class="calibre_16"><span class="calibre6">当这些录音带在法庭上被播放时,法官要席格把他秘密录音的技术教给联邦调查局,因为席格的录音比任何他曾听过的联邦调查局的录音都要好得多。</span></p><div class="mbp_pagebreak" id="calibre_pb_28"></div>
|
||||||
|
</body></html>
|
||||||
11
examples/epub_format_1/index_split_029.html
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<title>最好的辩护</title>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||||
|
<link href="stylesheet.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<link href="page_styles.css" rel="stylesheet" type="text/css"/>
|
||||||
|
</head>
|
||||||
|
<body class="calibre">
|
||||||
|
<p id="filepos1003105" class="calibre_10"><sup class="calibre3"><small class="calibre4"><a href="index_split_008.html#filepos161079"><span class="calibre4">{10}</span></a></small></sup></p><p class="calibre_16"><span class="calibre6">法院喜欢使用像“污染”、“果实”这种不精确的概念,因为他们可以对上下文作扩张或限制的解释,这使他们在适用特殊案件时有较大的栽量空间。</span></p><div class="mbp_pagebreak" id="calibre_pb_29"></div>
|
||||||
|
</body></html>
|
||||||
11
examples/epub_format_1/index_split_030.html
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<title>最好的辩护</title>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||||
|
<link href="stylesheet.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<link href="page_styles.css" rel="stylesheet" type="text/css"/>
|
||||||
|
</head>
|
||||||
|
<body class="calibre">
|
||||||
|
<p id="filepos1003512" class="calibre_10"><sup class="calibre3"><small class="calibre4"><a href="index_split_008.html#filepos167142"><span class="calibre4">{11}</span></a></small></sup></p><p class="calibre_16"><span class="calibre6">这项适用并不如第五修正案那么顺理成章。第五修正案以暗示性的语言谈到证据排除法则:“不得强迫刑事犯自证其罪……’’而第四修正案的说法较为普遍:“人民有保护其身体、住所、文件与财产之权,不受无理拘捕、搜查与扣押,并不得非法侵犯。系有正当理由。”宪法并没有说明这些权利如果遭受侵害应诙如何赔偿。</span></p><div class="mbp_pagebreak" id="calibre_pb_30"></div>
|
||||||
|
</body></html>
|
||||||
11
examples/epub_format_1/index_split_031.html
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<title>最好的辩护</title>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||||
|
<link href="stylesheet.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<link href="page_styles.css" rel="stylesheet" type="text/css"/>
|
||||||
|
</head>
|
||||||
|
<body class="calibre">
|
||||||
|
<p id="filepos1004153" class="calibre_10"><sup class="calibre3"><small class="calibre4"><a href="index_split_008.html#filepos176533"><span class="calibre4">{12}</span></a></small></sup></p><p class="calibre_16"><span class="calibre6">此处听不清的词是“none”或“done”发音极为相似。——译注</span></p><div class="mbp_pagebreak" id="calibre_pb_31"></div>
|
||||||
|
</body></html>
|
||||||
11
examples/epub_format_1/index_split_032.html
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<title>最好的辩护</title>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||||
|
<link href="stylesheet.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<link href="page_styles.css" rel="stylesheet" type="text/css"/>
|
||||||
|
</head>
|
||||||
|
<body class="calibre">
|
||||||
|
<p id="filepos1004442" class="calibre_10"><sup class="calibre3"><small class="calibre4"><a href="index_split_008.html#filepos186048"><span class="calibre4">{13}</span></a></small></sup></p><p class="calibre_16"><span class="calibre6">一个退休了的纽约州刑事法庭法官撰文章论及作伪证的警察的问题。艾尔文•杨格曾服务于包曼法官最喜爱的纽约州检察官助理办公室,他把这篇文章拿去印刷,每个律师都在耳语讨论,但没有人敢出版:每个在刑事法院服务的律师都知道,警察作伪证是稀松平常的事。</span></p><p class="calibre_16"><span class="calibre6">警察总汄为他们在对付某个联合阵线,在街头对抗犯罪,而在法院对抗“自由人权”。这场战役中所有手段都是公开的,包括作伪证以防止“自由人权”遭到毁灭,因为这些法律有可能会让“应该”坐牢的人获得自由。即使他的谎言在法庭上被揭露,要是这个警察会被他的同伴检察官起诉的话,这个检察官有可能会遭天打雷劈的。</span></p><div class="mbp_pagebreak" id="calibre_pb_32"></div>
|
||||||
|
</body></html>
|
||||||
11
examples/epub_format_1/index_split_033.html
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<title>最好的辩护</title>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||||
|
<link href="stylesheet.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<link href="page_styles.css" rel="stylesheet" type="text/css"/>
|
||||||
|
</head>
|
||||||
|
<body class="calibre">
|
||||||
|
<p id="filepos1005513" class="calibre_10"><sup class="calibre3"><small class="calibre4"><a href="index_split_008.html#filepos219920"><span class="calibre4">{14}</span></a></small></sup></p><p class="calibre_16"><span class="calibre6">包曼法官为这场讨论敝下唐突无理的结语,毫无任何解释,这使我想起伦·劳德尼关于一个儿子和他父亲对话的描述。当儿子问父亲他是否输了,父亲结束了谈话。劳德尼这样写着:“他说闭嘴。”</span></p><div class="mbp_pagebreak" id="calibre_pb_33"></div>
|
||||||
|
</body></html>
|
||||||
11
examples/epub_format_1/index_split_034.html
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<title>最好的辩护</title>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||||
|
<link href="stylesheet.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<link href="page_styles.css" rel="stylesheet" type="text/css"/>
|
||||||
|
</head>
|
||||||
|
<body class="calibre">
|
||||||
|
<p id="filepos1005982" class="calibre_10"><sup class="calibre3"><small class="calibre4"><a href="index_split_008.html#filepos222413"><span class="calibre4">{15}</span></a></small></sup></p><p class="calibre_16"><span class="calibre6">这个林肯的故事就像许多其他的故事一样,有部分是虚构的。事实上的情况如下:林肯拿出一本历书拿给证人看,问他如下的问题:问:这历书上不是说8月29日的月亮几乎没有超过1/4,而不是满月?</span></p><p class="calibre_16"><span class="calibre6">答:(没有回答。)</span></p><p class="calibre_16"><span class="calibre6">问:这历书上不是说月亮在11点之后就消失了吗?</span></p><p class="calibre_16"><span class="calibre6">答:(没有回答。)</span></p><p class="calibre_16"><span class="calibre6">之后,被告无罪释放。这历书很可能是正确的年份(自哈怫图书馆中所得的复印本),但林肯的情形是误导它的内容:历书上是写着那晚月亮几乎没有超过1/4,这样的描写好像是说它发亮的部分几乎没有超过1/4。可是仔细地看历书,其实它发亮的部分超过了月亮的3/4,几乎是接近满月。而且一直要到几个小时之后证人看见了犯罪行为时才消失。(向哈佛天文台查证即可证实。)但是证人却被林肯错误却博学的姿态给搞混了,无法回答问题。看来林肯从未将他的错误告诉法院(如果他真的知道,像我所怀疑的一样,那就是欺骗)的态度对待我。</span></p><div class="mbp_pagebreak" id="calibre_pb_34"></div>
|
||||||
|
</body></html>
|
||||||
11
examples/epub_format_1/index_split_035.html
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<title>最好的辩护</title>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||||
|
<link href="stylesheet.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<link href="page_styles.css" rel="stylesheet" type="text/css"/>
|
||||||
|
</head>
|
||||||
|
<body class="calibre">
|
||||||
|
<p id="filepos1007558" class="calibre_10"><sup class="calibre3"><small class="calibre4"><a href="index_split_008.html#filepos225003"><span class="calibre4">{16}</span></a></small></sup></p><p class="calibre_16"><span class="calibre6">不知包曼法官是从何处得来这个奇怪的讯息。律师经常会向法官提出疑问。</span></p><div class="mbp_pagebreak" id="calibre_pb_35"></div>
|
||||||
|
</body></html>
|
||||||
11
examples/epub_format_1/index_split_036.html
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<title>最好的辩护</title>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||||
|
<link href="stylesheet.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<link href="page_styles.css" rel="stylesheet" type="text/css"/>
|
||||||
|
</head>
|
||||||
|
<body class="calibre">
|
||||||
|
<p id="filepos1007866" class="calibre_10"><sup class="calibre3"><small class="calibre4"><a href="index_split_008.html#filepos231816"><span class="calibre4">{17}</span></a></small></sup></p><p class="calibre_16"><span class="calibre6">关于帕罗拉为交换哈洛克案消息而作出这个争议性的承诺,最好的证明最终来自于西德门探长,有一项他个人授权用承诺来交换哈洛克案的消息。在他的《主管》一书中(书是在哈洛克案审判终结之后不久出版的)西德门对帕罗拉的引述如下:“把犯下哈洛克案的家伙的名字交给我们,我们可以弄个承诺,这样不但做事十分方便,而且地方检察官也不会把你泄漏出来。否则,席格,你可能要上法院并在你的人们面前公开受审。”西德门接着写下一段对话,席格问帕罗拉说:“你真的会信守承诺不把我泄漏出来?”帕罗拉回答道:“为了一个乖孩子,我们一定会的。”然后席格问道:“假设我告诉你在哥伦比亚艺术经纪公司的炸弹是谁做的。”帕罗拉回答道:“这就是乖孩子,会的。”席格再次要求确保他不会被揭露:“你发誓你不会把我泄漏出来?”帕罗拉给他保证:“我们发誓,孩子。”直到此时,席格才揭露他自己是参与者还有其他人的姓名。但是,为了准备哈洛克案的审判,检察官是否有访问西德门?若没有,为什么他不提出这个关键性的讯息?</span></p><div class="mbp_pagebreak" id="calibre_pb_36"></div>
|
||||||
|
</body></html>
|
||||||
11
examples/epub_format_1/index_split_037.html
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<title>最好的辩护</title>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||||
|
<link href="stylesheet.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<link href="page_styles.css" rel="stylesheet" type="text/css"/>
|
||||||
|
</head>
|
||||||
|
<body class="calibre">
|
||||||
|
<p id="filepos1009349" class="calibre_10"><sup class="calibre3"><small class="calibre4"><a href="index_split_008.html#filepos253114"><span class="calibre4">{18}</span></a></small></sup></p><p class="calibre_16"><span class="calibre6">之后几年,我曾在几百个学生面前播放这个录音带,绝大部分都同意上诉法院的看法。但是每年都有少部分的学生(特别是来自布鲁克林的)听出那个字是“不是”而我自己每次“听”的结果都不相同。</span></p><div class="mbp_pagebreak" id="calibre_pb_37"></div>
|
||||||
|
</body></html>
|
||||||
11
examples/epub_format_1/index_split_038.html
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<title>最好的辩护</title>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||||
|
<link href="stylesheet.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<link href="page_styles.css" rel="stylesheet" type="text/css"/>
|
||||||
|
</head>
|
||||||
|
<body class="calibre">
|
||||||
|
<p id="filepos1009825" class="calibre_10"><sup class="calibre3"><small class="calibre4"><a href="index_split_009.html#filepos291194"><span class="calibre4">{19}</span></a></small></sup></p><p class="calibre_16"><span class="calibre6">除了特别的情形之外,像谋杀这类的犯罪是在州的管辖范围内,而非在联邦法院。</span></p><div class="mbp_pagebreak" id="calibre_pb_38"></div>
|
||||||
|
</body></html>
|
||||||
11
examples/epub_format_1/index_split_039.html
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<title>最好的辩护</title>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||||
|
<link href="stylesheet.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<link href="page_styles.css" rel="stylesheet" type="text/css"/>
|
||||||
|
</head>
|
||||||
|
<body class="calibre">
|
||||||
|
<p id="filepos1010142" class="calibre_10"><sup class="calibre3"><small class="calibre4"><a href="index_split_009.html#filepos308214"><span class="calibre4">{20}</span></a></small></sup></p><p class="calibre_16"><span class="calibre6">通常最常用来区别“直接”和“间接”证据之间不同的说法是:如果有人告诉你他刚才在外面看到天正在下雨,这就是直接证据可以证明正在下雨;但是如果你看到一群人带着湿淋淋的雨伞走进室内,这便是间接证据可以推断正在下雨。</span></p><div class="mbp_pagebreak" id="calibre_pb_39"></div>
|
||||||
|
</body></html>
|
||||||
11
examples/epub_format_1/index_split_040.html
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<title>最好的辩护</title>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||||
|
<link href="stylesheet.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<link href="page_styles.css" rel="stylesheet" type="text/css"/>
|
||||||
|
</head>
|
||||||
|
<body class="calibre">
|
||||||
|
<p id="filepos1010663" class="calibre_10"><sup class="calibre3"><small class="calibre4"><a href="index_split_009.html#filepos321839"><span class="calibre4">{21}</span></a></small></sup></p><p class="calibre_16"><span class="calibre6">奥伯尼,纽约州首府。——译注</span></p><div class="mbp_pagebreak" id="calibre_pb_40"></div>
|
||||||
|
</body></html>
|
||||||
11
examples/epub_format_1/index_split_041.html
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<title>最好的辩护</title>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||||
|
<link href="stylesheet.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<link href="page_styles.css" rel="stylesheet" type="text/css"/>
|
||||||
|
</head>
|
||||||
|
<body class="calibre">
|
||||||
|
<p id="filepos1010914" class="calibre_10"><sup class="calibre3"><small class="calibre4"><a href="index_split_009.html#filepos348628"><span class="calibre4">{22}</span></a></small></sup></p><p class="calibre_16"><span class="calibre6">假设最初起诉梅尔的罪名只有谋杀未遂(而非谋杀)假设在谋杀未遂的审判中,审判法官曾指示“推定故意”,假设陪审团基于该指示而判定被告触犯杀人未遂罪,法院是否仍会维持基于该说明而判定的杀人未遂罪名?除非答案是“是”否则法院必须在本案中排除杀人未遂的罪名。</span></p><div class="mbp_pagebreak" id="calibre_pb_41"></div>
|
||||||
|
</body></html>
|
||||||
11
examples/epub_format_1/index_split_042.html
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<title>最好的辩护</title>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||||
|
<link href="stylesheet.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<link href="page_styles.css" rel="stylesheet" type="text/css"/>
|
||||||
|
</head>
|
||||||
|
<body class="calibre">
|
||||||
|
<p id="filepos1011495" class="calibre_10"><sup class="calibre3"><small class="calibre4"><a href="index_split_010.html#filepos397047"><span class="calibre4">{23}</span></a></small></sup></p><p class="calibre_16"><span class="calibre6">兰尼。布鲁斯常说:“在司法审判的殿堂中,惟一的公平正义只存在在法院大厅里。”</span></p><div class="mbp_pagebreak" id="calibre_pb_42"></div>
|
||||||
|
</body></html>
|
||||||
11
examples/epub_format_1/index_split_043.html
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<title>最好的辩护</title>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||||
|
<link href="stylesheet.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<link href="page_styles.css" rel="stylesheet" type="text/css"/>
|
||||||
|
</head>
|
||||||
|
<body class="calibre">
|
||||||
|
<p id="filepos1011818" class="calibre_10"><sup class="calibre3"><small class="calibre4"><a href="index_split_010.html#filepos400357"><span class="calibre4">{24}</span></a></small></sup></p><p class="calibre_16"><span class="calibre6">在另一个我曾协助的案件里,有个检察官(纽约南区的美国地方检察署)威胁要起诉我的当事人的无辜的儿子(他才刚从法律学院毕业)、他80岁的老父、他的妹妹和他的老婆,除非我的当事人肯当告密者。我向美国检察署提出申诉,于是他允诺除非他相信他儿子有罪,否则不会起诉他的儿子;结果是这个儿子没有被起诉。</span></p><div class="mbp_pagebreak" id="calibre_pb_43"></div>
|
||||||
|
</body></html>
|
||||||
11
examples/epub_format_1/index_split_044.html
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<title>最好的辩护</title>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||||
|
<link href="stylesheet.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<link href="page_styles.css" rel="stylesheet" type="text/css"/>
|
||||||
|
</head>
|
||||||
|
<body class="calibre">
|
||||||
|
<p id="filepos1012455" class="calibre_10"><sup class="calibre3"><small class="calibre4"><a href="index_split_013.html#filepos550128"><span class="calibre4">{25}</span></a></small></sup></p><p class="calibre_16"><span class="calibre6">情报局最近认定前局长威廉·考比违反协议,因为在他的法文著作中,很不小心地没有把某件未受审查的资料加以删除。</span></p><div class="mbp_pagebreak" id="calibre_pb_44"></div>
|
||||||
|
</body></html>
|
||||||
11
examples/epub_format_1/index_split_045.html
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<title>最好的辩护</title>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||||
|
<link href="stylesheet.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<link href="page_styles.css" rel="stylesheet" type="text/css"/>
|
||||||
|
</head>
|
||||||
|
<body class="calibre">
|
||||||
|
<p id="filepos1012822" class="calibre_10"><sup class="calibre3"><small class="calibre4"><a href="index_split_014.html#filepos579691"><span class="calibre4">{26}</span></a></small></sup></p><p class="calibre_16"><span class="calibre6">芬兰车站是列宁格勒一个火车站的名字。——译注</span></p><div class="mbp_pagebreak" id="calibre_pb_45"></div>
|
||||||
|
</body></html>
|
||||||
11
examples/epub_format_1/index_split_046.html
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<title>最好的辩护</title>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||||
|
<link href="stylesheet.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<link href="page_styles.css" rel="stylesheet" type="text/css"/>
|
||||||
|
</head>
|
||||||
|
<body class="calibre">
|
||||||
|
<p id="filepos1013097" class="calibre_10"><sup class="calibre3"><small class="calibre4"><a href="index_split_014.html#filepos584008"><span class="calibre4">{27}</span></a></small></sup></p><p class="calibre_16"><span class="calibre6">检查员的心态有些问题。当“不准离境者”们翻译《出埃及记》时,关于哪些部分应该要被删减的争论就开始了。比如说,所有审查员都认为,信仰不同宗教的阿利•班•卡拉和凯蒂•佛来蒙之间的爱情故事应该删除。</span></p><div class="mbp_pagebreak" id="calibre_pb_46"></div>
|
||||||
|
</body></html>
|
||||||
11
examples/epub_format_1/index_split_047.html
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<title>最好的辩护</title>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||||
|
<link href="stylesheet.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<link href="page_styles.css" rel="stylesheet" type="text/css"/>
|
||||||
|
</head>
|
||||||
|
<body class="calibre">
|
||||||
|
<p id="filepos1013594" class="calibre_10"><sup class="calibre3"><small class="calibre4"><a href="index_split_014.html#filepos606878"><span class="calibre4">{28}</span></a></small></sup></p><p class="calibre_16"><span class="calibre6">我们整理的文件参见塔尔福德·泰勒所著《恐怖法庭》一书(纽约克诺普出版社出版)</span></p><div class="mbp_pagebreak" id="calibre_pb_47"></div>
|
||||||
|
</body></html>
|
||||||
11
examples/epub_format_1/index_split_048.html
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<title>最好的辩护</title>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||||
|
<link href="stylesheet.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<link href="page_styles.css" rel="stylesheet" type="text/css"/>
|
||||||
|
</head>
|
||||||
|
<body class="calibre">
|
||||||
|
<p id="filepos1013916" class="calibre_10"><sup class="calibre3"><small class="calibre4"><a href="index_split_016.html#filepos724126"><span class="calibre4">{29}</span></a></small></sup></p><p class="calibre_16"><span class="calibre6">以上是根据瑞奇和雷蒙的叙述。</span></p><div class="mbp_pagebreak" id="calibre_pb_48"></div>
|
||||||
|
</body></html>
|
||||||
11
examples/epub_format_1/index_split_049.html
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<title>最好的辩护</title>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||||
|
<link href="stylesheet.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<link href="page_styles.css" rel="stylesheet" type="text/css"/>
|
||||||
|
</head>
|
||||||
|
<body class="calibre">
|
||||||
|
<p id="filepos1014167" class="calibre_10"><sup class="calibre3"><small class="calibre4"><a href="index_split_016.html#filepos753810"><span class="calibre4">{30}</span></a></small></sup></p><p class="calibre_16"><span class="calibre6">以雷电来模拟是错的:雷电将人击毙是任意随机的,而死刑却不成比例地判定在黑人、贫穷男性以及拒绝庭外协商以认罪换减刑的人身上。</span></p><div class="mbp_pagebreak" id="calibre_pb_49"></div>
|
||||||
|
</body></html>
|
||||||
11
examples/epub_format_1/index_split_050.html
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<title>最好的辩护</title>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||||
|
<link href="stylesheet.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<link href="page_styles.css" rel="stylesheet" type="text/css"/>
|
||||||
|
</head>
|
||||||
|
<body class="calibre">
|
||||||
|
<p id="filepos1014559" class="calibre_10"><sup class="calibre3"><small class="calibre4"><a href="index_split_018.html#filepos778296"><span class="calibre4">{31}</span></a></small></sup></p><p class="calibre_16"><span class="calibre6">1976年8月22号的《炫耀》杂志的封面故事是采访南西·罗斯纳。她叙述自己如何赢得棘手的走私海洛因的案例。关键点在于她最终说服一位不为所动的男性陪审员。这位陪审员刚开始时,一直将南西视为帮派分子。穿着昂贵旦流露适当性感洋装的南西,以“最巧妙的方式”使他信服她的辩护,她在6小时内拿到无罪开释而获胜。</span></p><div class="mbp_pagebreak" id="calibre_pb_50"></div>
|
||||||
|
</body></html>
|
||||||
11
examples/epub_format_1/index_split_051.html
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<title>最好的辩护</title>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||||
|
<link href="stylesheet.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<link href="page_styles.css" rel="stylesheet" type="text/css"/>
|
||||||
|
</head>
|
||||||
|
<body class="calibre">
|
||||||
|
<p id="filepos1015198" class="calibre_10"><sup class="calibre3"><small class="calibre4"><a href="index_split_018.html#filepos784290"><span class="calibre4">{32}</span></a></small></sup></p><p class="calibre_16"><span class="calibre6">其实路奇的说辞有模糊、令人混淆之处。他虽说自己参与的是3件恐吓,但若仔细推究,其中有一件又牵涉另外两个事件。为保持此说法的一致性,我在上文的陈述中将之视为3件,而非4件案子,就像我在叙述《城市王子》里的罗伯·戴利时一样。</span></p><div class="mbp_pagebreak" id="calibre_pb_51"></div>
|
||||||
|
</body></html>
|
||||||
11
examples/epub_format_1/index_split_052.html
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<title>最好的辩护</title>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||||
|
<link href="stylesheet.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<link href="page_styles.css" rel="stylesheet" type="text/css"/>
|
||||||
|
</head>
|
||||||
|
<body class="calibre">
|
||||||
|
<p id="filepos1015730" class="calibre_10"><sup class="calibre3"><small class="calibre4"><a href="index_split_018.html#filepos785374"><span class="calibre4">{33}</span></a></small></sup></p><p class="calibre_16"><span class="calibre6">路奇与数个政府官员在《城市王子》一书发行之前,曾校阅书中所提及事项的准确性。</span></p><div class="mbp_pagebreak" id="calibre_pb_52"></div>
|
||||||
|
</body></html>
|
||||||
11
examples/epub_format_1/index_split_053.html
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<title>最好的辩护</title>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||||
|
<link href="stylesheet.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<link href="page_styles.css" rel="stylesheet" type="text/css"/>
|
||||||
|
</head>
|
||||||
|
<body class="calibre">
|
||||||
|
<p id="filepos1016053" class="calibre_10"><sup class="calibre3"><small class="calibre4"><a href="index_split_018.html#filepos786750"><span class="calibre4">{34}</span></a></small></sup></p><p class="calibre_16"><span class="calibre6">在称为薛曼的案件中,政府特务克尔钦与薛曼在戒毒的诊所中相遇。克尔钦问薛曼他是否有取得上等毒品的渠道,薛曼一开始时试着避开话题,但是在克尔钦多次要求之后,他答应帮他弄一点货。最高法院一致否决原来有罪的判决,认为薛曼遭到违法的陷害。法官说:“在这个案件中,政府扮演着无辜的角色,引诱被告犯罪。如果只有他自己,他是绝不会想要这样做的。法律的执行力应该不包含这个手段的运用。</span></p><div class="mbp_pagebreak" id="calibre_pb_53"></div>
|
||||||
|
</body></html>
|
||||||
11
examples/epub_format_1/index_split_054.html
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<title>最好的辩护</title>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||||
|
<link href="stylesheet.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<link href="page_styles.css" rel="stylesheet" type="text/css"/>
|
||||||
|
</head>
|
||||||
|
<body class="calibre">
|
||||||
|
<p id="filepos1016811" class="calibre_10"><sup class="calibre3"><small class="calibre4"><a href="index_split_018.html#filepos834345"><span class="calibre4">{35}</span></a></small></sup></p><p class="calibre_16"><span class="calibre6">金(king)是国王之意。——译注</span></p><div class="mbp_pagebreak" id="calibre_pb_54"></div>
|
||||||
|
</body></html>
|
||||||
11
examples/epub_format_1/index_split_055.html
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<title>最好的辩护</title>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||||
|
<link href="stylesheet.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<link href="page_styles.css" rel="stylesheet" type="text/css"/>
|
||||||
|
</head>
|
||||||
|
<body class="calibre">
|
||||||
|
<p id="filepos1017061" class="calibre_10"><sup class="calibre3"><small class="calibre4"><a href="index_split_018.html#filepos855136"><span class="calibre4">{36}</span></a></small></sup></p><p class="calibre_16"><span class="calibre6">在路奇的听证会上,包曼法官也注意到了莫维洛的坏脾气。</span></p><p class="calibre_16"><span class="calibre6">路奇:德萧维奇先生,罗伯•莫维洛跟你不一样,他从不坐着用这样安静的态度对我解释事倩……他总是激动得暴跳如雷。</span></p><p class="calibre_16"><span class="calibre6">法庭:任何常在这栋大楼进出的人都知道莫维洛的样子。</span></p><div class="mbp_pagebreak" id="calibre_pb_55"></div>
|
||||||
|
</body></html>
|
||||||
11
examples/epub_format_1/index_split_056.html
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<title>最好的辩护</title>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||||
|
<link href="stylesheet.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<link href="page_styles.css" rel="stylesheet" type="text/css"/>
|
||||||
|
</head>
|
||||||
|
<body class="calibre">
|
||||||
|
<p id="filepos1017719" class="calibre_10"><sup class="calibre3"><small class="calibre4"><a href="index_split_018.html#filepos859943"><span class="calibre4">{37}</span></a></small></sup></p><p class="calibre_16"><span class="calibre6">和萨格的关系就像在某些我可以想起来的老电影中的对话:</span></p><p class="calibre_16"><span class="calibre6">第一位律师:你难道不相信我吗?</span></p><p class="calibre_16"><span class="calibre6">第二位律师:当然。</span></p><p class="calibre_16"><span class="calibre6">第一位律师.•其实我也是。</span></p><div class="mbp_pagebreak" id="calibre_pb_56"></div>
|
||||||
|
</body></html>
|
||||||
11
examples/epub_format_1/index_split_057.html
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<title>最好的辩护</title>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||||
|
<link href="stylesheet.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<link href="page_styles.css" rel="stylesheet" type="text/css"/>
|
||||||
|
</head>
|
||||||
|
<body class="calibre">
|
||||||
|
<p id="filepos1018316" class="calibre_10"><sup class="calibre3"><small class="calibre4"><a href="index_split_019.html#filepos919149"><span class="calibre4">{38}</span></a></small></sup></p><p class="calibre_16"><span class="calibre6">亚伯斯坎案是联邦调查局备受争议的计划,准备打击美国政治的腐败。在调查期间(1978〜1980),探员乔装为阿拉伯酋长的代表。他们提供政府官员1 万到100万不等的贿赂。“亚伯斯坎”(ABSCAM)是由“阿拉伯”(Arab)和“诈骗”(scam)组合成的行动代号。共逮捕12名政府官员和国会代表。最后联邦法官推翻有罪判决,因为政府的设陷阱的手段“太过分”</span></p><div class="mbp_pagebreak" id="calibre_pb_57"></div>
|
||||||
|
</body></html>
|
||||||
11
examples/epub_format_1/index_split_058.html
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<title>最好的辩护</title>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||||
|
<link href="stylesheet.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<link href="page_styles.css" rel="stylesheet" type="text/css"/>
|
||||||
|
</head>
|
||||||
|
<body class="calibre">
|
||||||
|
<p id="filepos1018987" class="calibre_10"><sup class="calibre3"><small class="calibre4"><a href="index_split_019.html#filepos938304"><span class="calibre4">{39}</span></a></small></sup></p><p class="calibre_16"><span class="calibre6">帕特里西亚是美国报业大王威廉·赫斯特的孙女。兰道夫·赫斯特是她的父亲。——译注</span></p><div class="mbp_pagebreak" id="calibre_pb_58"></div>
|
||||||
|
</body></html>
|
||||||
11
examples/epub_format_1/index_split_059.html
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<title>最好的辩护</title>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||||
|
<link href="stylesheet.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<link href="page_styles.css" rel="stylesheet" type="text/css"/>
|
||||||
|
</head>
|
||||||
|
<body class="calibre">
|
||||||
|
<p id="filepos1019311" class="calibre_10"><sup class="calibre3"><small class="calibre4"><a href="index_split_019.html#filepos952012"><span class="calibre4">{40}</span></a></small></sup></p><p class="calibre_16"><span class="calibre6">恶名昭彰的李欧•法兰克案中,我们可以更清楚地看到律师所面对的两难困境。该案是关于被误控谋杀年轻女子的无辜犹太人,在佐治亚州的亚特兰大遭到群众处以私刑。亚特兰大律师界知名的律师亚瑟•鲍威尔在自传中说到,在那名犹太人遭到私刑前,他已经知道谁才是真正的凶手,但他无法透露这个消息,即便如此可以拯救法兰克的性命,但他已经答应保密。参考阿瑟•鲍威尔着《我又可以回家了》,北卡罗莱纳大学出版社,1943,p. 287〜292</span></p><div class="mbp_pagebreak" id="calibre_pb_59"></div>
|
||||||
|
</body></html>
|
||||||
11
examples/epub_format_1/index_split_060.html
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<title>最好的辩护</title>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||||
|
<link href="stylesheet.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<link href="page_styles.css" rel="stylesheet" type="text/css"/>
|
||||||
|
</head>
|
||||||
|
<body class="calibre">
|
||||||
|
<p id="filepos1020108" class="calibre_10"><sup class="calibre3"><small class="calibre4"><a href="index_split_019.html#filepos952531"><span class="calibre4">{41}</span></a></small></sup></p><p class="calibre_16"><span class="calibre6">劳森分给我赢了这场官司的“红利”是两张红袜队对洋基队的棒球赛。我在前面已经提过当我和我儿子拿票去看比赛时发生什么事了。</span></p><div class="mbp_pagebreak" id="calibre_pb_60"></div>
|
||||||
|
</body></html>
|
||||||
11
examples/epub_format_1/index_split_061.html
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<title>最好的辩护</title>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||||
|
<link href="stylesheet.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<link href="page_styles.css" rel="stylesheet" type="text/css"/>
|
||||||
|
</head>
|
||||||
|
<body class="calibre">
|
||||||
|
<p id="filepos1020494" class="calibre_10"><sup class="calibre3"><small class="calibre4"><a href="index_split_019.html#filepos955094"><span class="calibre4">{42}</span></a></small></sup></p><p class="calibre_16"><span class="calibre6">另一个处理毒品案的律师们经常碰到的问题是,帮助因贩毒而赚进大把钞票的委托人处理税的问题。这些毒贩不想因贩毒被抓,却想为自己赚的钱付税。退税时缴税人的名字是绝对不可以被透露的。他们也采用银行本票的方式来缴税。然而,却没有绝对让委托人完全不用冒着被控告贩毒的危险,或是任何万无一失的方法。</span></p><div class="mbp_pagebreak" id="calibre_pb_61"></div>
|
||||||
|
</body></html>
|
||||||
11
examples/epub_format_1/index_split_062.html
Normal file
12
examples/epub_format_1/index_split_111.html
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<title>寓所迷案</title>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||||
|
<link href="stylesheet.css" rel="stylesheet" type="text/css"/>
|
||||||
|
<link href="page_styles.css" rel="stylesheet" type="text/css"/>
|
||||||
|
</head>
|
||||||
|
<body class="calibre">
|
||||||
|
<p class="calibre8"> </p><p class="calibre_">如果你不知道读什么书,</p><p class="calibre_">就关注这个微信号。</p><p class="calibre_"><img src="images/1.jpg" class="calibre_20"/><br class="calibre9"/></p><p class="calibre_">公众号名称:幸福的味道</p><p class="calibre_">公众号ID:d716-716</p><p class="calibre8"> </p><p class="calibre_">小编:行行:微信号:491256034</p><p class="calibre_">为了方便书友朋友找书和看书,小编自己做了一个电子书
|
||||||
|
下载网站,网址:www.ireadweek.com QQ群:550338315 小编也和结交一些喜欢读书的朋友</p><p class="calibre_3">“幸福的味道”已提供120个不同类型的书单</p><p class="calibre8"> </p><p class="calibre_3">1、 25岁前一定要读的25本书</p><p class="calibre_3">2、 20世纪最优秀的100部中文小说</p><p class="calibre_3">3、 10部豆瓣高评分的温情治愈系小说</p><p class="calibre_3">4、 有生之年,你一定要看的25部外国纯文学名著</p><p class="calibre_3">5、 有生之年,你一定要看的20部中国现当代名著</p><p class="calibre_3">6、 美国亚马逊编辑推荐的一生必读书单100本</p><p class="calibre_3">7、 30个领域30本不容错过的入门书</p><p class="calibre_3">8、 这20本书,是各领域的巅峰之作</p><p class="calibre_3">9、 这7本书,教你如何高效读书</p><p class="calibre_3">10、 80万书虫力荐的“给五星都不够”的30本书</p><p class="calibre_3">……</p><p class="calibre8"> </p><p class="calibre_3">关注“幸福的味道”微信公众号,即可查看对应书单</p><p class="calibre8"> </p><p class="calibre_3">如果你不知道读什么书,就关注这个微信号。</p><div id="calibre_pb_18" class="mbp_pagebreak"></div>
|
||||||
|
</body></html>
|
||||||
1
examples/epub_format_1/mimetype
Normal file
@@ -0,0 +1 @@
|
|||||||
|
application/epub+zip
|
||||||
4
examples/epub_format_1/page_styles.css
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
@page {
|
||||||
|
margin-bottom: 5pt;
|
||||||
|
margin-top: 5pt
|
||||||
|
}
|
||||||
169
examples/epub_format_1/stylesheet.css
Normal file
@@ -0,0 +1,169 @@
|
|||||||
|
.bold {
|
||||||
|
font-weight: bold
|
||||||
|
}
|
||||||
|
.calibre {
|
||||||
|
display: block;
|
||||||
|
font-size: 1em;
|
||||||
|
line-height: 1.2;
|
||||||
|
padding-left: 0;
|
||||||
|
padding-right: 0;
|
||||||
|
text-align: justify;
|
||||||
|
margin: 0 5pt
|
||||||
|
}
|
||||||
|
.calibre_ {
|
||||||
|
display: block;
|
||||||
|
text-align: center;
|
||||||
|
text-indent: 0;
|
||||||
|
margin: 15pt 0 0
|
||||||
|
}
|
||||||
|
.calibre_1 {
|
||||||
|
display: block;
|
||||||
|
text-align: center;
|
||||||
|
text-indent: 0;
|
||||||
|
margin: 1em 0 0
|
||||||
|
}
|
||||||
|
.calibre_2 {
|
||||||
|
background-color: white
|
||||||
|
}
|
||||||
|
.calibre_3 {
|
||||||
|
display: block;
|
||||||
|
text-align: center;
|
||||||
|
text-indent: 0;
|
||||||
|
margin: 0
|
||||||
|
}
|
||||||
|
.calibre_4 {
|
||||||
|
display: block;
|
||||||
|
text-align: center;
|
||||||
|
text-indent: 0;
|
||||||
|
margin: 3em 0 0
|
||||||
|
}
|
||||||
|
.calibre_5 {
|
||||||
|
display: block;
|
||||||
|
text-align: justify;
|
||||||
|
text-indent: 2em;
|
||||||
|
margin: 3em 0 0
|
||||||
|
}
|
||||||
|
.calibre_6 {
|
||||||
|
display: block;
|
||||||
|
text-align: justify;
|
||||||
|
text-indent: 2em;
|
||||||
|
margin: 0
|
||||||
|
}
|
||||||
|
.calibre_7 {
|
||||||
|
display: block;
|
||||||
|
margin: 3em 0 0 2em
|
||||||
|
}
|
||||||
|
.calibre_8 {
|
||||||
|
display: block;
|
||||||
|
text-align: justify;
|
||||||
|
text-indent: 0;
|
||||||
|
margin: 0 0 0 2em
|
||||||
|
}
|
||||||
|
.calibre_9 {
|
||||||
|
display: block;
|
||||||
|
margin: 0 0 0 2em
|
||||||
|
}
|
||||||
|
.calibre_10 {
|
||||||
|
display: block;
|
||||||
|
text-align: justify;
|
||||||
|
text-indent: 0;
|
||||||
|
margin: 0
|
||||||
|
}
|
||||||
|
.calibre_11 {
|
||||||
|
display: block;
|
||||||
|
text-align: left;
|
||||||
|
text-indent: 0;
|
||||||
|
margin: 1em 0 0
|
||||||
|
}
|
||||||
|
.calibre_12 {
|
||||||
|
display: block;
|
||||||
|
text-align: justify;
|
||||||
|
text-indent: 2em;
|
||||||
|
margin: 1em 0 0
|
||||||
|
}
|
||||||
|
.calibre_13 {
|
||||||
|
display: block;
|
||||||
|
text-align: justify;
|
||||||
|
text-indent: 2em;
|
||||||
|
margin: 0 0 0 2em
|
||||||
|
}
|
||||||
|
.calibre_14 {
|
||||||
|
color: #000
|
||||||
|
}
|
||||||
|
.calibre_15 {
|
||||||
|
display: block;
|
||||||
|
text-align: right;
|
||||||
|
text-indent: 0;
|
||||||
|
margin: 0
|
||||||
|
}
|
||||||
|
.calibre_16 {
|
||||||
|
display: block;
|
||||||
|
text-align: left;
|
||||||
|
text-indent: 2em;
|
||||||
|
margin: 0
|
||||||
|
}
|
||||||
|
.calibre_17 {
|
||||||
|
display: block;
|
||||||
|
text-indent: -19pt;
|
||||||
|
margin: 1em 0 0 19pt
|
||||||
|
}
|
||||||
|
.calibre_18 {
|
||||||
|
display: block;
|
||||||
|
text-indent: -19pt;
|
||||||
|
margin: 0 0 0 19pt
|
||||||
|
}
|
||||||
|
.calibre_19 {
|
||||||
|
display: block;
|
||||||
|
text-indent: 0;
|
||||||
|
margin: 0 0 0 2em
|
||||||
|
}
|
||||||
|
.calibre_20 {
|
||||||
|
background-color: white;
|
||||||
|
height: auto;
|
||||||
|
width: auto
|
||||||
|
}
|
||||||
|
.calibre1 {
|
||||||
|
font-size: 1.125em;
|
||||||
|
line-height: 1.2
|
||||||
|
}
|
||||||
|
.calibre2 {
|
||||||
|
font-size: 1.25em;
|
||||||
|
line-height: 1.2
|
||||||
|
}
|
||||||
|
.calibre3 {
|
||||||
|
font-size: 0.75em;
|
||||||
|
line-height: 1.2;
|
||||||
|
vertical-align: super
|
||||||
|
}
|
||||||
|
.calibre4 {
|
||||||
|
font-size: 1em;
|
||||||
|
line-height: 1.2
|
||||||
|
}
|
||||||
|
.calibre5 {
|
||||||
|
font-size: 1em;
|
||||||
|
line-height: 1.2;
|
||||||
|
vertical-align: super
|
||||||
|
}
|
||||||
|
.calibre6 {
|
||||||
|
font-size: 0.75em
|
||||||
|
}
|
||||||
|
.calibre7 {
|
||||||
|
font-size: 1.375em;
|
||||||
|
line-height: 1.2
|
||||||
|
}
|
||||||
|
.calibre8 {
|
||||||
|
display: block;
|
||||||
|
font-size: 0.75em;
|
||||||
|
line-height: 1.2;
|
||||||
|
vertical-align: super;
|
||||||
|
margin: 1em 0
|
||||||
|
}
|
||||||
|
.calibre9 {
|
||||||
|
display: block;
|
||||||
|
font-size: 1.125em;
|
||||||
|
line-height: 1.2
|
||||||
|
}
|
||||||
|
.mbp_pagebreak {
|
||||||
|
display: block;
|
||||||
|
margin: 0
|
||||||
|
}
|
||||||
19
examples/epub_format_1/titlepage.xhtml
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
|
||||||
|
<meta name="calibre:cover" content="true"/>
|
||||||
|
<title>Cover</title>
|
||||||
|
<style type="text/css" title="override_css">
|
||||||
|
@page {padding: 0pt; margin:0pt}
|
||||||
|
body { text-align: center; padding:0pt; margin: 0pt; }
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div>
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="100%" height="100%" viewBox="0 0 619 910" preserveAspectRatio="none">
|
||||||
|
<image width="619" height="910" xlink:href="cover.jpeg"/>
|
||||||
|
</svg>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
933
examples/epub_format_1/toc.ncx
Normal file
@@ -0,0 +1,933 @@
|
|||||||
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
|
<ncx xmlns="http://www.daisy.org/z3986/2005/ncx/" version="2005-1" xml:lang="zho">
|
||||||
|
<head>
|
||||||
|
<meta content="48bb3d6c-275d-48e6-85e9-bf486694aac4" name="dtb:uid"/>
|
||||||
|
<meta content="3" name="dtb:depth"/>
|
||||||
|
<meta content="calibre (2.52.0)" name="dtb:generator"/>
|
||||||
|
<meta content="0" name="dtb:totalPageCount"/>
|
||||||
|
<meta content="0" name="dtb:maxPageNumber"/>
|
||||||
|
</head>
|
||||||
|
<docTitle>
|
||||||
|
<text>最好的辩护</text>
|
||||||
|
</docTitle>
|
||||||
|
<navMap>
|
||||||
|
<navPoint class="chapter" id="num_1" playOrder="1">
|
||||||
|
<navLabel>
|
||||||
|
<text>最好的辩护</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_000.html"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_2" playOrder="2">
|
||||||
|
<navLabel>
|
||||||
|
<text>图书在版编目(CIP)数据</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_001.html"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_3" playOrder="3">
|
||||||
|
<navLabel>
|
||||||
|
<text>谨以此书献给</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_002.html"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_4" playOrder="4">
|
||||||
|
<navLabel>
|
||||||
|
<text>作者简介</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_003.html"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_5" playOrder="5">
|
||||||
|
<navLabel>
|
||||||
|
<text>目录</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_004.html"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_6" playOrder="6">
|
||||||
|
<navLabel>
|
||||||
|
<text>作者记</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_005.html"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_7" playOrder="7">
|
||||||
|
<navLabel>
|
||||||
|
<text>导言</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_006.html"/>
|
||||||
|
<navPoint class="chapter" id="num_8" playOrder="8">
|
||||||
|
<navLabel>
|
||||||
|
<text>采取攻势</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_006.html#filepos33799"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_9" playOrder="9">
|
||||||
|
<navLabel>
|
||||||
|
<text>终审的律师</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_006.html#filepos36356"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_10" playOrder="10">
|
||||||
|
<navLabel>
|
||||||
|
<text>定罪与撤销判决</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_006.html#filepos38186"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_11" playOrder="11">
|
||||||
|
<navLabel>
|
||||||
|
<text>没有人想要正义</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_006.html#filepos39270"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_12" playOrder="12">
|
||||||
|
<navLabel>
|
||||||
|
<text>黑色的法袍,白色的谎言</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_006.html#filepos42344"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_13" playOrder="13">
|
||||||
|
<navLabel>
|
||||||
|
<text>粗糙的司法正义</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_006.html#filepos44049"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_14" playOrder="14">
|
||||||
|
<navLabel>
|
||||||
|
<text>“全部真相”</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_006.html#filepos46703"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_15" playOrder="15">
|
||||||
|
<navLabel>
|
||||||
|
<text>诈骗精英</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_006.html#filepos50991"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_16" playOrder="16">
|
||||||
|
<navLabel>
|
||||||
|
<text>司法的游戏规则</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_006.html#filepos52665"/>
|
||||||
|
</navPoint>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_17" playOrder="17">
|
||||||
|
<navLabel>
|
||||||
|
<text>第一部无罪推定</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_007.html"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_18" playOrder="18">
|
||||||
|
<navLabel>
|
||||||
|
<text>第一章波罗公园的故事</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_008.html"/>
|
||||||
|
<navPoint class="chapter" id="num_19" playOrder="19">
|
||||||
|
<navLabel>
|
||||||
|
<text>“嘶嘶”</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_008.html#filepos58557"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_20" playOrder="20">
|
||||||
|
<navLabel>
|
||||||
|
<text>攸关生死</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_008.html#filepos65094"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_21" playOrder="21">
|
||||||
|
<navLabel>
|
||||||
|
<text>在波罗公园长大的犹太人</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_008.html#filepos67384"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_22" playOrder="22">
|
||||||
|
<navLabel>
|
||||||
|
<text>你是自己人</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_008.html#filepos92602"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_23" playOrder="23">
|
||||||
|
<navLabel>
|
||||||
|
<text>法学院里学不到的东西</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_008.html#filepos96563"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_24" playOrder="24">
|
||||||
|
<navLabel>
|
||||||
|
<text>寻找告密者</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_008.html#filepos103681"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_25" playOrder="25">
|
||||||
|
<navLabel>
|
||||||
|
<text>席格的故事</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_008.html#filepos111672"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_26" playOrder="26">
|
||||||
|
<navLabel>
|
||||||
|
<text>录音带的故事</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_008.html#filepos129139"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_27" playOrder="27">
|
||||||
|
<navLabel>
|
||||||
|
<text>留下或离开</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_008.html#filepos151107"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_28" playOrder="28">
|
||||||
|
<navLabel>
|
||||||
|
<text>政府的秘密档案</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_008.html#filepos155234"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_29" playOrder="29">
|
||||||
|
<navLabel>
|
||||||
|
<text>席格的两难困境</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_008.html#filepos163107"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_30" playOrder="30">
|
||||||
|
<navLabel>
|
||||||
|
<text>主动攻击</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_008.html#filepos165321"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_31" playOrder="31">
|
||||||
|
<navLabel>
|
||||||
|
<text>窃听</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_008.html#filepos181332"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_32" playOrder="32">
|
||||||
|
<navLabel>
|
||||||
|
<text>“我必定是疯了”</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_008.html#filepos184066"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_33" playOrder="33">
|
||||||
|
<navLabel>
|
||||||
|
<text>诉讼的游击战</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_008.html#filepos186712"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_34" playOrder="34">
|
||||||
|
<navLabel>
|
||||||
|
<text>扭转局势</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_008.html#filepos212653"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_35" playOrder="35">
|
||||||
|
<navLabel>
|
||||||
|
<text>为自己的行为辩护</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_008.html#filepos220552"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_36" playOrder="36">
|
||||||
|
<navLabel>
|
||||||
|
<text>是窃听得到的录音</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_008.html#filepos227531"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_37" playOrder="37">
|
||||||
|
<navLabel>
|
||||||
|
<text>包曼法官的判决书</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_008.html#filepos231040"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_38" playOrder="38">
|
||||||
|
<navLabel>
|
||||||
|
<text>我并非故意妨碍司法</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_008.html#filepos236826"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_39" playOrder="39">
|
||||||
|
<navLabel>
|
||||||
|
<text>上诉法院</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_008.html#filepos244535"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_40" playOrder="40">
|
||||||
|
<navLabel>
|
||||||
|
<text>“你们知道今天谁不在法庭吗?”</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_008.html#filepos257219"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_41" playOrder="41">
|
||||||
|
<navLabel>
|
||||||
|
<text>靠线人办案的政府</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_008.html#filepos259341"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_42" playOrder="42">
|
||||||
|
<navLabel>
|
||||||
|
<text>尾声</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_008.html#filepos263894"/>
|
||||||
|
</navPoint>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_43" playOrder="43">
|
||||||
|
<navLabel>
|
||||||
|
<text>第二章人只会死一次</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_009.html"/>
|
||||||
|
<navPoint class="chapter" id="num_44" playOrder="44">
|
||||||
|
<navLabel>
|
||||||
|
<text>真实的尸体案件</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_009.html#filepos280150"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_45" playOrder="45">
|
||||||
|
<navLabel>
|
||||||
|
<text>梅尔的自白</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_009.html#filepos283751"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_46" playOrder="46">
|
||||||
|
<navLabel>
|
||||||
|
<text>专家证人的战争</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_009.html#filepos293108"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_47" playOrder="47">
|
||||||
|
<navLabel>
|
||||||
|
<text>作证或不作证?</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_009.html#filepos297572"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_48" playOrder="48">
|
||||||
|
<navLabel>
|
||||||
|
<text>“大辩论”</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_009.html#filepos300878"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_49" playOrder="49">
|
||||||
|
<navLabel>
|
||||||
|
<text>州法院上诉审</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_009.html#filepos305337"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_50" playOrder="50">
|
||||||
|
<navLabel>
|
||||||
|
<text>致命一击的争辩</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_009.html#filepos318184"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_51" playOrder="51">
|
||||||
|
<navLabel>
|
||||||
|
<text>挑选法官</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_009.html#filepos337330"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_52" playOrder="52">
|
||||||
|
<navLabel>
|
||||||
|
<text>学生的解决办法</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_009.html#filepos346518"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_53" playOrder="53">
|
||||||
|
<navLabel>
|
||||||
|
<text>上诉后的认罪协商</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_009.html#filepos352858"/>
|
||||||
|
</navPoint>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_54" playOrder="54">
|
||||||
|
<navLabel>
|
||||||
|
<text>第三章为纽约最卑劣的人辩护</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_010.html"/>
|
||||||
|
<navPoint class="chapter" id="num_55" playOrder="55">
|
||||||
|
<navLabel>
|
||||||
|
<text>连续攻击</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_010.html#filepos361689"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_56" playOrder="56">
|
||||||
|
<navLabel>
|
||||||
|
<text>几分钟之内你会接到一个电话</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_010.html#filepos368975"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_57" playOrder="57">
|
||||||
|
<navLabel>
|
||||||
|
<text>法律争点</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_010.html#filepos384307"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_58" playOrder="58">
|
||||||
|
<navLabel>
|
||||||
|
<text>什么是认罪协商?</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_010.html#filepos388572"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_59" playOrder="59">
|
||||||
|
<navLabel>
|
||||||
|
<text>为什么律师们参与协商</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_010.html#filepos393219"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_60" playOrder="60">
|
||||||
|
<navLabel>
|
||||||
|
<text>联邦判决</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_010.html#filepos403435"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_61" playOrder="61">
|
||||||
|
<navLabel>
|
||||||
|
<text>申请延期执行监禁</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_010.html#filepos408947"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_62" playOrder="62">
|
||||||
|
<navLabel>
|
||||||
|
<text>结语</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_010.html#filepos448516"/>
|
||||||
|
</navPoint>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_63" playOrder="63">
|
||||||
|
<navLabel>
|
||||||
|
<text>第二部妨碍秩序</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_011.html"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_64" playOrder="64">
|
||||||
|
<navLabel>
|
||||||
|
<text>第四章我的夏日假期</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_012.html"/>
|
||||||
|
<navPoint class="chapter" id="num_65" playOrder="65">
|
||||||
|
<navLabel>
|
||||||
|
<text>裸露臂膀的权利</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_012.html#filepos456461"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_66" playOrder="66">
|
||||||
|
<navLabel>
|
||||||
|
<text>取缔裸体的警卫队</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_012.html#filepos472047"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_67" playOrder="67">
|
||||||
|
<navLabel>
|
||||||
|
<text>“这不是道德问题……”</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_012.html#filepos475260"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_68" playOrder="68">
|
||||||
|
<navLabel>
|
||||||
|
<text>裸体的挑衅</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_012.html#filepos479657"/>
|
||||||
|
</navPoint>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_69" playOrder="69">
|
||||||
|
<navLabel>
|
||||||
|
<text>第五章解聘斯坦福大学教授</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_013.html"/>
|
||||||
|
<navPoint class="chapter" id="num_70" playOrder="70">
|
||||||
|
<navLabel>
|
||||||
|
<text>“这个坏透了的家伙……”</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_013.html#filepos488472"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_71" playOrder="71">
|
||||||
|
<navLabel>
|
||||||
|
<text>“这根本不是公民自由的案子”</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_013.html#filepos509331"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_72" playOrder="72">
|
||||||
|
<navLabel>
|
||||||
|
<text>“法兰克林时代结束了”</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_013.html#filepos521026"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_73" playOrder="73">
|
||||||
|
<navLabel>
|
||||||
|
<text>“斯坦福大学不会教这种课”</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_013.html#filepos524876"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_74" playOrder="74">
|
||||||
|
<navLabel>
|
||||||
|
<text>对中情局告密者的控告和逼问</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_013.html#filepos532629"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_75" playOrder="75">
|
||||||
|
<navLabel>
|
||||||
|
<text>“坚持自由的疲累”</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_013.html#filepos555452"/>
|
||||||
|
</navPoint>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_76" playOrder="76">
|
||||||
|
<navLabel>
|
||||||
|
<text>第六章苏联法院中的美国律师</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_014.html"/>
|
||||||
|
<navPoint class="chapter" id="num_77" playOrder="77">
|
||||||
|
<navLabel>
|
||||||
|
<text>苏联犹太法律辩护计划</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_014.html#filepos562313"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_78" playOrder="78">
|
||||||
|
<navLabel>
|
||||||
|
<text>“我们有一位经验丰富的飞行员”</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_014.html#filepos565573"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_79" playOrder="79">
|
||||||
|
<navLabel>
|
||||||
|
<text>“他们应该全被处死”</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_014.html#filepos575518"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_80" playOrder="80">
|
||||||
|
<navLabel>
|
||||||
|
<text>“分期付款的死刑”</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_014.html#filepos580462"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_81" playOrder="81">
|
||||||
|
<navLabel>
|
||||||
|
<text>“犹太复国主义的国际性阴谋”</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_014.html#filepos582444"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_82" playOrder="82">
|
||||||
|
<navLabel>
|
||||||
|
<text>“纳粹旅长”</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_014.html#filepos585753"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_83" playOrder="83">
|
||||||
|
<navLabel>
|
||||||
|
<text>夹带日记</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_014.html#filepos587753"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_84" playOrder="84">
|
||||||
|
<navLabel>
|
||||||
|
<text>"请记录下每件事,记录……"</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_014.html#filepos592105"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_85" playOrder="85">
|
||||||
|
<navLabel>
|
||||||
|
<text>“美国律师来到莫斯科”</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_014.html#filepos601470"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_86" playOrder="86">
|
||||||
|
<navLabel>
|
||||||
|
<text>“觉得他们就像兄弟姐妹”</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_014.html#filepos604329"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_87" playOrder="87">
|
||||||
|
<navLabel>
|
||||||
|
<text>释放希尔娃·莎曼莎</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_014.html#filepos607800"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_88" playOrder="88">
|
||||||
|
<navLabel>
|
||||||
|
<text>平卡索夫案</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_014.html#filepos611030"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_89" playOrder="89">
|
||||||
|
<navLabel>
|
||||||
|
<text>“国际性的秘密交易’’</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_014.html#filepos621219"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_90" playOrder="90">
|
||||||
|
<navLabel>
|
||||||
|
<text>“赫尔辛基监督协会”</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_014.html#filepos625790"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_91" playOrder="91">
|
||||||
|
<navLabel>
|
||||||
|
<text>“你愿意做我的小托里的律师吗”</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_014.html#filepos634733"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_92" playOrder="92">
|
||||||
|
<navLabel>
|
||||||
|
<text>“电视辩论”</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_014.html#filepos642087"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_93" playOrder="93">
|
||||||
|
<navLabel>
|
||||||
|
<text>“他说真话,而且他用英文说”</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_014.html#filepos651173"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_94" playOrder="94">
|
||||||
|
<navLabel>
|
||||||
|
<text>苏联指派一个辩护人给沙朗斯基</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_014.html#filepos654493"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_95" playOrder="95">
|
||||||
|
<navLabel>
|
||||||
|
<text>审判</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_014.html#filepos656472"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_96" playOrder="96">
|
||||||
|
<navLabel>
|
||||||
|
<text>“对法院我无话可说”</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_014.html#filepos661963"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_97" playOrder="97">
|
||||||
|
<navLabel>
|
||||||
|
<text>“无止境的等待”</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_014.html#filepos666905"/>
|
||||||
|
</navPoint>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_98" playOrder="98">
|
||||||
|
<navLabel>
|
||||||
|
<text>第七章改变判决的法官和芬威球场警察</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_015.html"/>
|
||||||
|
<navPoint class="chapter" id="num_99" playOrder="99">
|
||||||
|
<navLabel>
|
||||||
|
<text>“去对法官说”</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_015.html#filepos684970"/>
|
||||||
|
</navPoint>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_100" playOrder="100">
|
||||||
|
<navLabel>
|
||||||
|
<text>第八章父亲的罪</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_016.html"/>
|
||||||
|
<navPoint class="chapter" id="num_101" playOrder="101">
|
||||||
|
<navLabel>
|
||||||
|
<text>没有父亲的生活</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_016.html#filepos698889"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_102" playOrder="102">
|
||||||
|
<navLabel>
|
||||||
|
<text>越狱</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_016.html#filepos706518"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_103" playOrder="103">
|
||||||
|
<navLabel>
|
||||||
|
<text>沙漠中的谋杀事件</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_016.html#filepos711291"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_104" playOrder="104">
|
||||||
|
<navLabel>
|
||||||
|
<text>蜜月中的恋人</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_016.html#filepos716845"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_105" playOrder="105">
|
||||||
|
<navLabel>
|
||||||
|
<text>追捕</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_016.html#filepos718684"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_106" playOrder="106">
|
||||||
|
<navLabel>
|
||||||
|
<text>协商失败</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_016.html#filepos726344"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_107" playOrder="107">
|
||||||
|
<navLabel>
|
||||||
|
<text>审判谋杀案</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_016.html#filepos731005"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_108" playOrder="108">
|
||||||
|
<navLabel>
|
||||||
|
<text>惩罚</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_016.html#filepos735514"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_109" playOrder="109">
|
||||||
|
<navLabel>
|
||||||
|
<text>“野蛮粗暴,残忍无情”</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_016.html#filepos739568"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_110" playOrder="110">
|
||||||
|
<navLabel>
|
||||||
|
<text>到死囚牢房</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_016.html#filepos758889"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_111" playOrder="111">
|
||||||
|
<navLabel>
|
||||||
|
<text>言词辩论</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_016.html#filepos766949"/>
|
||||||
|
</navPoint>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_112" playOrder="112">
|
||||||
|
<navLabel>
|
||||||
|
<text>第三部打击不义</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_017.html"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_113" playOrder="113">
|
||||||
|
<navLabel>
|
||||||
|
<text>第九章环环相扣</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_018.html"/>
|
||||||
|
<navPoint class="chapter" id="num_114" playOrder="114">
|
||||||
|
<navLabel>
|
||||||
|
<text>赫南德兹和中央情报局的不在场证明</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_018.html#filepos778508"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_115" playOrder="115">
|
||||||
|
<navLabel>
|
||||||
|
<text>城市王子</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_018.html#filepos780073"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_116" playOrder="116">
|
||||||
|
<navLabel>
|
||||||
|
<text>制造罪行</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_018.html#filepos785009"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_117" playOrder="117">
|
||||||
|
<navLabel>
|
||||||
|
<text>巴克斯特街帮派分子</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_018.html#filepos788101"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_118" playOrder="118">
|
||||||
|
<navLabel>
|
||||||
|
<text>设计陷阱</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_018.html#filepos792538"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_119" playOrder="119">
|
||||||
|
<navLabel>
|
||||||
|
<text>收网</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_018.html#filepos795327"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_120" playOrder="120">
|
||||||
|
<navLabel>
|
||||||
|
<text>路奇的脱身</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_018.html#filepos801519"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_121" playOrder="121">
|
||||||
|
<navLabel>
|
||||||
|
<text>第二个圈套</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_018.html#filepos808909"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_122" playOrder="122">
|
||||||
|
<navLabel>
|
||||||
|
<text>路奇的罪行:政府到底知道什么</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_018.html#filepos811663"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_123" playOrder="123">
|
||||||
|
<navLabel>
|
||||||
|
<text>审判罗斯纳</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_018.html#filepos818023"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_124" playOrder="124">
|
||||||
|
<navLabel>
|
||||||
|
<text>政府的缄默</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_018.html#filepos820029"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_125" playOrder="125">
|
||||||
|
<navLabel>
|
||||||
|
<text>巴伦出场</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_018.html#filepos825082"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_126" playOrder="126">
|
||||||
|
<navLabel>
|
||||||
|
<text>判决</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_018.html#filepos830018"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_127" playOrder="127">
|
||||||
|
<navLabel>
|
||||||
|
<text>调査和上诉</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_018.html#filepos831792"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_128" playOrder="128">
|
||||||
|
<navLabel>
|
||||||
|
<text>国王对上王子</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_018.html#filepos834148"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_129" playOrder="129">
|
||||||
|
<navLabel>
|
||||||
|
<text>询问巴伦</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_018.html#filepos837246"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_130" playOrder="130">
|
||||||
|
<navLabel>
|
||||||
|
<text>巴伦与王子</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_018.html#filepos841300"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_131" playOrder="131">
|
||||||
|
<navLabel>
|
||||||
|
<text>揭穿娃娃脸的面具</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_018.html#filepos843557"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_132" playOrder="132">
|
||||||
|
<navLabel>
|
||||||
|
<text>腐败的渊薮</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_018.html#filepos848359"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_133" playOrder="133">
|
||||||
|
<navLabel>
|
||||||
|
<text>起诉检察官:罗伯·莫维洛</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_018.html#filepos856682"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_134" playOrder="134">
|
||||||
|
<navLabel>
|
||||||
|
<text>起诉检察官艾略特•萨格</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_018.html#filepos858810"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_135" playOrder="135">
|
||||||
|
<navLabel>
|
||||||
|
<text>“我们也可以在纽约宣读……”</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_018.html#filepos868341"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_136" playOrder="136">
|
||||||
|
<navLabel>
|
||||||
|
<text>对我的“审判”</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_018.html#filepos876585"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_137" playOrder="137">
|
||||||
|
<navLabel>
|
||||||
|
<text>是否要起诉路奇?</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_018.html#filepos879523"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_138" playOrder="138">
|
||||||
|
<navLabel>
|
||||||
|
<text>包曼法官最后的裁决</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_018.html#filepos881045"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_139" playOrder="139">
|
||||||
|
<navLabel>
|
||||||
|
<text>陪审团究竟会如何决定?</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_018.html#filepos883879"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_140" playOrder="140">
|
||||||
|
<navLabel>
|
||||||
|
<text>罗斯纳的二次宣判</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_018.html#filepos891005"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_141" playOrder="141">
|
||||||
|
<navLabel>
|
||||||
|
<text>再次上诉</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_018.html#filepos892620"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_142" playOrder="142">
|
||||||
|
<navLabel>
|
||||||
|
<text>后记</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_018.html#filepos899923"/>
|
||||||
|
</navPoint>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_143" playOrder="143">
|
||||||
|
<navLabel>
|
||||||
|
<text>第十章为辩护者辩护</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_019.html"/>
|
||||||
|
<navPoint class="chapter" id="num_144" playOrder="144">
|
||||||
|
<navLabel>
|
||||||
|
<text>与委托人上床的律师</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_019.html#filepos921270"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_145" playOrder="145">
|
||||||
|
<navLabel>
|
||||||
|
<text>爱出风头的律师</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_019.html#filepos938905"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_146" playOrder="146">
|
||||||
|
<navLabel>
|
||||||
|
<text>常业犯的家族刑事律师</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_019.html#filepos948402"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_147" playOrder="147">
|
||||||
|
<navLabel>
|
||||||
|
<text>披着辩护律师外衣的检察官</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_019.html#filepos957537"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_148" playOrder="148">
|
||||||
|
<navLabel>
|
||||||
|
<text>培瑞·梅森</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_019.html#filepos962507"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_149" playOrder="149">
|
||||||
|
<navLabel>
|
||||||
|
<text>正直的律师</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_019.html#filepos966521"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_150" playOrder="150">
|
||||||
|
<navLabel>
|
||||||
|
<text>重视诉讼事由高于委托人本身的律师</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_019.html#filepos969830"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_151" playOrder="151">
|
||||||
|
<navLabel>
|
||||||
|
<text>过度热心和缺乏热诚的辩护律师</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_019.html#filepos982402"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_152" playOrder="152">
|
||||||
|
<navLabel>
|
||||||
|
<text>最好与最糟的律师</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_019.html#filepos991712"/>
|
||||||
|
</navPoint>
|
||||||
|
<navPoint class="chapter" id="num_153" playOrder="153">
|
||||||
|
<navLabel>
|
||||||
|
<text>最后防线</text>
|
||||||
|
</navLabel>
|
||||||
|
<content src="index_split_019.html#filepos994354"/>
|
||||||
|
</navPoint>
|
||||||
|
</navPoint>
|
||||||
|
</navMap>
|
||||||
|
</ncx>
|
||||||
4
examples/epub_format_2/META-INF/calibre_bookmarks.txt
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
encoding=json+base64:
|
||||||
|
W3sicG9zIjogImVwdWJjZmkoLzIvMi80LzJANDkuODk6NDkuOTEpIiwgInBvc190eXBlIjogImVwdWJj
|
||||||
|
ZmkiLCAidGltZXN0YW1wIjogIjIwMjQtMDktMTJUMDA6NDk6MzQuMDk1MTI4KzAwOjAwIiwgInR5cGUi
|
||||||
|
OiAibGFzdC1yZWFkIn1d
|
||||||
6
examples/epub_format_2/META-INF/container.xml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<container version="1.0" xmlns="urn:oasis:names:tc:opendocument:xmlns:container">
|
||||||
|
<rootfiles>
|
||||||
|
<rootfile full-path="OEBPS/content.opf" media-type="application/oebps-package+xml"/>
|
||||||
|
</rootfiles>
|
||||||
|
</container>
|
||||||
BIN
examples/epub_format_2/OEBPS/Images/data-url-image.jpeg
Normal file
|
After Width: | Height: | Size: 80 KiB |
BIN
examples/epub_format_2/OEBPS/Images/data-url-image.png
Normal file
|
After Width: | Height: | Size: 108 KiB |
BIN
examples/epub_format_2/OEBPS/Images/data-url-image1.jpeg
Normal file
|
After Width: | Height: | Size: 8.4 KiB |
BIN
examples/epub_format_2/OEBPS/Images/data-url-image1.png
Normal file
|
After Width: | Height: | Size: 108 KiB |
BIN
examples/epub_format_2/OEBPS/Images/data-url-image2.jpeg
Normal file
|
After Width: | Height: | Size: 3.1 KiB |
BIN
examples/epub_format_2/OEBPS/Images/data-url-image2.png
Normal file
|
After Width: | Height: | Size: 108 KiB |
BIN
examples/epub_format_2/OEBPS/Images/data-url-image3.jpeg
Normal file
|
After Width: | Height: | Size: 21 KiB |
BIN
examples/epub_format_2/OEBPS/Images/data-url-image3.png
Normal file
|
After Width: | Height: | Size: 108 KiB |
BIN
examples/epub_format_2/OEBPS/Images/data-url-image4.jpeg
Normal file
|
After Width: | Height: | Size: 24 KiB |