使っています消しゴムDebian/Sid/Linux で (pdflatex
呼び出しを介して) LaTeX 文書を処理するためのプログラム (Python, Lauchpad) rubber -d
(文書は一部の H2020 欧州研究開発プロポーザルです)。私はこのパッケージのバージョン1.4-2を持っていますrubber
。
LaTeXドキュメントとそのディレクトリのバージョンを使用する子。
生成されたPDFファイルにそのIDを表示できるように、現在のgitコミットIDを提供するLaTeXコマンドが必要です。
端末で次のシェルコマンドを実行するとき:
printf '\\newcommand{\\cgitcommitid}{%s}\n' $(git log --format=oneline --abbrev=16 --abbrev-commit -q | cut '-d ' -f1 | head -1)
予想される結果は次のとおりです。
\newcommand{\cgitcommitid}{99ad2f058a5c06d8}
だからいくつかのケースでは生成したいと思います。cgit-gitcommitid.tex
作成済み文書。
次のファイルがありますcgit-rubber-rules.ini
。
; This is our extra rules cgit-rubber-rules.ini file for Rubber
; Rubber is a LaTeX driver in Python
; see https://launchpad.net/rubber
;; SVG figures produced by InkScape (see http://inkscape.org/ for more)
;; convert to PDF
[cgit-inkscape-svg-to-pdf]
target = (.*)\.pdf
source = \1.svg
cost = 4
rule = shell
command = inkscape --without-gui --export-pdf=$target $source
;; convert to EPS
[cgit-inkscape-svg-to-eps]
target = (.*)\.eps
source = \1.svg
cost = 4
rule = shell
command = inkscape --without-gui --export-eps=$target $source
[cgit-gitcommitid-make]
target = cgit-gitcommitid\.tex
;source = \.git
cost = 3
rule = shell
command = printf '\\newcommand{\\cgitcommitid}{%s}\n' $(git log --format=oneline --abbrev=16 --abbrev-commit -q | cut '-d ' -f1 | head -1) > cgit-gitcommitid.tex
私のcgitprop.tex
主要なLaTeXファイルは次のとおりです。
% file cgitprop.tex
\documentclass[11pt]{article}
\usepackage[utf8]{inputenc}
\usepackage{array}
\usepackage{geometry}
\usepackage[pdftex]{graphicx}
\usepackage[usenames,dvipsnames,svgnames]{xcolor}
\usepackage{svg}
\usepackage{ifpdf}
\usepackage{wasysym}
\usepackage{multirow}
\usepackage{hyperref}
\usepackage{float}
\usepackage{eurosym}
\usepackage{longtable}
\usepackage{fancyhdr}
\usepackage{relsize}
\usepackage{textcomp}
\usepackage{alltt}
\usepackage{marginnote}
% rubber: module pdftex
% rubber: module graphics
% rubber: rules cgit-rubber-rules.ini
% rubber: clean cgit-gitcommitid.tex
% rubber: make cgit-gitcommitid.tex with cgit-gitcommitid-make from .git
% rubber: watch cgit-gitcommitid.tex
\input{cgit-gitcommitid}
しかし、ファイルrubber -v -v -d cgitprop
を実行すると cgit-gitcommitid.tex
いいえ生成する:
rubber -v -v -d cgitprop
This is Rubber version 1.4.
[latex] directive: module pdftex
[latex] built-in module pdftex registered
[latex] parsing /ssdhome/basile/CGIT2017FET/cgitprop.tex
[latex] script module article registered
[latex] built-in module graphicx registered
[latex] directive: produce cgitprop.out cgitprop.brf
[latex] directive: watch cgitprop.out
[latex] script module hyperref registered
[latex] directive: module pdftex
[latex] directive: module graphics
[latex] built-in module graphics registered
[latex] directive: rules cgit-rubber-rules.ini
[latex] directive: clean cgit-gitcommitid.tex
[latex] directive: make cgit-gitcommitid.tex with cgit-gitcommitid-make from .git
[latex] directive: watch cgit-gitcommitid.tex
それから
[leaf] 'cgit-gitcommitid.tex' does not exist
私は何が間違っていましたか?なぜ正しく生成されないのですかcgit-gitcommitid.tex
?私のファイルからその行のコメントを削除すると;source = \.git
(最初のセミコロンを削除して)、cgit-rubber-rules.ini
何も変更されません。
それともDebianで情報(コミットID)を生成するために使用できるLaTeXパッケージを知っていますかgit
?