Diferentes estilos cunhados para diferentes idiomas

Diferentes estilos cunhados para diferentes idiomas

Estou tentando adicionar dois trechos de código diferentes a um documento, um em Java e outro em ObjC. Consegui configurar os idiomas do jeito que gosto, mas gostaria de definir um estilo diferente dependendo do idioma que estou usando. De acordo com a documentação cunhada, o comando \usemintedstyle[<language>]{<style>}pode ser utilizado, mas continuo recebendo erros. Isso é o que tenho por enquanto:

\documentclass[]{article}
\usepackage{filecontents}   % for writing to the .m file from within this .tex file
\usepackage{minted}

%Get the nice font for the code
\usepackage[T1]{fontenc}
\usepackage[scaled=0.8]{beramono}


\newmintedfile[objectiveccode]{objectivec}{
numberblanklines=true,
numbersep=12pt,
numbersep=5pt,
gobble=0,
frame=lines,
framerule=0.4pt,
framesep=1mm,
tabsize=4,
obeytabs=true,
samepage=false, %with this setting you can force the list to appear on the same page
showspaces=false,
showtabs =false,
linenos,
stepnumber=2
}

\newmintedfile[javacode]{java}{
numberblanklines=true,
numbersep=12pt,
numbersep=5pt,
gobble=0,
frame=lines,
framerule=0.4pt,
framesep=1mm,
tabsize=4,
obeytabs=true,
samepage=false, %with this setting you can force the list to appear on the same page
showspaces=false,
showtabs =false,
linenos,
stepnumber=2
}

% ===== CAUSING PROBLEMS =====
\usemintedstyle[objectivec]{xcode}
\usemintedstyle[java]{emacs}

\begin{document}

Prova

\begin{filecontents*}{sampleObjCcode.m} 
#import <stdio.h>

int main( int argc, const char *argv[] ) {
    printf( "hello world\n" );
    return 0;
}
\end{filecontents*}

\begin{filecontents*}{sampleJava.java} 
public class HelloWorld {

    public static void main(String[] args) {
        System.out.println("Hello, World");
    }

}\end{filecontents*}


\objectiveccode{sampleObjCcode.m}
\javacode{sampleJava.java}

\end{document}

Alguma idéia de por que está falhando?

Responder1

Enquanto isso, esse recurso está integrado ao pacote de distribuição minted. Portanto, o \usemintedstyle by idioma funcionará e gerará o seguinte para o seu exemplo:

estilo por idioma

informação relacionada