diff --git a/latex/CHANGELOG_MINTED_LATEX_PACKAGE.md b/latex/CHANGELOG_MINTED_LATEX_PACKAGE.md index 3ec7fc3..807be72 100644 --- a/latex/CHANGELOG_MINTED_LATEX_PACKAGE.md +++ b/latex/CHANGELOG_MINTED_LATEX_PACKAGE.md @@ -14,6 +14,8 @@ executable has been added to TeX Live's list of trusted executables, so `-shell-escape` is no longer required. +* Added support for `fancyvrb` options `reflabel` and `vspace` (#421). + ## v3.2.0 (2024/10/29) diff --git a/latex/minted/minted.dtx b/latex/minted/minted.dtx index e0b5715..9941f15 100644 --- a/latex/minted/minted.dtx +++ b/latex/minted/minted.dtx @@ -27,7 +27,7 @@ %\NeedsTeXFormat{LaTeX2e} %\ProvidesPackage{minted} %<*package> - [2024/11/10 v3.3.0dev2 Yet another Pygments shim for LaTeX] + [2024/11/10 v3.3.0dev3 Yet another Pygments shim for LaTeX] % %<*driver> \documentclass{ltxdoc} @@ -1412,6 +1412,10 @@ % If line numbers are displayed, they are based on the range of code that is selected; code that is discarded in selecting the range is not considered in calculating line numbers. % % +% \item[reflabel (string) (\meta{none})] +% \texpkg{fancyvrb} option for creating a label that can be used with |\pageref|. +% +% % \item[resetmargins (boolean) (false)] % Resets the left margin inside other environments. % \item[rulecolor (color command) (black)] @@ -1475,6 +1479,12 @@ % \item[texcl (boolean) (false)] % Enables \LaTeX{} code inside comments. % Usage as in package \texpkg{listings}. See the note under \texttt{escapeinside} regarding math and ligatures. +% +% +% \item[vspace (dimension) (\string\topsep)] +% \texpkg{fancyvrb} option for setting the value of the usual vertical list space. +% +% % \item[texcomments (boolean) (false)] % Enables \LaTeX{} code inside comments. The newer name for |texcl|. See the note under |escapeinside| regarding math and ligatures. % @@ -3178,6 +3188,7 @@ numbers, numbersep, obeytabs, + reflabel, resetmargins, rulecolor, samepage, @@ -3191,6 +3202,7 @@ tab, tabcolor=black, tabsize, + vspace, xleftmargin, xrightmargin, } diff --git a/latex/minted/minted.sty b/latex/minted/minted.sty index 8ea57a3..b7ac271 100644 --- a/latex/minted/minted.sty +++ b/latex/minted/minted.sty @@ -26,7 +26,7 @@ %% \NeedsTeXFormat{LaTeX2e} \ProvidesPackage{minted} - [2024/11/07 v3.3.0dev1 Yet another Pygments shim for LaTeX] + [2024/11/10 v3.3.0dev3 Yet another Pygments shim for LaTeX] \RequirePackage{catchfile} \RequirePackage{etoolbox} \RequirePackage{fvextra}[2024/10/16] @@ -968,6 +968,7 @@ numbers, numbersep, obeytabs, + reflabel, resetmargins, rulecolor, samepage, @@ -981,6 +982,7 @@ tab, tabcolor=black, tabsize, + vspace, xleftmargin, xrightmargin, }