Skip to content

Commit

Permalink
turn off using latex plotting
Browse files Browse the repository at this point in the history
  • Loading branch information
BoxiLi committed Nov 24, 2021
1 parent c905c6e commit 7b4ceee
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion doc/pulse-paper/customize.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
global_setup(fontsize=10)
except:
pass
plt.rcParams.update({"text.usetex": True, "font.size": 10})
plt.rcParams.update({"text.usetex": False, "font.size": 10})
from joblib import Parallel, delayed # for parallel simulations
import numpy as np
from qutip import sigmax, sigmay, sigmaz, basis, qeye, tensor, Qobj, fock_dm
Expand Down
2 changes: 1 addition & 1 deletion doc/pulse-paper/decoherence.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
global_setup(fontsize = 10)
except:
pass
plt.rcParams.update({"text.usetex": True, "font.size": 10})
plt.rcParams.update({"text.usetex": False, "font.size": 10})
import numpy as np
import scipy
from qutip import sigmaz, basis, sigmax, fidelity
Expand Down
2 changes: 1 addition & 1 deletion doc/pulse-paper/dj_algorithm.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
global_setup(fontsize = 10)
except:
pass
plt.rcParams.update({"text.usetex": True, "font.size": 10})
plt.rcParams.update({"text.usetex": False, "font.size": 10})

num_qubits = 3

Expand Down
2 changes: 1 addition & 1 deletion doc/pulse-paper/qft.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
global_setup(fontsize = 10)
except:
pass
plt.rcParams.update({"text.usetex": True, "font.size": 10})
plt.rcParams.update({"text.usetex": False, "font.size": 10})


import numpy as np
Expand Down

0 comments on commit 7b4ceee

Please sign in to comment.