使用 minted 和 -shell-escape 包时,Texmaker 中的序列未定义

使用 minted 和 -shell-escape 包时,Texmaker 中的序列未定义

我在使用 Texmaker 上的软件包时遇到了一些问题,minted我在 tex.stackexchange 上的一个答案中看到,下载 TeXStudio 可能更好,但事实并非如此。我听说这是关于-shell-escapein 的问题Option> Configure Texmaker> LatexOption> Configure Texmaker> PdfLaTex所以我添加了它们,现在我遇到了未定义序列错误。

以下是一些截图:

  • 未定义序列错误

在此处输入图片描述

  • Option> Configure Texmaker修改

在此处输入图片描述

以下是最简洁的代码:

\documentclass[a4paper]{article}

%% Language and font encodings
\usepackage[english]{babel}
\usepackage[utf8x]{inputenc}
\usepackage[T1]{fontenc}

%% Sets page size and margins
\usepackage[a4paper,top=3cm,bottom=2cm,left=3cm,right=3cm,marginparwidth=1.75cm]{geometry}

%% Useful packages
\usepackage{amsmath}
\usepackage{graphicx}
\usepackage[colorinlistoftodos]{todonotes}
\usepackage[colorlinks=true, allcolors=blue]{hyperref}
\usepackage{algorithm}
\usepackage{algorithmic}
\usepackage{minted}

\title{Your Paper}
\author{You}

\begin{document}
\begin{minted}{SQL}
params = {
      'database': 'la base de donnee',
      'user': 'utilisateur',
      'password': 'mot de passe',
      'host': 'souvent c'est amazon AWS',
      'port': 'le bon port'
    }

    try:
        conn = psycopg2.connect(**params)
        cur = conn.cursor()

        cur.execute("""--- requete SQL
        SELECT ...""")
\end{minted}
\end{document}

你能帮助我解决这个问题吗?我喜欢 Texmaker,我该如何删除 TeXStudio?

相关内容