#! /usr/bin/python3 import sys, re import html_gen as h from process_funcs import bash import html_report_funcs as hr last_edit = "Last edited on 2025-11-22 02:46:08 by stolfi" def main(): global last_edit title = "Page f1v - Herbal A - \"Belladonna\"" st = h.new_doc(title, "#eeffdd") h.section(st, 2, "Restorations") h.parags(st, """Most of the text on this page was retraced once (round Rt1) and then some glyphs were retraced again (round Rt2). Only a few of the original (Rt0) strokes survive, mostly in tails and plumes. The @p gallows that starts the second parag may be Rt0. There is a large stain covering the whole left margin and most of the bottom margin, due to the chemicals rubbed on f1r. The stain included a few glyphs at the beginning of every line, and the entire root of the plant. However the ink in those areas does not seem to have been affected. There are no obvious signs of restoration on the plant. However the ink is dark and the strokes are broad matching the Rt2 traces of the text. The original Rt0 traces on the figure maybe survive only on a lance-shaped nervue inside the W petal/sepal of the flower, and maybe in an almost invisible copy insisde the central petal/sepal. The frontmost lobes of the root look like a mixture of Rt1 and Rt2, while the third lobe in the background may be a creation by the Rt2 Retracer. The root and leaves of the f1v plant are virtualy identical to f102r1[3,2], the plant in the southwest corner of Pharma f102r1, shown above, except that the latter has no flower or fruit, its leaves have longer stalks, and the auriculae at the base of its leaves are farther apart.""") ex1_img = "lines-6-10-end/annotated.png" ex1_doc = "lines-6-10-end/clip.html" ex1_caption="Selected examples of retracing
(click on image for legend)" hr.basic_figure(st, ex1_img, ex1_caption, ex1_doc) h.section(st, 2, "All clips") h.parags(st, """The following annotated clips show additional examples of retracing:""") hr.links_section(st) h.output_doc(st, sys.stdout, 99, last_edit) return 0 # ---------------------------------------------------------------------- main()