Skip to content

Commit b3c5e63

Browse files
committed
Python: Distinguish User and Verification Guide figures
1 parent 2064836 commit b3c5e63

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Utilities/Python/fdsplotlib.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2145,7 +2145,10 @@ def _safe_float(x):
21452145
for r in rows:
21462146

21472147
case = str(r[2])
2148-
section = f"\\ref{{{case}}}"
2148+
if str(r[13])[:14]=='FDS_User_Guide':
2149+
section = f"\\ref{{{'UG-'+case}}}"
2150+
else:
2151+
section = f"\\ref{{{case}}}"
21492152

21502153
# One row per datapoint; no splitting, no combining
21512154
exp_q = _escape(r[4])

0 commit comments

Comments
 (0)