Skip to content

Commit 58da6e8

Browse files
authored
Merge pull request #15579 from mcgratta/master
Python: Distinguish User and Verification Guide figures
2 parents 2064836 + b3c5e63 commit 58da6e8

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)