-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathjunk.py
More file actions
32 lines (30 loc) · 1.04 KB
/
junk.py
File metadata and controls
32 lines (30 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
ls = ['CF_KP_is_Lo_dists.png',
'CF_RF_KP_is_SG_and_Lo_dists.png',
'NF_KP_is_SG_dists.png',
'CF_KP_is_Lo_meanDists.png',
'CF_RF_KP_is_SG_and_Lo_meanDists.png',
'NF_KP_is_SG_meanDists.png',
'CF_KP_is_SG_and_Lo_dists.png',
'CF_RF_KP_is_SG_dists.png',
'RF_KP_is_Lo_dists.png',
'CF_KP_is_SG_and_Lo_meanDists.png',
'CF_RF_KP_is_SG_meanDists.png',
'RF_KP_is_Lo_meanDists.png',
'CF_KP_is_SG_dists.png',
'NF_KP_is_Lo_dists.png',
'RF_KP_is_SG_and_Lo_dists.png',
'CF_KP_is_SG_meanDists.png',
'NF_KP_is_Lo_meanDists.png',
'RF_KP_is_SG_and_Lo_meanDists.png',
'CF_RF_KP_is_Lo_dists.png',
'NF_KP_is_SG_and_Lo_dists.png',
'RF_KP_is_SG_dists.png',
'CF_RF_KP_is_Lo_meanDists.png',
'NF_KP_is_SG_and_Lo_meanDists.png',
'RF_KP_is_SG_meanDists.png']
ls.sort()
h=3.75
print()
for i in range(int(len(ls)/4)):
print(f'\centerline{{ \n\includegraphics[height={h}cm]{{images/{ls[i*2]}}} \n\includegraphics[height={h}cm]{{images/{ls[i*2+1]}}} \hspace{{5mm}} \n\includegraphics[height={h}cm]{{images/{ls[i*2+2]}}} \n\includegraphics[height={h}cm]{{images/{ls[i*2+3]}}} }}')
print()