pylatex 中的子图太多,计数器太大

pylatex 中的子图太多,计数器太大

我正在尝试使用 创建一个包含超过 26 个子图的图形pylatex。我从其他帖子中了解到,例如计数器太长子图在普通 LaTeX 编辑器中修复此问题的方法是将以下内容附加到序言中:

\usepackage{alphalph}
\renewcommand\thesubfigure{\alphalph{\value{subfigure}}

但是,我不确定如何实现这样的修复,pylatex或者这是正确的解决方法。

我的代码目前如下:

from pylatex import Document, Section, Subsection, Figure, SubFigure, NoEscape, Command, Package
from pathlib import Path
if __name__ == '__main__':
    with doc.create(Section('Clustering results')):
        doc.append('These are all the images from the PPP-static run')
    # We need to iterate across the cluster_list 
    # Enumerate seems to be a convenient way of keeping count of iterations
        for cluster_number in cluster_list:
            # The first for loop goes through the total number of clusters e.g. 0-23
            # For each cluster number, define a figure
            with doc.create(Subsection('Cluster %s.' % cluster_number)):
                doc.append('These are the images in %s:' % cluster_number)

                with doc.create(Figure(position='htbp')) as fig:
                    for index, row in df_affinity.iterrows():
                        if cluster_number == row["Clustering Labels"]: 
                                print ("yay")
                                image_name= str(row["label"])
                                file_location = str("./pppstatic/PPP_Static_200_PX/")
                                image_location = file_location + image_name
                                img_path = Path(image_location)
                                with doc.create(SubFigure(position="htbp")) as pic:
                                    pic.add_image(image_location)
                                    pic.add_caption("%s." % image_name)
doc.generate_pdf(clean_tex=False)

相关内容