Giter VIP home page Giter VIP logo

Comments (1)

muzimuzhi avatar muzimuzhi commented on September 17, 2024

I got an error Command ttfamily invalid in math mode and the error pointed to one of the files generated by minted.

\mintinline will call \ttfamily internally (resulted of the default setting fontfamily=tt in fancyvrb package), which is a text font switching command hence is invalid in math mode. You can wrap the whole \mintinline in a amsmath \text command:

\documentclass{article}
\usepackage{amsmath}
\usepackage{minted}

\begin{document}
Foo $X_{bar}\text{\mintinline{C}{fun()}}$
\end{document}

so this is more of a comment than a question (😉), could we please have some sort of trivial flag we can throw at minted (like trace or location-debug or something?) which would make it try putting as accurate as possible location markers into the generated code?

Unfortunately, the error is thrown by LaTeX (when .pygtex is inputted), hence there's not many things the python layer of minted can do. Perhaps minted can check if it starts in math mode?

From another side, TeX does have some sort of file tracing, so a "smart" editor should be able to filter the corresponding file name from log file. And the log is also human readable:

(./_minted-texstudio_FcTlhz/69E6A439C52DDA41066D8EBAAE241E9E0F4BDC15A1675A8F5A8
07DB4E50454FC.pygtex

! LaTeX Error: Command \ttfamily invalid in math mode.

See the LaTeX manual or LaTeX Companion for explanation.
Type  H <return>  for immediate help.
 ...rn>  for immediate help\@err@                                              
                     
                                                                               
                     
l.3 \end{Verbatim}
                  
Please use the math alphabet \mathtt instead of the \ttfamily command. 

)
  • TeX writes (<file> when reading in a <file>, and writes a closing ) when <file> is finished processing (just an unofficial saying).
  • Thus any errors shown in (<file> ...) is thrown when processing <file>.

Update: My bad, this doesn't link .pygtex to the position of \mintinline in .tex.

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.