Code Monkey home page Code Monkey logo

Comments (6)

klmr avatar klmr commented on July 19, 2024

The font in the example is Microsoft’s Consolas. Regarding your other question, you need to provide more detail. How are you loading the droid font? What does “neither of them works” mean?

from minted.

yhylord avatar yhylord commented on July 19, 2024

OK.
I use \inputminted to input my source files.And I want to use Droid Sans Mono.So I tried:
\inputminted[fontfamily=droid]{c++}{my_source_file}and\inputminted[fontseries=droid]{c++}{my_source_file},but none of them worked.
I've added \usepackage{droid}in preamble.
And there's another problem.
If the length of some lines in the source file is too long, some code won't appear.
like:
ex_gcd_long
The full code is:

void gcd(const int a, const int b, int &x, int &y)
{
  if (!b) x = 1, y = 0; else gcd(b, a % b, y, x), y -= x * (a / b);
}

from minted.

klmr avatar klmr commented on July 19, 2024

You need to use the font family names provided by the package. The droid package states that the family name for the mono-spaced font is fdm. droid is not a defined family name, as far as I can see.

Regarding too long lines, see the documentation, section 7 (FAQ and Troubleshooting).

from minted.

yhylord avatar yhylord commented on July 19, 2024

I tried \inputminted[fontfamily=fdm]{c++}{my_source_file},and XeLaTeX said:

LaTeX Font Warning: Font shape `EU1/fdm/m/n' undefined
LaTeX Font Warning: Font shape `EU1/fdm/bx/n' undefined

from minted.

gpoore avatar gpoore commented on July 19, 2024

You probably don't want to use the fontfamily key, since by default it's only configured to work with a few fonts (tt, courier, helvetica; see fancyvrb documentation).

It looks like you're using XeTeX. In that case, something like this in your preamble should give you what you want for the entire document.

\usepackage{fontspec}
\setmonofont{Droid Sans Mono}

You will usually get font warnings when using Droid Sans Mono, because their isn't a bold version and minted uses bold in most highlighting styles. You can ignore the warnings; what should be bold simply becomes regular.

Long lines will run off the page by default. If you want auto line breaks, install the latest minted.sty from GitHub, and then use the breaklines option.

from minted.

yhylord avatar yhylord commented on July 19, 2024

Thanks you guys! Problem solved.

2014-08-17 1:42 GMT+08:00 Geoffrey Poore [email protected]:

You probably don't want to use the fontfamily key, since by default it's
only configured to work with a few fonts (tt, courier, helvetica; see
fancyvrb documentation).

It looks like you're using XeTeX. In that case, something like this in
your preamble should give you what you want for the entire document.

\usepackage{fontspec}\setmonofont{Droid Sans Mono}

You will usually get font warnings when using Droid Sans Mono, because
their isn't a bold version and minted uses bold in most highlighting
styles. You can ignore the warnings; what should be bold simply becomes
regular.

Long lines will run off the page by default. If you want auto line breaks,
install the latest minted.sty from GitHub, and then use the breaklines
option.


Reply to this email directly or view it on GitHub
#47 (comment).

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.