Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/GAP/pkg/crime/gap/   (GAP Algebra Version 4.15.1©)  Datei vom 17.2.2022 mit Größe 983 B image not shown  

Quelle  print.pl

  Sprache: Shell
 

#!/usr/bin/perl
# This program prints all the source code to 
# a pretty tex file which could be comfortably
# read on the sofa, for example.

# The files in logical order.
my @files=qw(helpers.gi action.gi
lift.gi augmentation.gi radical.gi
resolution.gi comments generators.gi
relations.gi table.gi ring.gi induced.gi
degree.gi locate.gi massey.gi);

open PRINT,">print.tex" or die "Cant open print.tex for writing: $!";
print PRINT '\documentclass{article}\usepackage{vmargin,palatino}',"\n";
print PRINT '\setmarginsrb{2cm}{2cm}{2cm}{2cm}{0cm}{0cm}{0cm}{0cm}',"\n";
print PRINT '\begin{document}',"\n";
foreach my $file (@files){
  open LINE, $file or die "Cant open $file for reading: $!";
  print PRINT "\\section\{$file\}\n\\begin\{verbatim\}";
  foreach (<LINE>){
    print PRINT;
    # Or use the following line to remove the comments.
    # print PRINT unless /^\s*\#/;
  }
  print PRINT "\\end\{verbatim\}\n\n";
close FILE;
}
print PRINT "\\end\{document\}";
close PRINT;

Messung V0.5 in Prozent
C=100 H=100 G=100

¤ Dauer der Verarbeitung: 0.13 Sekunden  (vorverarbeitet am  2026-06-18) ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

PVS Prover

Isabelle Prover

NIST Cobol Testsuite

Cephes Mathematical Library

Vienna Development Method

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.