Giter Site home page Giter Site logo

Comments (5)

gpoore avatar gpoore commented on August 28, 2024

There isn't a documented way to do this (yet), but you can use the internal macros to add a new option.

If your filter takes an argument, something like this in your preamble, after loading minted, should work. Then you can use kwrename as an option.

\makeatletter
\minted@define@opt{kwrename}{-F kwrenamefilter}{#1}
\makeatother

If your filter is just an on/off boolean, then something like this should work.

\makeatletter
\minted@define@switch{kwrename}{-F kwrenamefilter}
\makeatother

from minted.

brabalan avatar brabalan commented on August 28, 2024

I tried with this latex file (compiled with xelatex -shell-escape test.tex) and it does not work.

\documentclass[11pt]{article}
\usepackage{minted}
\usemintedstyle{emacs}
\makeatletter
\minted@define@switch{kwrename}{-F kwrenamefilter}
\makeatother

\begin{document}

This is a test of the filter.

\begin{minted}[kwrename]{coq}
Lemma foo : forall x, x -> x.
\end{minted}

\end{document}

I'm using the minted from texlive 2013. Is is recent enough?

from minted.

brabalan avatar brabalan commented on August 28, 2024

If you want to test, the filter is here: https://github.com/brabalan/kwrenamefilter

The output should be like this: "Lemma foo : ∀ x, x → x."

from minted.

gpoore avatar gpoore commented on August 28, 2024

Well, this turned out to be quite tricky. What I suggested would have worked in most cases, but it failed in this case because the substitution you were doing involved Unicode. You will need the latest version of minted.sty from GitHub (development version), because the version in TeX Live doesn't have encoding support. (If your operating system's native encoding is UTF8, things might work with your current version of minted.sty, but you would have to experiment.) You will also need to configure your document to work with the Unicode symbols you want. This preamble should work. You will need to adjust it for other symbols, or find a package that will define everything you want.

\usepackage{newunicodechar}
\newunicodechar{∀}{$\forall$}
\usepackage{minted}
\usemintedstyle{emacs}
\setminted{encoding=utf8}
\makeatletter
\minted@define@switch{kwrename}{-F kwrenamefilter}
\makeatother

By the way, pdflatex worked with this preamble:

\usepackage[T1]{fontenc}
\usepackage[utf8x]{inputenc}
\usepackage{minted}
\usemintedstyle{emacs}
\setminted{encoding=utf8}
\makeatletter
\minted@define@switch{kwrename}{-F kwrenamefilter}
\makeatother

from minted.

brabalan avatar brabalan commented on August 28, 2024

Thank you, this worked great.

from minted.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.