def _generate_latex_source(circuit, filename=None, basis="id,u0,u1,u2,u3,x,y,z,h,s,sdg,t,tdg,rx,ry,rz," "cx,cy,cz,ch,crz,cu1,cu3,swap,ccx,cswap", scale=0.7, style=None, reverse_bits=False, plot_barriers=True): """Convert QuantumCircuit to LaTeX string. Args: circuit (QuantumCircuit): input circuit scale (float): image scaling filename (str): optional filename to write latex basis (str): optional comma-separated list of gate names style (dict or str): dictionary of style or file name of style file reverse_bits (bool): When set to True reverse the bit order inside registers for the output visualization. plot_barriers (bool): Enable/disable drawing barriers in the output circuit. Defaults to True. Returns: str: Latex string appropriate for writing to file. """ dag_circuit = DAGCircuit.fromQuantumCircuit(circuit, expand_gates=False) json_circuit = transpile_dag(dag_circuit, basis_gates=basis, format='json') qcimg = _latex.QCircuitImage(json_circuit, scale, style=style, plot_barriers=plot_barriers, reverse_bits=reverse_bits) latex = qcimg.latex() if filename: with open(filename, 'w') as latex_file: latex_file.write(latex) return latex
def _generate_latex_source(circuit, filename=None, scale=0.7, style=None, reverse_bits=False, plot_barriers=True): """Convert QuantumCircuit to LaTeX string. Args: circuit (QuantumCircuit): input circuit scale (float): image scaling filename (str): optional filename to write latex style (dict or str): dictionary of style or file name of style file reverse_bits (bool): When set to True reverse the bit order inside registers for the output visualization. plot_barriers (bool): Enable/disable drawing barriers in the output circuit. Defaults to True. Returns: str: Latex string appropriate for writing to file. """ qregs, cregs, ops = _utils._get_instructions(circuit, reversebits=reverse_bits) qcimg = _latex.QCircuitImage(qregs, cregs, ops, scale, style=style, plot_barriers=plot_barriers, reverse_bits=reverse_bits) latex = qcimg.latex() if filename: with open(filename, 'w') as latex_file: latex_file.write(latex) return latex
def _generate_latex_source(circuit, filename=None, basis="id,u0,u1,u2,u3,x,y,z,h,s,sdg,t,tdg,rx,ry,rz," "cx,cy,cz,ch,crz,cu1,cu3,swap,ccx,cswap", scale=0.7, style=None): """Convert QuantumCircuit to LaTeX string. Args: circuit (QuantumCircuit): input circuit scale (float): image scaling filename (str): optional filename to write latex basis (str): optional comma-separated list of gate names style (dict or str): dictionary of style or file name of style file Returns: str: Latex string appropriate for writing to file. """ dag_circuit = DAGCircuit.fromQuantumCircuit(circuit, expand_gates=False) json_circuit = transpile_dag(dag_circuit, basis_gates=basis, format='json') qcimg = _latex.QCircuitImage(json_circuit, scale, style=style) latex = qcimg.latex() if filename: with open(filename, 'w') as latex_file: latex_file.write(latex) return latex