mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-21 17:51:03 +00:00
Compare commits
2 Commits
a852ac5889
...
271d4397bb
Author | SHA1 | Date | |
---|---|---|---|
|
271d4397bb | ||
|
6e7a795ed1 |
@ -61,7 +61,8 @@ sub check_http_url($$$$) {
|
||||
print $fe " " . $response->status_line . ": ";
|
||||
return 3;
|
||||
}
|
||||
my @title = ();
|
||||
my @atitle = ();
|
||||
my %htitle = ();
|
||||
my $res = 0;
|
||||
while ($buf =~ s/\<title\>([^\<]*)\<\/title\>//i) {
|
||||
my $title = $1;
|
||||
@ -69,13 +70,17 @@ sub check_http_url($$$$) {
|
||||
$title =~ s/ +/ /g;
|
||||
$title =~ s/^ //;
|
||||
$title =~ s/ $//;
|
||||
push(@title, $title);
|
||||
print $fe "title = \"$title\": ";
|
||||
if (! defined($htitle{$title})) {
|
||||
push(@atitle, $title);
|
||||
$htitle{$title} = 1;
|
||||
}
|
||||
if ($title =~ /Error 404|Not Found/) {
|
||||
print $fe " Page reports 'Not Found' from \"$protocol://$host$getp\": ";
|
||||
$res = 3;
|
||||
}
|
||||
}
|
||||
|
||||
print $fe "title = \"" . join(': ', @atitle) . "\": ";
|
||||
return $res;
|
||||
}
|
||||
|
||||
|
@ -161,13 +161,17 @@ else {
|
||||
|
||||
print "Using tempdir \"" . abs_path($tempdir) . "\"\n";
|
||||
|
||||
my @wait = ();
|
||||
my %wait = ();
|
||||
for (my $i = 0; $i < $NR_JOBS; $i++) { # Number of subprocesses
|
||||
my $pid = fork();
|
||||
if ($pid == 0) {
|
||||
if ($pid > 0) {
|
||||
$wait{$pid} = $i;
|
||||
}
|
||||
elsif ($pid == 0) {
|
||||
|
||||
# I am child
|
||||
open(my $fe, '>:encoding(UTF-8)', "$tempdir/xxxError$i");
|
||||
my $subprocess = $i;
|
||||
open(my $fs, '>:encoding(UTF-8)', "$tempdir/xxxSum$i");
|
||||
while (1) {
|
||||
open(my $fh, '+<', $countfile) or die("cannot open $countfile");
|
||||
@ -195,7 +199,7 @@ for (my $i = 0; $i < $NR_JOBS; $i++) { # Number of subprocesses
|
||||
my $u = $rentry->{u};
|
||||
my $use_curl = $rentry->{use_curl};
|
||||
|
||||
print $fe "Checking($entryidx) '$u': ";
|
||||
print $fe "Checking($entryidx-$subprocess) '$u': ";
|
||||
my ($res, $prnt, $outSum);
|
||||
try {
|
||||
$res = check_url($u, $use_curl, $fe, $fs);
|
||||
@ -246,13 +250,10 @@ for (my $i = 0; $i < $NR_JOBS; $i++) { # Number of subprocesses
|
||||
}
|
||||
}
|
||||
}
|
||||
$wait[$i] = $pid;
|
||||
}
|
||||
|
||||
for (my $i = 0; $i < $NR_JOBS; $i++) {
|
||||
my $p = $wait[$i];
|
||||
if ($p > 0) {
|
||||
waitpid($p, 0);
|
||||
sub readsublog($) {
|
||||
my ($i) = @_;
|
||||
open(my $fe, '<', "$tempdir/xxxError$i");
|
||||
while (my $l = <$fe>) {
|
||||
if ($l =~ /^NumberOfErrors\s(\d+)/) {
|
||||
@ -269,7 +270,25 @@ for (my $i = 0; $i < $NR_JOBS; $i++) {
|
||||
}
|
||||
close($fs);
|
||||
}
|
||||
|
||||
my $p;
|
||||
do {
|
||||
$p = waitpid(-1, 0);
|
||||
if (($p > 0) && defined($wait{$p}) && $wait{$p} >= 0) {
|
||||
&readsublog($wait{$p});
|
||||
$wait{$p} = -1;
|
||||
}
|
||||
}
|
||||
until ($p < 0);
|
||||
print SFO "Started to protocol remaining subprocess-logs\n";
|
||||
|
||||
for my $p (keys %wait) {
|
||||
if ($wait{$p} >= 0) {
|
||||
&readsublog($wait{$p});
|
||||
$wait{$p} = -1;
|
||||
}
|
||||
}
|
||||
print SFO "Stopped to protocol remaining subprocess-logs\n";
|
||||
unlink($countfile);
|
||||
|
||||
if (%URLS) {
|
||||
@ -348,7 +367,8 @@ sub parse_file($) {
|
||||
my $line = 0;
|
||||
while (my $l = <FI>) {
|
||||
$line++;
|
||||
$l =~ s/[\r\n]+$//; # Simulate chomp
|
||||
chomp($l);
|
||||
# $l =~ s/[\r\n]+$//; # Simulate chomp
|
||||
if ($status eq "out") {
|
||||
|
||||
# searching for "\begin_inset Flex URL"
|
||||
@ -413,6 +433,6 @@ sub getnrjobs($$$) {
|
||||
if ($nr_jobs < 2) {
|
||||
return ($remaining);
|
||||
}
|
||||
my $diff = 1 + int($remaining / (2 * $nr_jobs));
|
||||
my $diff = 1 + int($remaining / (3 * $nr_jobs));
|
||||
return $diff;
|
||||
}
|
||||
|
@ -10358,7 +10358,7 @@ Powerdot
|
||||
\begin_inset CommandInset href
|
||||
LatexCommand href
|
||||
name "CTAN"
|
||||
target "http://mirrors.ctan.org/macros/latex/contrib/powerdot/doc/powerdot.pdf"
|
||||
target "https://mirrors.ctan.org/macros/latex/contrib/powerdot/doc/powerdot.pdf"
|
||||
literal "false"
|
||||
|
||||
\end_inset
|
||||
|
@ -49878,7 +49878,7 @@ Documentation of the \SpecialChar LaTeX
|
||||
\begin_inset CommandInset href
|
||||
LatexCommand href
|
||||
name "pdfpages"
|
||||
target "https://www.ctan.org/tex-archive/macros/latex/contrib/pdfpages/pdfpages.pdf"
|
||||
target "https://mirrors.ctan.org/macros/latex/contrib/pdfpages/pdfpages.pdf"
|
||||
literal "false"
|
||||
|
||||
\end_inset
|
||||
|
@ -491,7 +491,7 @@ AmS
|
||||
\begin_inset CommandInset href
|
||||
LatexCommand href
|
||||
name "amsguide.pdf"
|
||||
target "https://www.ctan.org/tex-archive/macros/amstex/doc/amsguide.pdf"
|
||||
target "https://mirrors.ctan.org/macros/amstex/doc/amsguide.pdf"
|
||||
literal "false"
|
||||
|
||||
\end_inset
|
||||
@ -42561,7 +42561,7 @@ literal "true"
|
||||
\begin_inset CommandInset href
|
||||
LatexCommand href
|
||||
name "Documentation"
|
||||
target "https://www.ctan.org/tex-archive/macros/latex/contrib/mhchem/mhchem.pdf"
|
||||
target "https://mirrors.ctan.org/macros/latex/contrib/mhchem/mhchem.pdf"
|
||||
literal "false"
|
||||
|
||||
\end_inset
|
||||
|
@ -58142,7 +58142,7 @@ literal "true"
|
||||
\begin_inset CommandInset href
|
||||
LatexCommand href
|
||||
name "Documentation"
|
||||
target "https://www.ctan.org/tex-archive/biblio/bibtex/contrib/doc/btxdoc.pdf"
|
||||
target "https://mirrors.ctan.org/biblio/bibtex/contrib/doc/btxdoc.pdf"
|
||||
literal "false"
|
||||
|
||||
\end_inset
|
||||
@ -58162,7 +58162,7 @@ status collapsed
|
||||
|
||||
\begin_layout Plain Layout
|
||||
|
||||
https://www.ctan.org/tex-archive/biblio/bibtex/contrib/doc/btxdoc.pdf
|
||||
https://mirrors.ctan.org/biblio/bibtex/contrib/doc/btxdoc.pdf
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
@ -58348,7 +58348,7 @@ literal "true"
|
||||
\begin_inset CommandInset href
|
||||
LatexCommand href
|
||||
name "Documentation"
|
||||
target "https://www.ctan.org/tex-archive/indexing/makeindex/doc/makeindex.pdf"
|
||||
target "https://mirrors.ctan.org/indexing/makeindex/doc/makeindex.pdf"
|
||||
literal "false"
|
||||
|
||||
\end_inset
|
||||
@ -58367,7 +58367,7 @@ status collapsed
|
||||
|
||||
\begin_layout Plain Layout
|
||||
|
||||
https://www.ctan.org/tex-archive/indexing/makeindex/doc/makeindex.pdf
|
||||
https://mirrors.ctan.org/indexing/makeindex/doc/makeindex.pdf
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
@ -58387,7 +58387,7 @@ literal "true"
|
||||
\begin_inset CommandInset href
|
||||
LatexCommand href
|
||||
name "Options"
|
||||
target "https://www.ctan.org/tex-archive/indexing/makeindex/doc/manpages.dvi"
|
||||
target "https://mirrors.ctan.org/indexing/makeindex/doc/manpages.dvi"
|
||||
literal "false"
|
||||
|
||||
\end_inset
|
||||
@ -58406,7 +58406,7 @@ status collapsed
|
||||
|
||||
\begin_layout Plain Layout
|
||||
|
||||
https://www.ctan.org/tex-archive/indexing/makeindex/doc/manpages.dvi
|
||||
https://mirrors.ctan.org/indexing/makeindex/doc/manpages.dvi
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
@ -58666,7 +58666,7 @@ literal "true"
|
||||
\begin_inset CommandInset href
|
||||
LatexCommand href
|
||||
name "Documentation"
|
||||
target "https://www.ctan.org/tex-archive/macros/latex/contrib/fancyhdr/fancyhdr.pdf"
|
||||
target "https://mirrors.ctan.org/macros/latex/contrib/fancyhdr/fancyhdr.pdf"
|
||||
literal "false"
|
||||
|
||||
\end_inset
|
||||
@ -58709,7 +58709,7 @@ status collapsed
|
||||
|
||||
\begin_layout Plain Layout
|
||||
|
||||
https://www.ctan.org/tex-archive/macros/latex/contrib/fancyhdr/fancyhdr.pdf
|
||||
https://mirrors.ctan.org/macros/latex/contrib/fancyhdr/fancyhdr.pdf
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
@ -54327,7 +54327,7 @@ literal "true"
|
||||
\begin_inset CommandInset href
|
||||
LatexCommand href
|
||||
name "وثيقة عن"
|
||||
target "https://www.ctan.org/tex-archive/biblio/bibtex/contrib/doc/btxdoc.pdf"
|
||||
target "https://mirrors.ctan.org/biblio/bibtex/contrib/doc/btxdoc.pdf"
|
||||
literal "false"
|
||||
|
||||
\end_inset
|
||||
@ -54347,7 +54347,7 @@ status collapsed
|
||||
|
||||
\begin_layout Plain Layout
|
||||
|
||||
https://www.ctan.org/tex-archive/biblio/bibtex/contrib/doc/btxdoc.pdf
|
||||
https://mirrors.ctan.org/biblio/bibtex/contrib/doc/btxdoc.pdf
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
@ -54512,7 +54512,7 @@ literal "true"
|
||||
\begin_inset CommandInset href
|
||||
LatexCommand href
|
||||
name "وثيقة"
|
||||
target "https://www.ctan.org/tex-archive/indexing/makeindex/doc/makeindex.pdf"
|
||||
target "https://mirrors.ctan.org/indexing/makeindex/doc/makeindex.pdf"
|
||||
literal "false"
|
||||
|
||||
\end_inset
|
||||
@ -54531,7 +54531,7 @@ status collapsed
|
||||
|
||||
\begin_layout Plain Layout
|
||||
|
||||
https://www.ctan.org/tex-archive/indexing/makeindex/doc/makeindex.pdf
|
||||
https://mirrors.ctan.org/indexing/makeindex/doc/makeindex.pdf
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
@ -54551,7 +54551,7 @@ literal "true"
|
||||
\begin_inset CommandInset href
|
||||
LatexCommand href
|
||||
name "خيارات"
|
||||
target "https://www.ctan.org/tex-archive/indexing/makeindex/doc/manpages.dvi"
|
||||
target "https://mirrors.ctan.org/indexing/makeindex/doc/manpages.dvi"
|
||||
literal "false"
|
||||
|
||||
\end_inset
|
||||
@ -54570,7 +54570,7 @@ status collapsed
|
||||
|
||||
\begin_layout Plain Layout
|
||||
|
||||
https://www.ctan.org/tex-archive/indexing/makeindex/doc/manpages.dvi
|
||||
https://mirrors.ctan.org/indexing/makeindex/doc/manpages.dvi
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
@ -54771,7 +54771,7 @@ literal "true"
|
||||
\begin_inset CommandInset href
|
||||
LatexCommand href
|
||||
name "وثيقة"
|
||||
target "https://www.ctan.org/tex-archive/macros/latex/contrib/fancyhdr/fancyhdr.pdf"
|
||||
target "https://mirrors.ctan.org/macros/latex/contrib/fancyhdr/fancyhdr.pdf"
|
||||
literal "false"
|
||||
|
||||
\end_inset
|
||||
@ -54804,7 +54804,7 @@ status collapsed
|
||||
|
||||
\begin_layout Plain Layout
|
||||
|
||||
https://www.ctan.org/tex-archive/macros/latex/contrib/fancyhdr/fancyhdr.pdf
|
||||
https://mirrors.ctan.org/macros/latex/contrib/fancyhdr/fancyhdr.pdf
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
@ -7494,7 +7494,7 @@ Elsevier
|
||||
\begin_inset CommandInset href
|
||||
LatexCommand href
|
||||
name "CTAN"
|
||||
target "http://mirrors.ctan.org/macros/latex/contrib/elsarticle/doc/elsdoc.pdf"
|
||||
target "https://mirrors.ctan.org/macros/latex/contrib/elsarticle/doc/elsdoc.pdf"
|
||||
literal "false"
|
||||
|
||||
\end_inset
|
||||
@ -10398,7 +10398,7 @@ Powerdot
|
||||
\begin_inset CommandInset href
|
||||
LatexCommand href
|
||||
name "CTAN"
|
||||
target "http://mirrors.ctan.org/macros/latex/contrib/powerdot/doc/powerdot.pdf"
|
||||
target "https://mirrors.ctan.org/macros/latex/contrib/powerdot/doc/powerdot.pdf"
|
||||
literal "false"
|
||||
|
||||
\end_inset
|
||||
|
@ -50448,7 +50448,7 @@ Dokumentation des \SpecialChar LaTeX
|
||||
\begin_inset CommandInset href
|
||||
LatexCommand href
|
||||
name "pdfpages"
|
||||
target "https://www.ctan.org/tex-archive/macros/latex/contrib/pdfpages/pdfpages.pdf"
|
||||
target "https://mirrors.ctan.org/macros/latex/contrib/pdfpages/pdfpages.pdf"
|
||||
literal "false"
|
||||
|
||||
\end_inset
|
||||
|
@ -510,7 +510,7 @@ AmS
|
||||
\begin_inset CommandInset href
|
||||
LatexCommand href
|
||||
name "amsguide.pdf"
|
||||
target "https://www.ctan.org/tex-archive/macros/amstex/doc/amsguide.pdf"
|
||||
target "https://mirrors.ctan.org/macros/amstex/doc/amsguide.pdf"
|
||||
literal "false"
|
||||
|
||||
\end_inset
|
||||
@ -5605,7 +5605,7 @@ B.
|
||||
\series bold
|
||||
×
|
||||
\series default
|
||||
4
|
||||
|
||||
\begin_inset space ~
|
||||
\end_inset
|
||||
|
||||
@ -12584,7 +12584,7 @@ qquad
|
||||
\begin_inset Text
|
||||
|
||||
\begin_layout Plain Layout
|
||||
4
|
||||
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
@ -12662,7 +12662,7 @@ hfill
|
||||
\begin_inset Text
|
||||
|
||||
\begin_layout Plain Layout
|
||||
5
|
||||
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
@ -12832,7 +12832,7 @@ Leerraum
|
||||
\begin_inset space ~
|
||||
\end_inset
|
||||
|
||||
5
|
||||
|
||||
\begin_inset space \thinspace{}
|
||||
\end_inset
|
||||
|
||||
@ -42495,7 +42495,7 @@ literal "true"
|
||||
\begin_inset CommandInset href
|
||||
LatexCommand href
|
||||
name "Dokumentation"
|
||||
target "https://www.ctan.org/tex-archive/macros/latex/contrib/mhchem/mhchem.pdf"
|
||||
target "https://mirrors.ctan.org/macros/latex/contrib/mhchem/mhchem.pdf"
|
||||
literal "false"
|
||||
|
||||
\end_inset
|
||||
|
@ -55799,7 +55799,7 @@ literal "true"
|
||||
\begin_inset CommandInset href
|
||||
LatexCommand href
|
||||
name "Dokumentation"
|
||||
target "https://www.ctan.org/tex-archive/biblio/bibtex/contrib/doc/btxdoc.pdf"
|
||||
target "https://mirrors.ctan.org/biblio/bibtex/contrib/doc/btxdoc.pdf"
|
||||
literal "false"
|
||||
|
||||
\end_inset
|
||||
@ -55819,7 +55819,7 @@ status collapsed
|
||||
|
||||
\begin_layout Plain Layout
|
||||
|
||||
https://www.ctan.org/tex-archive/biblio/bibtex/contrib/doc/btxdoc.pdf
|
||||
https://mirrors.ctan.org/biblio/bibtex/contrib/doc/btxdoc.pdf
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
@ -56005,7 +56005,7 @@ literal "true"
|
||||
\begin_inset CommandInset href
|
||||
LatexCommand href
|
||||
name "Dokumentation"
|
||||
target "https://www.ctan.org/tex-archive/indexing/makeindex/doc/makeindex.pdf"
|
||||
target "https://mirrors.ctan.org/indexing/makeindex/doc/makeindex.pdf"
|
||||
literal "false"
|
||||
|
||||
\end_inset
|
||||
@ -56024,7 +56024,7 @@ status collapsed
|
||||
|
||||
\begin_layout Plain Layout
|
||||
|
||||
https://www.ctan.org/tex-archive/indexing/makeindex/doc/makeindex.pdf
|
||||
https://mirrors.ctan.org/indexing/makeindex/doc/makeindex.pdf
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
@ -56044,7 +56044,7 @@ literal "true"
|
||||
\begin_inset CommandInset href
|
||||
LatexCommand href
|
||||
name "Optionen"
|
||||
target "https://www.ctan.org/tex-archive/indexing/makeindex/doc/manpages.dvi"
|
||||
target "https://mirrors.ctan.org/indexing/makeindex/doc/manpages.dvi"
|
||||
literal "false"
|
||||
|
||||
\end_inset
|
||||
@ -56063,7 +56063,7 @@ status collapsed
|
||||
|
||||
\begin_layout Plain Layout
|
||||
|
||||
https://www.ctan.org/tex-archive/indexing/makeindex/doc/manpages.dvi
|
||||
https://mirrors.ctan.org/indexing/makeindex/doc/manpages.dvi
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
@ -56323,7 +56323,7 @@ literal "true"
|
||||
\begin_inset CommandInset href
|
||||
LatexCommand href
|
||||
name "Dokumentation"
|
||||
target "https://www.ctan.org/tex-archive/macros/latex/contrib/fancyhdr/fancyhdr.pdf"
|
||||
target "https://mirrors.ctan.org/macros/latex/contrib/fancyhdr/fancyhdr.pdf"
|
||||
literal "false"
|
||||
|
||||
\end_inset
|
||||
@ -56366,7 +56366,7 @@ status collapsed
|
||||
|
||||
\begin_layout Plain Layout
|
||||
|
||||
https://www.ctan.org/tex-archive/macros/latex/contrib/fancyhdr/fancyhdr.pdf
|
||||
https://mirrors.ctan.org/macros/latex/contrib/fancyhdr/fancyhdr.pdf
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
@ -47844,7 +47844,7 @@ Documentación del paquete \SpecialChar LaTeX
|
||||
\begin_inset CommandInset href
|
||||
LatexCommand href
|
||||
name "pdfpages"
|
||||
target "https://www.ctan.org/tex-archive/macros/latex/contrib/pdfpages/pdfpages.pdf"
|
||||
target "https://mirrors.ctan.org/macros/latex/contrib/pdfpages/pdfpages.pdf"
|
||||
literal "false"
|
||||
|
||||
\end_inset
|
||||
|
@ -469,7 +469,7 @@ En el archivo
|
||||
\begin_inset CommandInset href
|
||||
LatexCommand href
|
||||
name "amsguide.pdf"
|
||||
target "https://www.ctan.org/tex-archive/macros/amstex/doc/amsguide.pdf"
|
||||
target "https://mirrors.ctan.org/macros/amstex/doc/amsguide.pdf"
|
||||
literal "false"
|
||||
|
||||
\end_inset
|
||||
@ -39621,7 +39621,7 @@ literal "true"
|
||||
\begin_inset CommandInset href
|
||||
LatexCommand href
|
||||
name "Documentación"
|
||||
target "https://www.ctan.org/tex-archive/macros/latex/contrib/mhchem/mhchem.pdf"
|
||||
target "https://mirrors.ctan.org/macros/latex/contrib/mhchem/mhchem.pdf"
|
||||
literal "false"
|
||||
|
||||
\end_inset
|
||||
|
@ -52276,7 +52276,7 @@ literal "true"
|
||||
\begin_inset CommandInset href
|
||||
LatexCommand href
|
||||
name "Documentación"
|
||||
target "https://www.ctan.org/tex-archive/biblio/bibtex/contrib/doc/btxdoc.pdf"
|
||||
target "https://mirrors.ctan.org/biblio/bibtex/contrib/doc/btxdoc.pdf"
|
||||
literal "false"
|
||||
|
||||
\end_inset
|
||||
@ -52296,7 +52296,7 @@ status collapsed
|
||||
|
||||
\begin_layout Plain Layout
|
||||
|
||||
https://www.ctan.org/tex-archive/biblio/bibtex/contrib/doc/btxdoc.pdf
|
||||
https://mirrors.ctan.org/biblio/bibtex/contrib/doc/btxdoc.pdf
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
@ -52466,7 +52466,7 @@ literal "true"
|
||||
\begin_inset CommandInset href
|
||||
LatexCommand href
|
||||
name "Documentación"
|
||||
target "https://www.ctan.org/tex-archive/indexing/makeindex/doc/makeindex.pdf"
|
||||
target "https://mirrors.ctan.org/indexing/makeindex/doc/makeindex.pdf"
|
||||
literal "false"
|
||||
|
||||
\end_inset
|
||||
@ -52485,7 +52485,7 @@ status collapsed
|
||||
|
||||
\begin_layout Plain Layout
|
||||
|
||||
https://www.ctan.org/tex-archive/indexing/makeindex/doc/makeindex.pdf
|
||||
https://mirrors.ctan.org/indexing/makeindex/doc/makeindex.pdf
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
@ -52505,7 +52505,7 @@ literal "true"
|
||||
\begin_inset CommandInset href
|
||||
LatexCommand href
|
||||
name "Opciónes"
|
||||
target "https://www.ctan.org/tex-archive/indexing/makeindex/doc/manpages.dvi"
|
||||
target "https://mirrors.ctan.org/indexing/makeindex/doc/manpages.dvi"
|
||||
literal "false"
|
||||
|
||||
\end_inset
|
||||
@ -52524,7 +52524,7 @@ status collapsed
|
||||
|
||||
\begin_layout Plain Layout
|
||||
|
||||
https://www.ctan.org/tex-archive/indexing/makeindex/doc/manpages.dvi
|
||||
https://mirrors.ctan.org/indexing/makeindex/doc/manpages.dvi
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
@ -52728,7 +52728,7 @@ literal "true"
|
||||
\begin_inset CommandInset href
|
||||
LatexCommand href
|
||||
name "Documentación"
|
||||
target "https://www.ctan.org/tex-archive/macros/latex/contrib/fancyhdr/fancyhdr.pdf"
|
||||
target "https://mirrors.ctan.org/macros/latex/contrib/fancyhdr/fancyhdr.pdf"
|
||||
literal "false"
|
||||
|
||||
\end_inset
|
||||
@ -52763,7 +52763,7 @@ status collapsed
|
||||
|
||||
\begin_layout Plain Layout
|
||||
|
||||
https://www.ctan.org/tex-archive/macros/latex/contrib/fancyhdr/fancyhdr.pdf
|
||||
https://mirrors.ctan.org/macros/latex/contrib/fancyhdr/fancyhdr.pdf
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
@ -7711,7 +7711,7 @@ Elsevier
|
||||
\begin_inset CommandInset href
|
||||
LatexCommand href
|
||||
name "CTAN"
|
||||
target "http://mirrors.ctan.org/macros/latex/contrib/elsarticle/doc/elsdoc.pdf"
|
||||
target "https://mirrors.ctan.org/macros/latex/contrib/elsarticle/doc/elsdoc.pdf"
|
||||
literal "false"
|
||||
|
||||
\end_inset
|
||||
@ -11020,7 +11020,7 @@ Powerdot
|
||||
\begin_inset CommandInset href
|
||||
LatexCommand href
|
||||
name "CTAN"
|
||||
target "http://mirrors.ctan.org/macros/latex/contrib/powerdot/doc/powerdot.pdf"
|
||||
target "https://mirrors.ctan.org/macros/latex/contrib/powerdot/doc/powerdot.pdf"
|
||||
literal "false"
|
||||
|
||||
\end_inset
|
||||
|
@ -50757,7 +50757,7 @@ Documentation du paquetage \SpecialChar LaTeX
|
||||
\begin_inset CommandInset href
|
||||
LatexCommand href
|
||||
name "pdfpages"
|
||||
target "https://www.ctan.org/tex-archive/macros/latex/contrib/pdfpages/pdfpages.pdf"
|
||||
target "https://mirrors.ctan.org/macros/latex/contrib/pdfpages/pdfpages.pdf"
|
||||
literal "false"
|
||||
|
||||
\end_inset
|
||||
|
@ -616,7 +616,7 @@ dans le fichier
|
||||
\begin_inset CommandInset href
|
||||
LatexCommand href
|
||||
name "amsguide.pdf"
|
||||
target "https://www.ctan.org/tex-archive/macros/amstex/doc/amsguide.pdf"
|
||||
target "https://mirrors.ctan.org/macros/amstex/doc/amsguide.pdf"
|
||||
literal "false"
|
||||
|
||||
\end_inset
|
||||
@ -6180,7 +6180,7 @@ right
|
||||
\begin_inset space ~
|
||||
\end_inset
|
||||
|
||||
4
|
||||
|
||||
\series bold
|
||||
×
|
||||
\series default
|
||||
@ -13316,7 +13316,7 @@ qquad
|
||||
\begin_inset Text
|
||||
|
||||
\begin_layout Plain Layout
|
||||
4
|
||||
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
@ -13396,7 +13396,7 @@ hfill
|
||||
\begin_inset Text
|
||||
|
||||
\begin_layout Plain Layout
|
||||
5
|
||||
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
@ -43889,7 +43889,7 @@ literal "true"
|
||||
\begin_inset CommandInset href
|
||||
LatexCommand href
|
||||
name "Documentation"
|
||||
target "https://www.ctan.org/tex-archive/macros/latex/contrib/mhchem/mhchem.pdf"
|
||||
target "https://mirrors.ctan.org/macros/latex/contrib/mhchem/mhchem.pdf"
|
||||
literal "false"
|
||||
|
||||
\end_inset
|
||||
|
@ -58448,7 +58448,7 @@ literal "true"
|
||||
\begin_inset CommandInset href
|
||||
LatexCommand href
|
||||
name "Documentation"
|
||||
target "https://www.ctan.org/tex-archive/biblio/bibtex/contrib/doc/btxdoc.pdf"
|
||||
target "https://mirrors.ctan.org/biblio/bibtex/contrib/doc/btxdoc.pdf"
|
||||
literal "false"
|
||||
|
||||
\end_inset
|
||||
@ -58468,7 +58468,7 @@ status collapsed
|
||||
|
||||
\begin_layout Plain Layout
|
||||
|
||||
https://www.ctan.org/tex-archive/biblio/bibtex/contrib/doc/btxdoc.pdf
|
||||
https://mirrors.ctan.org/biblio/bibtex/contrib/doc/btxdoc.pdf
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
@ -58654,7 +58654,7 @@ literal "true"
|
||||
\begin_inset CommandInset href
|
||||
LatexCommand href
|
||||
name "Documentation"
|
||||
target "https://www.ctan.org/tex-archive/indexing/makeindex/doc/makeindex.pdf"
|
||||
target "https://mirrors.ctan.org/indexing/makeindex/doc/makeindex.pdf"
|
||||
literal "false"
|
||||
|
||||
\end_inset
|
||||
@ -58673,7 +58673,7 @@ status collapsed
|
||||
|
||||
\begin_layout Plain Layout
|
||||
|
||||
https://www.ctan.org/tex-archive/indexing/makeindex/doc/makeindex.pdf
|
||||
https://mirrors.ctan.org/indexing/makeindex/doc/makeindex.pdf
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
@ -58693,7 +58693,7 @@ literal "true"
|
||||
\begin_inset CommandInset href
|
||||
LatexCommand href
|
||||
name "Options"
|
||||
target "https://www.ctan.org/tex-archive/indexing/makeindex/doc/manpages.dvi"
|
||||
target "https://mirrors.ctan.org/indexing/makeindex/doc/manpages.dvi"
|
||||
literal "false"
|
||||
|
||||
\end_inset
|
||||
@ -58712,7 +58712,7 @@ status collapsed
|
||||
|
||||
\begin_layout Plain Layout
|
||||
|
||||
https://www.ctan.org/tex-archive/indexing/makeindex/doc/manpages.dvi
|
||||
https://mirrors.ctan.org/indexing/makeindex/doc/manpages.dvi
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
@ -58971,7 +58971,7 @@ literal "true"
|
||||
\begin_inset CommandInset href
|
||||
LatexCommand href
|
||||
name "Documentation"
|
||||
target "https://www.ctan.org/tex-archive/macros/latex/contrib/fancyhdr/fancyhdr.pdf"
|
||||
target "https://mirrors.ctan.org/macros/latex/contrib/fancyhdr/fancyhdr.pdf"
|
||||
literal "false"
|
||||
|
||||
\end_inset
|
||||
@ -59014,7 +59014,7 @@ status collapsed
|
||||
|
||||
\begin_layout Plain Layout
|
||||
|
||||
https://www.ctan.org/tex-archive/macros/latex/contrib/fancyhdr/fancyhdr.pdf
|
||||
https://mirrors.ctan.org/macros/latex/contrib/fancyhdr/fancyhdr.pdf
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
@ -11689,7 +11689,7 @@ Powerdot
|
||||
\begin_inset CommandInset href
|
||||
LatexCommand href
|
||||
name "CTAN"
|
||||
target "http://mirrors.ctan.org/macros/latex/contrib/powerdot/doc/powerdot.pdf"
|
||||
target "https://mirrors.ctan.org/macros/latex/contrib/powerdot/doc/powerdot.pdf"
|
||||
literal "false"
|
||||
|
||||
\end_inset
|
||||
|
@ -51153,7 +51153,7 @@ literal "true"
|
||||
\begin_inset CommandInset href
|
||||
LatexCommand href
|
||||
name "pdfpages"
|
||||
target "https://www.ctan.org/tex-archive/macros/latex/contrib/pdfpages/pdfpages.pdf"
|
||||
target "https://mirrors.ctan.org/macros/latex/contrib/pdfpages/pdfpages.pdf"
|
||||
literal "false"
|
||||
|
||||
\end_inset
|
||||
|
@ -567,7 +567,7 @@ AmS
|
||||
\begin_inset CommandInset href
|
||||
LatexCommand href
|
||||
name "amsguide.pdf"
|
||||
target "https://www.ctan.org/tex-archive/macros/amstex/doc/amsguide.pdf"
|
||||
target "https://mirrors.ctan.org/macros/amstex/doc/amsguide.pdf"
|
||||
literal "false"
|
||||
|
||||
\end_inset
|
||||
@ -46600,7 +46600,7 @@ mhchem
|
||||
\begin_inset CommandInset href
|
||||
LatexCommand href
|
||||
name "取扱説明書"
|
||||
target "https://www.ctan.org/tex-archive/macros/latex/contrib/mhchem/mhchem.pdf"
|
||||
target "https://mirrors.ctan.org/macros/latex/contrib/mhchem/mhchem.pdf"
|
||||
literal "false"
|
||||
|
||||
\end_inset
|
||||
|
@ -60258,7 +60258,7 @@ Bib\SpecialChar TeX
|
||||
\begin_inset CommandInset href
|
||||
LatexCommand href
|
||||
name "取扱説明書"
|
||||
target "https://www.ctan.org/tex-archive/biblio/bibtex/contrib/doc/btxdoc.pdf"
|
||||
target "https://mirrors.ctan.org/biblio/bibtex/contrib/doc/btxdoc.pdf"
|
||||
literal "false"
|
||||
|
||||
\end_inset
|
||||
@ -60273,7 +60273,7 @@ status collapsed
|
||||
|
||||
\begin_layout Plain Layout
|
||||
|
||||
https://www.ctan.org/tex-archive/biblio/bibtex/contrib/doc/btxdoc.pdf
|
||||
https://mirrors.ctan.org/biblio/bibtex/contrib/doc/btxdoc.pdf
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
@ -60481,7 +60481,7 @@ makeindex
|
||||
\begin_inset CommandInset href
|
||||
LatexCommand href
|
||||
name "取扱説明書"
|
||||
target "https://www.ctan.org/tex-archive/indexing/makeindex/doc/makeindex.pdf"
|
||||
target "https://mirrors.ctan.org/indexing/makeindex/doc/makeindex.pdf"
|
||||
literal "false"
|
||||
|
||||
\end_inset
|
||||
@ -60496,7 +60496,7 @@ status collapsed
|
||||
|
||||
\begin_layout Plain Layout
|
||||
|
||||
https://www.ctan.org/tex-archive/indexing/makeindex/doc/makeindex.pdf
|
||||
https://mirrors.ctan.org/indexing/makeindex/doc/makeindex.pdf
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
@ -60520,7 +60520,7 @@ makeindex
|
||||
\begin_inset CommandInset href
|
||||
LatexCommand href
|
||||
name "オプション"
|
||||
target "https://www.ctan.org/tex-archive/indexing/makeindex/doc/manpages.dvi"
|
||||
target "https://mirrors.ctan.org/indexing/makeindex/doc/manpages.dvi"
|
||||
literal "false"
|
||||
|
||||
\end_inset
|
||||
@ -60535,7 +60535,7 @@ status collapsed
|
||||
|
||||
\begin_layout Plain Layout
|
||||
|
||||
https://www.ctan.org/tex-archive/indexing/makeindex/doc/manpages.dvi
|
||||
https://mirrors.ctan.org/indexing/makeindex/doc/manpages.dvi
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
@ -60850,7 +60850,7 @@ fancyhdr
|
||||
\begin_inset CommandInset href
|
||||
LatexCommand href
|
||||
name "取扱説明書"
|
||||
target "https://www.ctan.org/tex-archive/macros/latex/contrib/fancyhdr/fancyhdr.pdf"
|
||||
target "https://mirrors.ctan.org/macros/latex/contrib/fancyhdr/fancyhdr.pdf"
|
||||
literal "false"
|
||||
|
||||
\end_inset
|
||||
@ -60865,7 +60865,7 @@ status collapsed
|
||||
|
||||
\begin_layout Plain Layout
|
||||
|
||||
https://www.ctan.org/tex-archive/macros/latex/contrib/fancyhdr/fancyhdr.pdf
|
||||
https://mirrors.ctan.org/macros/latex/contrib/fancyhdr/fancyhdr.pdf
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
@ -48221,7 +48221,7 @@ Documentation of the \SpecialChar LaTeX
|
||||
\begin_inset CommandInset href
|
||||
LatexCommand href
|
||||
name "pdfpages"
|
||||
target "https://www.ctan.org/tex-archive/macros/latex/contrib/pdfpages/pdfpages.pdf"
|
||||
target "https://mirrors.ctan.org/macros/latex/contrib/pdfpages/pdfpages.pdf"
|
||||
literal "false"
|
||||
|
||||
\end_inset
|
||||
|
@ -522,7 +522,7 @@ AmS
|
||||
\begin_inset CommandInset href
|
||||
LatexCommand href
|
||||
name "amsguide.pdf"
|
||||
target "https://www.ctan.org/tex-archive/macros/amstex/doc/amsguide.pdf"
|
||||
target "https://mirrors.ctan.org/macros/amstex/doc/amsguide.pdf"
|
||||
literal "false"
|
||||
|
||||
\end_inset
|
||||
@ -39169,7 +39169,7 @@ literal "true"
|
||||
\begin_inset CommandInset href
|
||||
LatexCommand href
|
||||
name "Documentation"
|
||||
target "https://www.ctan.org/tex-archive/macros/latex/contrib/mhchem/mhchem.pdf"
|
||||
target "https://mirrors.ctan.org/macros/latex/contrib/mhchem/mhchem.pdf"
|
||||
literal "false"
|
||||
|
||||
\end_inset
|
||||
|
@ -51929,7 +51929,7 @@ literal "true"
|
||||
\begin_inset CommandInset href
|
||||
LatexCommand href
|
||||
name "Documentation"
|
||||
target "https://www.ctan.org/tex-archive/biblio/bibtex/contrib/doc/btxdoc.pdf"
|
||||
target "https://mirrors.ctan.org/biblio/bibtex/contrib/doc/btxdoc.pdf"
|
||||
literal "false"
|
||||
|
||||
\end_inset
|
||||
@ -51949,7 +51949,7 @@ status collapsed
|
||||
|
||||
\begin_layout Plain Layout
|
||||
|
||||
https://www.ctan.org/tex-archive/biblio/bibtex/contrib/doc/btxdoc.pdf
|
||||
https://mirrors.ctan.org/biblio/bibtex/contrib/doc/btxdoc.pdf
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
@ -52117,7 +52117,7 @@ literal "true"
|
||||
\begin_inset CommandInset href
|
||||
LatexCommand href
|
||||
name "Documentation"
|
||||
target "https://www.ctan.org/tex-archive/indexing/makeindex/doc/makeindex.pdf"
|
||||
target "https://mirrors.ctan.org/indexing/makeindex/doc/makeindex.pdf"
|
||||
literal "false"
|
||||
|
||||
\end_inset
|
||||
@ -52136,7 +52136,7 @@ status collapsed
|
||||
|
||||
\begin_layout Plain Layout
|
||||
|
||||
https://www.ctan.org/tex-archive/indexing/makeindex/doc/makeindex.pdf
|
||||
https://mirrors.ctan.org/indexing/makeindex/doc/makeindex.pdf
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
@ -52156,7 +52156,7 @@ literal "true"
|
||||
\begin_inset CommandInset href
|
||||
LatexCommand href
|
||||
name "Options"
|
||||
target "https://www.ctan.org/tex-archive/indexing/makeindex/doc/manpages.dvi"
|
||||
target "https://mirrors.ctan.org/indexing/makeindex/doc/manpages.dvi"
|
||||
literal "false"
|
||||
|
||||
\end_inset
|
||||
@ -52175,7 +52175,7 @@ status collapsed
|
||||
|
||||
\begin_layout Plain Layout
|
||||
|
||||
https://www.ctan.org/tex-archive/indexing/makeindex/doc/manpages.dvi
|
||||
https://mirrors.ctan.org/indexing/makeindex/doc/manpages.dvi
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
@ -52378,7 +52378,7 @@ literal "true"
|
||||
\begin_inset CommandInset href
|
||||
LatexCommand href
|
||||
name "Documentation"
|
||||
target "https://www.ctan.org/tex-archive/macros/latex/contrib/fancyhdr/fancyhdr.pdf"
|
||||
target "https://mirrors.ctan.org/macros/latex/contrib/fancyhdr/fancyhdr.pdf"
|
||||
literal "false"
|
||||
|
||||
\end_inset
|
||||
@ -52412,7 +52412,7 @@ status collapsed
|
||||
|
||||
\begin_layout Plain Layout
|
||||
|
||||
https://www.ctan.org/tex-archive/macros/latex/contrib/fancyhdr/fancyhdr.pdf
|
||||
https://mirrors.ctan.org/macros/latex/contrib/fancyhdr/fancyhdr.pdf
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
@ -3922,7 +3922,7 @@ status collapsed
|
||||
|
||||
\begin_layout Plain Layout
|
||||
|
||||
https://www.ctan.org/tex-archive/macros/generic/diagrams/xypic/doc/xyrefer.pdf
|
||||
https://mirrors.ctan.org/macros/generic/diagrams/xypic/doc/xyrefer.pdf
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
@ -7734,7 +7734,7 @@ literal "true"
|
||||
\begin_inset CommandInset href
|
||||
LatexCommand href
|
||||
name "Documentation"
|
||||
target "https://ctan.org/tex-archive/macros/latex/contrib/tcolorbox/tcolorbox.pdf"
|
||||
target "https://mirrors.ctan.org/macros/latex/contrib/tcolorbox/tcolorbox.pdf"
|
||||
literal "false"
|
||||
|
||||
\end_inset
|
||||
|
@ -4662,7 +4662,7 @@ status collapsed
|
||||
|
||||
\begin_layout Plain Layout
|
||||
|
||||
https://ctan.org/tex-archive/macros/latex/contrib/beamer/doc/beameruserguide.pdf
|
||||
https://mirrors.ctan.org/macros/latex/contrib/beamer/doc/beameruserguide.pdf
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
@ -5212,7 +5212,7 @@ status collapsed
|
||||
|
||||
\begin_layout Plain Layout
|
||||
|
||||
https://ctan.org/tex-archive/macros/latex/contrib/beamer/doc/beameruserguide.pdf
|
||||
https://mirrors.ctan.org/macros/latex/contrib/beamer/doc/beameruserguide.pdf
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
@ -3880,7 +3880,7 @@ status collapsed
|
||||
|
||||
\begin_layout Plain Layout
|
||||
|
||||
https://www.ctan.org/tex-archive/macros/generic/diagrams/xypic/doc/xyrefer.pdf
|
||||
https://mirrors.ctan.org/macros/generic/diagrams/xypic/doc/xyrefer.pdf
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
@ -4781,7 +4781,7 @@ status collapsed
|
||||
|
||||
\begin_layout Plain Layout
|
||||
|
||||
https://ctan.org/tex-archive/macros/latex/contrib/beamer/doc/beameruserguide.pdf
|
||||
https://mirrors.ctan.org/macros/latex/contrib/beamer/doc/beameruserguide.pdf
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
@ -3487,7 +3487,7 @@ status collapsed
|
||||
|
||||
\begin_layout Plain Layout
|
||||
|
||||
https://ctan.org/tex-archive/macros/generic/diagrams/xypic/doc/xyguide.pdf
|
||||
https://mirrors.ctan.org/macros/generic/diagrams/xypic/doc/xyguide.pdf
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
@ -3559,7 +3559,7 @@ status collapsed
|
||||
|
||||
\begin_layout Plain Layout
|
||||
|
||||
https://ctan.org/tex-archive/macros/generic/diagrams/xypic/doc/xyguide.pdf
|
||||
https://mirrors.ctan.org/macros/generic/diagrams/xypic/doc/xyguide.pdf
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
@ -3609,7 +3609,7 @@ status collapsed
|
||||
|
||||
\begin_layout Plain Layout
|
||||
|
||||
https://ctan.org/tex-archive/macros/generic/diagrams/xypic/doc/xyguide.pdf
|
||||
https://mirrors.ctan.org/macros/generic/diagrams/xypic/doc/xyguide.pdf
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
@ -4256,7 +4256,7 @@ status collapsed
|
||||
|
||||
\begin_layout Plain Layout
|
||||
|
||||
https://ctan.org/tex-archive/macros/latex/contrib/beamer/doc/beameruserguide.pdf
|
||||
https://mirrors.ctan.org/macros/latex/contrib/beamer/doc/beameruserguide.pdf
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
@ -4124,7 +4124,7 @@ status collapsed
|
||||
|
||||
\begin_layout Plain Layout
|
||||
|
||||
https://www.ctan.org/tex-archive/macros/generic/diagrams/xypic/doc/xyrefer.pdf
|
||||
https://mirrors.ctan.org/macros/generic/diagrams/xypic/doc/xyrefer.pdf
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
@ -7962,7 +7962,7 @@ literal "true"
|
||||
\begin_inset CommandInset href
|
||||
LatexCommand href
|
||||
name "Documentation"
|
||||
target "https://ctan.org/tex-archive/macros/latex/contrib/tcolorbox/tcolorbox.pdf"
|
||||
target "https://mirrors.ctan.org/macros/latex/contrib/tcolorbox/tcolorbox.pdf"
|
||||
literal "false"
|
||||
|
||||
\end_inset
|
||||
|
@ -4590,7 +4590,7 @@ status collapsed
|
||||
|
||||
\begin_layout Plain Layout
|
||||
|
||||
https://ctan.org/tex-archive/macros/latex/contrib/beamer/doc/beameruserguide.pdf
|
||||
https://mirrors.ctan.org/macros/latex/contrib/beamer/doc/beameruserguide.pdf
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
@ -145,7 +145,7 @@ status open
|
||||
|
||||
\begin_layout Plain Layout
|
||||
|
||||
https://ctan.org/tex-archive/macros/latex/contrib/tcolorbox/tcolorbox.pdf
|
||||
https://mirrors.ctan.org/macros/latex/contrib/tcolorbox/tcolorbox.pdf
|
||||
\end_layout
|
||||
|
||||
\end_inset
|
||||
|
Loading…
Reference in New Issue
Block a user