#!/usr/bin/env python # coding: utf-8 # # Duplicate structure headings (N1904LFT) # In[1]: get_ipython().run_line_magic('load_ext', 'autoreload') get_ipython().run_line_magic('autoreload', '2') # In[2]: # Loading the New Testament TextFabric code # Note: it is assumed Text-Fabric is installed in your environment. from tf.fabric import Fabric from tf.app import use # In[3]: # load the app and data N1904 = use ("tonyjurg/Nestle1904LFT", version="0.5", hoist=globals()) # In[4]: T.structureInfo() # In[5]: T.hdMult # Conclusion: no multiple headers. # In[ ]: