mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-18 12:11:52 +00:00
Compare commits
No commits in common. "9cfa55d23122ee6d5e23dac59d5075432f7313d5" and "fd6f8c28c33b6c3c07723adede5eeffed0770236" have entirely different histories.
9cfa55d231
...
fd6f8c28c3
@ -158,7 +158,7 @@ status collapsed
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://aastex.aas.org/aastex/revisionhistory.html
|
http://journals.aas.org/authors/aastex/revisionhistory.html
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
# -*- mode: perl; -*-
|
# -*- mode: perl; -*-
|
||||||
package CheckURL;
|
package CheckURL;
|
||||||
|
|
||||||
# file CheckURL.pm
|
# file CheckURL.pm
|
||||||
#
|
#
|
||||||
# This file is part of LyX, the document processor.
|
# This file is part of LyX, the document processor.
|
||||||
@ -15,7 +14,6 @@ package CheckURL;
|
|||||||
use strict;
|
use strict;
|
||||||
|
|
||||||
our(@EXPORT, @ISA);
|
our(@EXPORT, @ISA);
|
||||||
|
|
||||||
BEGIN {
|
BEGIN {
|
||||||
use Exporter ();
|
use Exporter ();
|
||||||
@ISA = qw(Exporter);
|
@ISA = qw(Exporter);
|
||||||
@ -27,18 +25,16 @@ sub check_http_url($$$$);
|
|||||||
sub check_ftp_dir_entry($$);
|
sub check_ftp_dir_entry($$);
|
||||||
sub check_ftp_url($$$$);
|
sub check_ftp_url($$$$);
|
||||||
sub check_unknown_url($$$$);
|
sub check_unknown_url($$$$);
|
||||||
sub check_url($$$$);
|
sub check_url($$);
|
||||||
################
|
################
|
||||||
|
|
||||||
my $fe;
|
sub check_http_url($$$$)
|
||||||
my $fs;
|
{
|
||||||
|
|
||||||
sub check_http_url($$$$) {
|
|
||||||
require LWP::UserAgent;
|
require LWP::UserAgent;
|
||||||
|
|
||||||
my ($protocol, $host, $path, $file) = @_;
|
my ($protocol, $host, $path, $file) = @_;
|
||||||
|
|
||||||
my $ua = LWP::UserAgent->new(timeout => 20);
|
my $ua = LWP::UserAgent->new;
|
||||||
my $getp = "/";
|
my $getp = "/";
|
||||||
if ($path ne "") {
|
if ($path ne "") {
|
||||||
$getp .= $path;
|
$getp .= $path;
|
||||||
@ -58,7 +54,7 @@ sub check_http_url($$$$) {
|
|||||||
$buf = $response->decoded_content;
|
$buf = $response->decoded_content;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
print $fe " " . $response->status_line . ": ";
|
print " " . $response->status_line . ": ";
|
||||||
return 3;
|
return 3;
|
||||||
}
|
}
|
||||||
my @title = ();
|
my @title = ();
|
||||||
@ -70,9 +66,9 @@ sub check_http_url($$$$) {
|
|||||||
$title =~ s/^ //;
|
$title =~ s/^ //;
|
||||||
$title =~ s/ $//;
|
$title =~ s/ $//;
|
||||||
push(@title, $title);
|
push(@title, $title);
|
||||||
print $fe "title = \"$title\": ";
|
print "title = \"$title\": ";
|
||||||
if ($title =~ /Error 404|Not Found/) {
|
if ($title =~ /Error 404|Not Found/) {
|
||||||
print $fe " Page reports 'Not Found' from \"$protocol://$host$getp\": ";
|
print " Page reports 'Not Found' from \"$protocol://$host$getp\": ";
|
||||||
$res = 3;
|
$res = 3;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -83,12 +79,13 @@ sub check_http_url($$$$) {
|
|||||||
# returns 0, x if file does not match entry
|
# returns 0, x if file does not match entry
|
||||||
# 1, x everything OK
|
# 1, x everything OK
|
||||||
# 2, x if not accesible (permission)
|
# 2, x if not accesible (permission)
|
||||||
sub check_ftp_dir_entry($$) {
|
sub check_ftp_dir_entry($$)
|
||||||
|
{
|
||||||
my ($file, $e) = @_;
|
my ($file, $e) = @_;
|
||||||
my $other = '---';
|
my $other = '---';
|
||||||
my $isdir = 0;
|
my $isdir = 0;
|
||||||
|
|
||||||
#print $fe "Checking '$file' against '$e'\n";
|
#print "Checking '$file' against '$e'\n";
|
||||||
$file =~ s/^\///;
|
$file =~ s/^\///;
|
||||||
$isdir = 1 if ($e =~ /^d/);
|
$isdir = 1 if ($e =~ /^d/);
|
||||||
return(0,$isdir) if ($e !~ /\s$file$/);
|
return(0,$isdir) if ($e !~ /\s$file$/);
|
||||||
@ -96,26 +93,25 @@ sub check_ftp_dir_entry($$) {
|
|||||||
$other = $1;
|
$other = $1;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
#print $fe "Invalid entry\n";
|
#print "Invalid entry\n";
|
||||||
# Invalid entry
|
# Invalid entry
|
||||||
return(0,$isdir);
|
return(0,$isdir);
|
||||||
}
|
}
|
||||||
return(2,$isdir) if ($other !~ /^r/); # not readable
|
return(2,$isdir) if ($other !~ /^r/); # not readable
|
||||||
if ($isdir) {
|
if ($isdir) {
|
||||||
|
|
||||||
#return(2,$isdir) if ($other !~ /x$/); # directory, but not executable
|
#return(2,$isdir) if ($other !~ /x$/); # directory, but not executable
|
||||||
}
|
}
|
||||||
return(1,$isdir);
|
return(1,$isdir);
|
||||||
}
|
}
|
||||||
|
|
||||||
sub check_ftp2_url($$$$) {
|
sub check_ftp2_url($$$$)
|
||||||
|
{
|
||||||
my ($protocol, $host, $path, $file) = @_;
|
my ($protocol, $host, $path, $file) = @_;
|
||||||
|
|
||||||
my $checkentry = 1;
|
my $checkentry = 1;
|
||||||
|
print "\nhost $host\n";
|
||||||
#print $fe "\nhost $host\n";
|
print "path $path\n";
|
||||||
#print $fe "path $path\n";
|
print "file $file\n";
|
||||||
#print $fe "file $file\n";
|
|
||||||
my $url = "$protocol://$host";
|
my $url = "$protocol://$host";
|
||||||
$path =~ s/\/$//;
|
$path =~ s/\/$//;
|
||||||
if (defined($file)) {
|
if (defined($file)) {
|
||||||
@ -124,8 +120,7 @@ sub check_ftp2_url($$$$) {
|
|||||||
else {
|
else {
|
||||||
$url = "$url/$path/.";
|
$url = "$url/$path/.";
|
||||||
}
|
}
|
||||||
|
print "curl $url, file = $file\n";
|
||||||
#print $fe "curl $url, file = $file\n";
|
|
||||||
my %listfiles = ();
|
my %listfiles = ();
|
||||||
if (open(FFTP, "curl --anyauth -l $url|")) {
|
if (open(FFTP, "curl --anyauth -l $url|")) {
|
||||||
while (my $l = <FFTP>) {
|
while (my $l = <FFTP>) {
|
||||||
@ -153,14 +148,15 @@ sub check_ftp2_url($$$$) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
sub check_ftp_url($$$$) {
|
sub check_ftp_url($$$$)
|
||||||
|
{
|
||||||
use Net::FTP;
|
use Net::FTP;
|
||||||
|
|
||||||
my ($protocol, $host, $path, $file) = @_;
|
my ($protocol, $host, $path, $file) = @_;
|
||||||
my $res = 0;
|
my $res = 0;
|
||||||
my $message = "";
|
my $message = "";
|
||||||
|
|
||||||
my $ftp = Net::FTP->new($host, Debug => 0, Timeout => 20);
|
my $ftp = Net::FTP->new($host, Debug => 0, Timeout => 120);
|
||||||
if(!$ftp) {
|
if(!$ftp) {
|
||||||
return(3,"Cannot connect to $host");
|
return(3,"Cannot connect to $host");
|
||||||
}
|
}
|
||||||
@ -171,8 +167,7 @@ sub check_ftp_url($$$$) {
|
|||||||
else {
|
else {
|
||||||
my $rEntries;
|
my $rEntries;
|
||||||
if ($path ne "") {
|
if ($path ne "") {
|
||||||
|
#print "Path = $path\n";
|
||||||
#print $fe "Path = $path\n";
|
|
||||||
#if (!$ftp->cwd($path)) {
|
#if (!$ftp->cwd($path)) {
|
||||||
# $message = $ftp->message;
|
# $message = $ftp->message;
|
||||||
# $res = 3;
|
# $res = 3;
|
||||||
@ -190,15 +185,13 @@ sub check_ftp_url($$$$) {
|
|||||||
my $found = 0;
|
my $found = 0;
|
||||||
my $found2 = 0;
|
my $found2 = 0;
|
||||||
for my $f ( @{$rEntries}) {
|
for my $f ( @{$rEntries}) {
|
||||||
|
#print "Entry: $path $f\n";
|
||||||
#print $fe "Entry: $path $f\n";
|
|
||||||
my ($res1,$isdir) = check_ftp_dir_entry($file,$f);
|
my ($res1,$isdir) = check_ftp_dir_entry($file,$f);
|
||||||
if ($res1 == 1) {
|
if ($res1 == 1) {
|
||||||
$found = 1;
|
$found = 1;
|
||||||
last;
|
last;
|
||||||
}
|
}
|
||||||
elsif ($res1 == 2) {
|
elsif ($res1 == 2) {
|
||||||
|
|
||||||
# found, but not accessible
|
# found, but not accessible
|
||||||
$found2 = 1;
|
$found2 = 1;
|
||||||
$message = "Permission denied for '$file'";
|
$message = "Permission denied for '$file'";
|
||||||
@ -213,12 +206,12 @@ sub check_ftp_url($$$$) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
$ftp->quit;
|
$ftp->quit;
|
||||||
|
#print "returning ($res,$message)\n";
|
||||||
#print $fe "returning ($res,$message)\n";
|
|
||||||
return($res, $message);
|
return($res, $message);
|
||||||
}
|
}
|
||||||
|
|
||||||
sub check_unknown_url($$$$) {
|
sub check_unknown_url($$$$)
|
||||||
|
{
|
||||||
use LWP::Simple;
|
use LWP::Simple;
|
||||||
|
|
||||||
my ($protocol, $host, $path, $file) = @_;
|
my ($protocol, $host, $path, $file) = @_;
|
||||||
@ -234,18 +227,16 @@ sub check_unknown_url($$$$) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
if(defined($file)) {
|
if(defined($file)) {
|
||||||
|
#print "Trying $url$file\n";
|
||||||
#print $fe "Trying $url$file\n";
|
|
||||||
$res = head("$url/$file");
|
$res = head("$url/$file");
|
||||||
if(! $res) {
|
if(! $res) {
|
||||||
|
|
||||||
# try to check for directory '/';
|
# try to check for directory '/';
|
||||||
#print $fe "Trying $url$file/\n";
|
#print "Trying $url$file/\n";
|
||||||
$res = head("$url/$file/");
|
$res = head("$url/$file/");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
#print $fe "Trying $url\n";
|
#print "Trying $url\n";
|
||||||
$res = head($url);
|
$res = head($url);
|
||||||
}
|
}
|
||||||
return(! $res);
|
return(! $res);
|
||||||
@ -253,10 +244,9 @@ sub check_unknown_url($$$$) {
|
|||||||
|
|
||||||
#
|
#
|
||||||
# Main entry
|
# Main entry
|
||||||
sub check_url($$$$) {
|
sub check_url($$)
|
||||||
my ($url, $use_curl, $fex, $fsx) = @_;
|
{
|
||||||
$fe = $fex;
|
my($url,$use_curl) = @_;
|
||||||
$fs = $fsx;
|
|
||||||
my $file = undef;
|
my $file = undef;
|
||||||
my ($protocol,$host,$path);
|
my ($protocol,$host,$path);
|
||||||
|
|
||||||
@ -271,7 +261,6 @@ sub check_url($$$$) {
|
|||||||
if($path =~ s/\/([^\/]+)$//) {
|
if($path =~ s/\/([^\/]+)$//) {
|
||||||
$file = $1;
|
$file = $1;
|
||||||
if($file =~ / /) {
|
if($file =~ / /) {
|
||||||
|
|
||||||
# Filename contains ' ', maybe invalid. Don't check
|
# Filename contains ' ', maybe invalid. Don't check
|
||||||
$file = undef;
|
$file = undef;
|
||||||
}
|
}
|
||||||
@ -279,7 +268,7 @@ sub check_url($$$$) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
print $fe " Invalid url '$url'";
|
print " Invalid url '$url'";
|
||||||
return 2;
|
return 2;
|
||||||
}
|
}
|
||||||
if ($protocol =~ /^https?$/) {
|
if ($protocol =~ /^https?$/) {
|
||||||
@ -297,7 +286,7 @@ sub check_url($$$$) {
|
|||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
# it never should reach this point
|
# it never should reach this point
|
||||||
print $fe " What protocol is '$protocol'?";
|
print " What protocol is '$protocol'?";
|
||||||
$res = check_unknown_url($protocol, $host, $path, $file);
|
$res = check_unknown_url($protocol, $host, $path, $file);
|
||||||
return $res;
|
return $res;
|
||||||
}
|
}
|
||||||
|
@ -38,31 +38,20 @@ BEGIN {
|
|||||||
unshift(@INC, "$p");
|
unshift(@INC, "$p");
|
||||||
}
|
}
|
||||||
|
|
||||||
use warnings;
|
|
||||||
use Cwd qw(abs_path);
|
|
||||||
use CheckURL;
|
use CheckURL;
|
||||||
use Try::Tiny;
|
use Try::Tiny;
|
||||||
use locale;
|
use locale;
|
||||||
use POSIX qw(locale_h);
|
use POSIX qw(locale_h);
|
||||||
use Readonly;
|
|
||||||
|
|
||||||
Readonly::Scalar my $NR_JOBS => 10;
|
|
||||||
|
|
||||||
setlocale(LC_CTYPE, "");
|
setlocale(LC_CTYPE, "");
|
||||||
setlocale(LC_MESSAGES, "en_US.UTF-8");
|
setlocale(LC_MESSAGES, "en_US.UTF-8");
|
||||||
|
|
||||||
use File::Temp qw/ tempfile tempdir /;
|
|
||||||
use File::Spec;
|
|
||||||
use Fcntl qw(:flock SEEK_END);
|
|
||||||
|
|
||||||
# Prototypes
|
# Prototypes
|
||||||
sub printNotUsedURLS($\%);
|
sub printNotUsedURLS($\%);
|
||||||
sub replaceSpecialChar($);
|
sub replaceSpecialChar($);
|
||||||
sub readUrls($\%);
|
sub readUrls($\%);
|
||||||
sub parse_file($ );
|
sub parse_file($ );
|
||||||
sub handle_url($$$ );
|
sub handle_url($$$ );
|
||||||
sub printx($$$$);
|
|
||||||
sub getnrjobs($$$);
|
|
||||||
##########
|
##########
|
||||||
|
|
||||||
my %URLS = ();
|
my %URLS = ();
|
||||||
@ -78,7 +67,6 @@ for my $arg (@ARGV) {
|
|||||||
die("Bad argument \"$arg\"") if ($arg !~ /=/);
|
die("Bad argument \"$arg\"") if ($arg !~ /=/);
|
||||||
my ($type,$val) = split("=", $arg);
|
my ($type,$val) = split("=", $arg);
|
||||||
if ($type eq "filesToScan") {
|
if ($type eq "filesToScan") {
|
||||||
|
|
||||||
#The file should be a list of files to search in
|
#The file should be a list of files to search in
|
||||||
if (open(FLIST, $val)) {
|
if (open(FLIST, $val)) {
|
||||||
while (my $l = <FLIST>) {
|
while (my $l = <FLIST>) {
|
||||||
@ -115,8 +103,6 @@ for my $arg (@ARGV) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
my @urls = sort keys %URLS, keys %extraURLS;
|
my @urls = sort keys %URLS, keys %extraURLS;
|
||||||
my @testvals = ();
|
|
||||||
|
|
||||||
# Tests
|
# Tests
|
||||||
#my @urls = ("ftp://ftp.edpsciences.org/pub/aa/readme.html", "ftp://ftp.springer.de/pub/tex/latex/compsc/proc/author");
|
#my @urls = ("ftp://ftp.edpsciences.org/pub/aa/readme.html", "ftp://ftp.springer.de/pub/tex/latex/compsc/proc/author");
|
||||||
my $errorcount = 0;
|
my $errorcount = 0;
|
||||||
@ -142,65 +128,12 @@ for my $u (@urls) {
|
|||||||
}
|
}
|
||||||
next if ($checkSelectedOnly && ! defined($selectedURLS{$u}));
|
next if ($checkSelectedOnly && ! defined($selectedURLS{$u}));
|
||||||
$URLScount++;
|
$URLScount++;
|
||||||
push(@testvals, {u => $u, use_curl => $use_curl,});
|
print "Checking '$u': ";
|
||||||
}
|
|
||||||
|
|
||||||
# Ready to go multitasking
|
|
||||||
my ($vol, $dir, $file) = File::Spec->splitpath($summaryFile);
|
|
||||||
my $tempdir = tempdir("$dir/CounterXXXXXXX", CLEANUP => 1);
|
|
||||||
my $countfile = "$tempdir/counter";
|
|
||||||
my $counter = 0;
|
|
||||||
if (open(my $FO, '>', $countfile)) {
|
|
||||||
print {$FO} $counter;
|
|
||||||
close($FO);
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
unlink($countfile);
|
|
||||||
die("Could not write to $countfile");
|
|
||||||
}
|
|
||||||
|
|
||||||
print "Using tempdir \"" . abs_path($tempdir) . "\"\n";
|
|
||||||
|
|
||||||
my @wait = ();
|
|
||||||
for (my $i = 0; $i < $NR_JOBS; $i++) { # Number of subprocesses
|
|
||||||
my $pid = fork();
|
|
||||||
if ($pid == 0) {
|
|
||||||
|
|
||||||
# I am child
|
|
||||||
open(my $fe, '>:encoding(UTF-8)', "$tempdir/xxxError$i");
|
|
||||||
open(my $fs, '>:encoding(UTF-8)', "$tempdir/xxxSum$i");
|
|
||||||
while (1) {
|
|
||||||
open(my $fh, '+<', $countfile) or die("cannot open $countfile");
|
|
||||||
flock($fh, LOCK_EX) or die "$i: Cannot lock $countfile - $!\n";
|
|
||||||
my $l = <$fh>; # get actual count number
|
|
||||||
if (!defined($testvals[$l])) {
|
|
||||||
close($fs);
|
|
||||||
print $fe "NumberOfErrors $errorcount\n";
|
|
||||||
close($fe);
|
|
||||||
exit(0);
|
|
||||||
}
|
|
||||||
my $diff = getnrjobs(scalar @testvals, $l, $NR_JOBS);
|
|
||||||
if ($diff < 1) {
|
|
||||||
$diff = 1;
|
|
||||||
}
|
|
||||||
my $next = $l + $diff;
|
|
||||||
seek($fh, 0, 0);
|
|
||||||
truncate($fh, 0);
|
|
||||||
print $fh $next;
|
|
||||||
close($fh);
|
|
||||||
for (my $i = 0; $i < $diff; $i++) {
|
|
||||||
my $entryidx = $l + $i;
|
|
||||||
my $rentry = $testvals[$entryidx];
|
|
||||||
next if (!defined($rentry));
|
|
||||||
my $u = $rentry->{u};
|
|
||||||
my $use_curl = $rentry->{use_curl};
|
|
||||||
|
|
||||||
print $fe "Checking($entryidx) '$u': ";
|
|
||||||
my ($res, $prnt, $outSum);
|
my ($res, $prnt, $outSum);
|
||||||
try {
|
try {
|
||||||
$res = check_url($u, $use_curl, $fe, $fs);
|
$res = check_url($u, $use_curl);
|
||||||
if ($res) {
|
if ($res) {
|
||||||
print $fe "Failed\n";
|
print "Failed\n";
|
||||||
$prnt = "";
|
$prnt = "";
|
||||||
$outSum = 1;
|
$outSum = 1;
|
||||||
}
|
}
|
||||||
@ -214,7 +147,7 @@ for (my $i = 0; $i < $NR_JOBS; $i++) { # Number of subprocesses
|
|||||||
$outSum = 1;
|
$outSum = 1;
|
||||||
$res = 700;
|
$res = 700;
|
||||||
};
|
};
|
||||||
printx("$prnt", $outSum, $fe, $fs);
|
printx("$prnt", $outSum);
|
||||||
my $printSourceFiles = 0;
|
my $printSourceFiles = 0;
|
||||||
my $err_txt = "Error url:";
|
my $err_txt = "Error url:";
|
||||||
|
|
||||||
@ -226,13 +159,13 @@ for (my $i = 0; $i < $NR_JOBS; $i++) { # Number of subprocesses
|
|||||||
}
|
}
|
||||||
$res = ! $res if (defined($revertedURLS{$u}));
|
$res = ! $res if (defined($revertedURLS{$u}));
|
||||||
if ($res || $checkSelectedOnly) {
|
if ($res || $checkSelectedOnly) {
|
||||||
printx("$err_txt \"$u\"\n", $outSum, $fe, $fs);
|
printx("$err_txt \"$u\"\n", $outSum);
|
||||||
}
|
}
|
||||||
if ($printSourceFiles) {
|
if ($printSourceFiles) {
|
||||||
if (defined($URLS{$u})) {
|
if (defined($URLS{$u})) {
|
||||||
for my $f(sort keys %{$URLS{$u}}) {
|
for my $f(sort keys %{$URLS{$u}}) {
|
||||||
my $lines = ":" . join(',', @{$URLS{$u}->{$f}});
|
my $lines = ":" . join(',', @{$URLS{$u}->{$f}});
|
||||||
printx(" $f$lines\n", $outSum, $fe, $fs);
|
printx(" $f$lines\n", $outSum);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if ($res ) {
|
if ($res ) {
|
||||||
@ -240,33 +173,6 @@ 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);
|
|
||||||
open(my $fe, '<', "$tempdir/xxxError$i");
|
|
||||||
while (my $l = <$fe>) {
|
|
||||||
if ($l =~ /^NumberOfErrors\s(\d+)/) {
|
|
||||||
$errorcount += $1;
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
print $l;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
close($fe);
|
|
||||||
open(my $fs, '<', "$tempdir/xxxSum$i");
|
|
||||||
while (my $l = <$fs>) {
|
|
||||||
print SFO $l;
|
|
||||||
}
|
|
||||||
close($fs);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
unlink($countfile);
|
|
||||||
|
|
||||||
if (%URLS) {
|
if (%URLS) {
|
||||||
printNotUsedURLS("Ignored", %ignoredURLS);
|
printNotUsedURLS("Ignored", %ignoredURLS);
|
||||||
@ -281,15 +187,17 @@ if (defined($summaryFile)) {
|
|||||||
exit($errorcount);
|
exit($errorcount);
|
||||||
|
|
||||||
###############################################################################
|
###############################################################################
|
||||||
sub printx($$$$) {
|
sub printx($$)
|
||||||
my ($txt, $outSum, $fe, $fs) = @_;
|
{
|
||||||
print $fe "$txt";
|
my ($txt, $outSum) = @_;
|
||||||
|
print "$txt";
|
||||||
if ($outSum && defined($summaryFile)) {
|
if ($outSum && defined($summaryFile)) {
|
||||||
print $fs "$txt";
|
print SFO "$txt";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
sub printNotUsedURLS($\%) {
|
sub printNotUsedURLS($\%)
|
||||||
|
{
|
||||||
my ($txt, $rURLS) = @_;
|
my ($txt, $rURLS) = @_;
|
||||||
my @msg = ();
|
my @msg = ();
|
||||||
for my $u ( sort keys %{$rURLS}) {
|
for my $u ( sort keys %{$rURLS}) {
|
||||||
@ -307,13 +215,15 @@ sub printNotUsedURLS($\%) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
sub replaceSpecialChar($) {
|
sub replaceSpecialChar($)
|
||||||
|
{
|
||||||
my ($l) = @_;
|
my ($l) = @_;
|
||||||
$l =~ s/\\SpecialChar(NoPassThru)?\s*(TeX|LaTeX|LyX)[\s]?/\2/;
|
$l =~ s/\\SpecialChar(NoPassThru)?\s*(TeX|LaTeX|LyX)[\s]?/\2/;
|
||||||
return($l);
|
return($l);
|
||||||
}
|
}
|
||||||
|
|
||||||
sub readUrls($\%) {
|
sub readUrls($\%)
|
||||||
|
{
|
||||||
my ($file, $rUrls) = @_;
|
my ($file, $rUrls) = @_;
|
||||||
|
|
||||||
die("Could not read file $file") if (! open(ULIST, $file));
|
die("Could not read file $file") if (! open(ULIST, $file));
|
||||||
@ -335,7 +245,8 @@ sub readUrls($\%) {
|
|||||||
close(ULIST);
|
close(ULIST);
|
||||||
}
|
}
|
||||||
|
|
||||||
sub parse_file($) {
|
sub parse_file($)
|
||||||
|
{
|
||||||
my($f) = @_;
|
my($f) = @_;
|
||||||
my $status = "out"; # outside of URL/href
|
my $status = "out"; # outside of URL/href
|
||||||
|
|
||||||
@ -346,7 +257,6 @@ sub parse_file($) {
|
|||||||
$line++;
|
$line++;
|
||||||
$l =~ s/[\r\n]+$//; # Simulate chomp
|
$l =~ s/[\r\n]+$//; # Simulate chomp
|
||||||
if ($status eq "out") {
|
if ($status eq "out") {
|
||||||
|
|
||||||
# searching for "\begin_inset Flex URL"
|
# searching for "\begin_inset Flex URL"
|
||||||
if($l =~ /^\s*\\begin_inset\s+Flex\s+URL\s*$/) {
|
if($l =~ /^\s*\\begin_inset\s+Flex\s+URL\s*$/) {
|
||||||
$status = "inUrlInset";
|
$status = "inUrlInset";
|
||||||
@ -386,7 +296,8 @@ sub parse_file($) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
sub handle_url($$$) {
|
sub handle_url($$$)
|
||||||
|
{
|
||||||
my($url, $f, $line) = @_;
|
my($url, $f, $line) = @_;
|
||||||
|
|
||||||
$url = &replaceSpecialChar($url);
|
$url = &replaceSpecialChar($url);
|
||||||
@ -398,17 +309,3 @@ sub handle_url($$$) {
|
|||||||
}
|
}
|
||||||
push(@{$URLS{$url}->{$f}}, $line);
|
push(@{$URLS{$url}->{$f}}, $line);
|
||||||
}
|
}
|
||||||
|
|
||||||
sub getnrjobs($$$) {
|
|
||||||
my ($tabsize, $actualidx, $nr_jobs) = @_;
|
|
||||||
my $maxidx = $tabsize - 1;
|
|
||||||
my $remaining = $maxidx - $actualidx;
|
|
||||||
if ($remaining <= 0) {
|
|
||||||
return (1);
|
|
||||||
}
|
|
||||||
if ($nr_jobs < 2) {
|
|
||||||
return ($remaining);
|
|
||||||
}
|
|
||||||
my $diff = 1 + int($remaining / (2 * $nr_jobs));
|
|
||||||
return $diff;
|
|
||||||
}
|
|
||||||
|
@ -1884,7 +1884,7 @@ status open
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://texfaq.org/FAQ-overfull
|
http://www.tex.ac.uk/FAQ-overfull.html
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -2445,7 +2445,7 @@ status open
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://ctan.org/tex-archive/macros/latex/required/amsmath
|
ftp://ftp.ams.org/pub/tex/amslatex/
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -3562,7 +3562,7 @@ status collapsed
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://mirrors.ctan.org/macros/jptex/latex/jlreq/jlreq.pdf
|
http://mirrors.ctan.org/macros/jptex/latex/jlreq/jlreq.pdf
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -6097,7 +6097,7 @@ status collapsed
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://journals.aas.org/aastex-package-for-manuscript-preparation/
|
https://aas.org/aastex/aastex-downloads
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -7353,7 +7353,7 @@ Elsevier
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "CTAN"
|
name "CTAN"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/elsarticle/doc/elsdoc.pdf"
|
target "http://mirrors.ctan.org/macros/latex/contrib/elsarticle/doc/elsdoc.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -7482,7 +7482,7 @@ status collapsed
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://journals.aps.org/revtex
|
http://publish.aps.org/revtex4/
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -8381,7 +8381,7 @@ Europass (2013)
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "CTAN"
|
name "CTAN"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/europasscv/europasscv.pdf"
|
target "http://mirrors.ctan.org/macros/latex/contrib/europasscv/europasscv.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -8416,7 +8416,7 @@ Europe CV
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "CTAN"
|
name "CTAN"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/europecv/europecv.pdf"
|
target "http://mirrors.ctan.org/macros/latex/contrib/europecv/europecv.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -8451,7 +8451,7 @@ Modern CV
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "CTAN"
|
name "CTAN"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/moderncv/manual/moderncv_userguide.pdf"
|
target "http://mirrors.ctan.org/macros/latex/contrib/moderncv/manual/moderncv_userguide.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -8487,7 +8487,7 @@ Simple CV
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "CTAN"
|
name "CTAN"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/simplecv/simplecv.pdf"
|
target "http://mirrors.ctan.org/macros/latex/contrib/simplecv/simplecv.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -8603,7 +8603,7 @@ DIN-Brief
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "CTAN"
|
name "CTAN"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/dinbrief/liesmich"
|
target "http://mirrors.ctan.org/macros/latex/contrib/dinbrief/liesmich"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -8720,7 +8720,7 @@ French letter
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "CTAN"
|
name "CTAN"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/lettre/lettre.pdf"
|
target "http://mirrors.ctan.org/macros/latex/contrib/lettre/lettre.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -8782,7 +8782,7 @@ G-Brief (V.
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "CTAN"
|
name "CTAN"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/g-brief/g-brief.pdf"
|
target "http://mirrors.ctan.org/macros/latex/contrib/g-brief/g-brief.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -8842,7 +8842,7 @@ Beamer Presentations
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "CTAN"
|
name "CTAN"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/beamer/doc/beameruserguide.pdf"
|
target "http://mirrors.ctan.org/macros/latex/contrib/beamer/doc/beameruserguide.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -10356,7 +10356,7 @@ Powerdot
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "CTAN"
|
name "CTAN"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/powerdot/doc/powerdot.pdf"
|
target "http://mirrors.ctan.org/macros/latex/contrib/powerdot/doc/powerdot.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -10398,7 +10398,7 @@ Seminar
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "CTAN"
|
name "CTAN"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/seminar/doc/seminar-doc.pdf"
|
target "http://mirrors.ctan.org/macros/latex/contrib/seminar/doc/seminar-doc.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -13397,7 +13397,7 @@ fixme
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "CTAN"
|
name "CTAN"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/fixme/fixme.pdf"
|
target "http://mirrors.ctan.org/macros/latex/contrib/fixme/fixme.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -13496,7 +13496,7 @@ This module provides fields and buttons for PDF forms.
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "hyperref documentation"
|
name "hyperref documentation"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/hyperref/doc/hyperref-doc.pdf"
|
target "http://mirrors.ctan.org/macros/latex/contrib/hyperref/doc/hyperref-doc.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -13589,7 +13589,7 @@ Custom
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "todonotes documentation"
|
name "todonotes documentation"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/todonotes/todonotes.pdf"
|
target "http://mirrors.ctan.org/macros/latex/contrib/todonotes/todonotes.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -13672,7 +13672,7 @@ Boxes
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "tcolorbox documentation"
|
name "tcolorbox documentation"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/tcolorbox/tcolorbox.pdf"
|
target "http://mirrors.ctan.org/macros/latex/contrib/tcolorbox/tcolorbox.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -14156,7 +14156,7 @@ fix-cm
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "fix-cm documentation"
|
name "fix-cm documentation"
|
||||||
target "https://mirrors.ctan.org/macros/latex/base/fix-cm.pdf"
|
target "http://mirrors.ctan.org/macros/latex/base/fix-cm.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -14283,7 +14283,7 @@ algorithm2e
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "algorithm2e documentation"
|
name "algorithm2e documentation"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/algorithm2e/doc/algorithm2e.pdf"
|
target "http://mirrors.ctan.org/macros/latex/contrib/algorithm2e/doc/algorithm2e.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -14579,7 +14579,7 @@ Game
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "chessboard documentation"
|
name "chessboard documentation"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/chessboard/chessboard.pdf"
|
target "http://mirrors.ctan.org/macros/latex/contrib/chessboard/chessboard.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -15371,7 +15371,7 @@ status collapsed
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "enumitem documentation"
|
name "enumitem documentation"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/enumitem/enumitem.pdf"
|
target "http://mirrors.ctan.org/macros/latex/contrib/enumitem/enumitem.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -15553,7 +15553,7 @@ status collapsed
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "enumitem documentation"
|
name "enumitem documentation"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/enumitem/enumitem.pdf"
|
target "http://mirrors.ctan.org/macros/latex/contrib/enumitem/enumitem.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -15609,7 +15609,7 @@ Paralist
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "paralist documentation"
|
name "paralist documentation"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/paralist/paralist.pdf"
|
target "http://mirrors.ctan.org/macros/latex/contrib/paralist/paralist.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -17900,7 +17900,7 @@ For more features of multiple columns,
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "documentation"
|
name "documentation"
|
||||||
target "https://mirror.ctan.org/macros/latex/required/tools/multicol.pdf"
|
target "http://mirror.ctan.org/macros/latex/required/tools/multicol.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -19915,7 +19915,7 @@ Install the program
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "Jpgfdraw"
|
name "Jpgfdraw"
|
||||||
target "https://www.ctan.org/pkg/flowframtk"
|
target "https://www.ctan.org/tex-archive/graphics/jpgfdraw"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -19961,7 +19961,7 @@ status collapsed
|
|||||||
For more information see
|
For more information see
|
||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
target "https://ctan.org/pkg/shapepar"
|
target "http://www.dickimaw-books.com/apps/jpgfdraw/manual/shapepar.html"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -20270,7 +20270,7 @@ soul
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "soul documentation"
|
name "soul documentation"
|
||||||
target "https://mirrors.ctan.org/macros/generic/soul/soul.pdf"
|
target "http://mirrors.ctan.org/macros/generic/soul/soul.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -20616,7 +20616,7 @@ status open
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://ctan.org/tex-archive/macros/latex/contrib/custom-bib
|
ftp://ctan.tug.org/tex-archive/macros/latex/contrib/custom-bib/
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -20682,7 +20682,7 @@ status open
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://ctan.org/tex-archive/macros/latex/contrib/bibtopic
|
ftp://ctan.tug.org/tex-archive/macros/latex/contrib/bibtopic/
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -26171,7 +26171,7 @@ chktex
|
|||||||
|
|
||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
target "https://www.nongnu.org/chktex/ChkTeX.pdf"
|
target "https://www.ctan.org/tex-archive/help/Catalogue/entries/chktex.html"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -27841,7 +27841,7 @@ status collapsed
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://www.nongnu.org/cvs
|
http://www.nongnu.org/cvs
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -27852,7 +27852,7 @@ status collapsed
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://cvs.nongnu.org/
|
http://ximbiot.com/cvs
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -29552,7 +29552,7 @@ literal "false"
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "TortoiseSVN"
|
name "TortoiseSVN"
|
||||||
target "https://tortoisesvn.net/"
|
target "http://tortoisesvn.tigris.org/"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
|
@ -49341,7 +49341,7 @@ Documentation of the \SpecialChar LaTeX
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "caption"
|
name "caption"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/caption/caption.pdf"
|
target "https://www.ctan.org/tex-archive/macros/latex/contrib/caption/caption-eng.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -49389,7 +49389,7 @@ Documentation of the \SpecialChar LaTeX
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "diagbox"
|
name "diagbox"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/diagbox/diagbox.pdf"
|
target "https://www.ctan.org/tex-archive/macros/latex/contrib//diagbox/diagbox.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -49485,7 +49485,7 @@ Documentation of the \SpecialChar LaTeX
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "footmisc"
|
name "footmisc"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/footmisc/footmisc-doc.pdf"
|
target "https://www.ctan.org/tex-archive/macros/latex/contrib//footmisc/footmisc.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -49533,7 +49533,7 @@ Documentation of the \SpecialChar LaTeX
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "hypcap"
|
name "hypcap"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/hypcap/hypcap.pdf"
|
target "https://www.ctan.org/tex-archive/macros/latex/contrib/oberdiek/hypcap.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -49581,7 +49581,7 @@ Documentation of the \SpecialChar LaTeX
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "hyperref"
|
name "hyperref"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/hyperref/doc/hyperref-doc.pdf"
|
target "https://www.ctan.org/tex-archive/macros/latex/contrib//hyperref/hyperref.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -49629,7 +49629,7 @@ Documentation of the \SpecialChar LaTeX
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "KOMA-Script"
|
name "KOMA-Script"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/koma-script/doc/scrguide-en.pdf"
|
target "https://www.ctan.org/tex-archive/macros/latex/contrib/koma-script/doc/scrguien.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -49688,7 +49688,7 @@ literal "false"
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "example"
|
name "example"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/lettrine/doc/lettrine.pdf"
|
target "https://www.ctan.org/tex-archive/macros/latex/contrib/lettrine/doc/demo.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -50070,7 +50070,7 @@ Documentation of the \SpecialChar LaTeX
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "sidecap"
|
name "sidecap"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/sidecap/sidecap.pdf"
|
target "https://www.ctan.org/tex-archive/macros/latex/contrib//sidecap/sidecap.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
|
@ -3347,7 +3347,7 @@ status collapsed
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://www.dante.de
|
http://www.dante.de
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -3959,7 +3959,7 @@ status collapsed
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://www.worldscientific.com/page/ijmpc/submission-guidelines
|
http://www.worldscinet.com/ijmpc/mkt/guidelines.shtml
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -4005,7 +4005,7 @@ status collapsed
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://www.worldscientific.com/page/ijmpd/submission-guidelines
|
http://www.worldscinet.com/ijmpd/mkt/guidelines.shtml
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -4051,7 +4051,7 @@ status collapsed
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://publishingsupport.iopscience.iop.org/questions/latex-template/
|
ftp://ftp.iop.org/pub/journals/latex2e
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -4892,7 +4892,7 @@ status collapsed
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://ctan.org/pkg/llncs
|
ftp://ftp.springer.de/pub/tex/latex/llncs/latex2e
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -4935,7 +4935,7 @@ status open
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://maa.org/publication/the-american-mathematical-monthly/
|
https://www.maa.org/press/periodicals/american-mathematical-monthly
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -5318,7 +5318,7 @@ status collapsed
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://journals.aps.org/revtex
|
http://publish.aps.org/revtex4/
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -5797,7 +5797,7 @@ status collapsed
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://www.isprs.org/documents/orangebook/LATEX/ISPRSguidelines_authors_fullpaper_latex_2024_01_17.zip
|
http://www.isprs.org/documents/orangebook/LATEX/ISPRSguidelines_authors_latex.zip
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
|
@ -42514,7 +42514,7 @@ literal "true"
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "Documentation"
|
name "Documentation"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/hyperref/doc/hyperref-doc.pdf"
|
target "https://www.ctan.org/tex-archive/macros/latex/contrib/hyperref/doc/manual.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
|
@ -41607,7 +41607,7 @@ status open
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://www.lyx.org/trac/browser/dictionaries/thes/
|
https://www.lyx.org/trac/export/HEAD/lyxsvn/dictionaries/trunk/thes/
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -57057,7 +57057,7 @@ status collapsed
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://texfaq.org/
|
http://www.tex.ac.uk/faq/
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -57220,7 +57220,7 @@ literal "true"
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "Documentation"
|
name "Documentation"
|
||||||
target "https://mirrors.ctan.org/biblio/biber/base/documentation/biber.pdf"
|
target "https://www.ctan.org/tex-archive/biblio/biber/documentation/biber.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -57263,7 +57263,7 @@ status collapsed
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://mirrors.ctan.org/biblio/biber/base/documentation/biber.pdf
|
https://www.ctan.org/tex-archive/biblio/biber/documentation/biber.pdf
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -57361,7 +57361,7 @@ literal "true"
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "Documentation"
|
name "Documentation"
|
||||||
target "http//mirrors.ctan.org/indexing/xindex/doc/xindex-doc.pdf"
|
target "http://mirrors.ctan.org/indexing/xindex/doc/xindex-doc.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -57380,7 +57380,7 @@ status open
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
http//mirrors.ctan.org/indexing/xindex/doc/xindex-doc.pdf
|
http://mirrors.ctan.org/indexing/xindex/doc/xindex-doc.pdf
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -57475,7 +57475,7 @@ literal "true"
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "Documentation"
|
name "Documentation"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/caption/caption.pdf"
|
target "https://www.ctan.org/tex-archive/macros/latex/contrib/caption/caption-eng.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -57518,7 +57518,7 @@ status collapsed
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://mirrors.ctan.org/macros/latex/contrib/caption/caption.pdf
|
https://www.ctan.org/tex-archive/macros/latex/contrib/caption/caption-eng.pdf
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -57664,7 +57664,7 @@ literal "true"
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "Documentation"
|
name "Documentation"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/hyperref/doc/hyperref-doc.pdf"
|
target "https://www.ctan.org/tex-archive/macros/latex/contrib/hyperref/doc/manual.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -57707,7 +57707,7 @@ status collapsed
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://mirrors.ctan.org/macros/latex/contrib/hyperref/doc/hyperref-doc.pdf
|
https://www.ctan.org/tex-archive/macros/latex/contrib/hyperref/doc/manual.pdf
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
|
@ -2401,7 +2401,7 @@ literal "false"
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "هنا"
|
name "هنا"
|
||||||
target "https://font.download/dl/font/scheherazade.zip"
|
target "https://sourceforge.net/projects/ohodquizgame/files/Books/Scheherazade_font-2.100.zip/download"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
|
@ -54307,7 +54307,7 @@ status collapsed
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://texfaq.org/
|
http://www.tex.ac.uk/faq/
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -54459,7 +54459,7 @@ literal "true"
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "وثيقة"
|
name "وثيقة"
|
||||||
target "https://mirrors.ctan.org/biblio/biber/base/documentation/biber.pdf"
|
target "https://www.ctan.org/tex-archive/biblio/biber/documentation/biber.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -54492,7 +54492,7 @@ status collapsed
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://mirrors.ctan.org/biblio/biber/base/documentation/biber.pdf
|
https://www.ctan.org/tex-archive/biblio/biber/documentation/biber.pdf
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -54665,7 +54665,7 @@ literal "true"
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "وثيقة"
|
name "وثيقة"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/caption/caption.pdf"
|
target "https://www.ctan.org/tex-archive/macros/latex/contrib/caption/caption-eng.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -54698,7 +54698,7 @@ status collapsed
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://mirrors.ctan.org/macros/latex/contrib/caption/caption.pdf
|
https://www.ctan.org/tex-archive/macros/latex/contrib/caption/caption-eng.pdf
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -54824,7 +54824,7 @@ literal "true"
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "وثيقة"
|
name "وثيقة"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/hyperref/doc/hyperref-doc.pdf"
|
target "https://www.ctan.org/tex-archive/macros/latex/contrib/hyperref/doc/manual.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -54857,7 +54857,7 @@ status collapsed
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://mirrors.ctan.org/macros/latex/contrib/hyperref/doc/hyperref-doc.pdf
|
https://www.ctan.org/tex-archive/macros/latex/contrib/hyperref/doc/manual.pdf
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
|
@ -1917,7 +1917,7 @@ status open
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://texfaq.org/FAQ-overfull
|
http://www.tex.ac.uk/FAQ-overfull.html
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -2469,7 +2469,7 @@ status collapsed
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://ctan.org/tex-archive/macros/latex/required/amsmath
|
ftp://ftp.ams.org/pub/tex/amslatex/
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -3865,7 +3865,7 @@ Klassenoptionen
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "scrguide"
|
name "scrguide"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/koma-script/doc/scrguide-de.pdf"
|
target "https://www.ctan.org/tex-archive/macros/latex/contrib/koma-script/doc/scrguide.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -3988,7 +3988,7 @@ Eine ausführliche deutsche Beschreibung der \SpecialChar LaTeX
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "scrguide"
|
name "scrguide"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/koma-script/doc/scrguide-de.pdf"
|
target "https://www.ctan.org/tex-archive/macros/latex/contrib/koma-script/doc/scrguide.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -5034,7 +5034,7 @@ KOMA-Script-Brief (V.
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "scrguide"
|
name "scrguide"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/koma-script/doc/scrguide-de.pdf"
|
target "https://www.ctan.org/tex-archive/macros/latex/contrib/koma-script/doc/scrguide.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -6211,7 +6211,7 @@ status collapsed
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://journals.aas.org/aastex-package-for-manuscript-preparation/
|
https://aas.org/aastex/aastex-downloads
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -7639,7 +7639,7 @@ status collapsed
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://journals.aps.org/revtex
|
http://publish.aps.org/revtex4/
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -8893,7 +8893,7 @@ G-Brief (V.
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "CTAN"
|
name "CTAN"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/g-brief/g-brief.pdf"
|
target "http://mirrors.ctan.org/macros/latex/contrib/g-brief/g-brief.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -13871,7 +13871,7 @@ Man installiert das Programm
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "Jpgfdraw"
|
name "Jpgfdraw"
|
||||||
target "https://www.ctan.org/pkg/flowframtk"
|
target "https://www.ctan.org/tex-archive/graphics/jpgfdraw"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -13931,7 +13931,7 @@ status collapsed
|
|||||||
Siehe
|
Siehe
|
||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
target "https://ctan.org/pkg/shapepar"
|
target "http://www.dickimaw-books.com/apps/jpgfdraw/manual/shapepar.html"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -17841,7 +17841,7 @@ Dieses Modul verbessert das Erscheinungsbild der Computer-Modern-Schriften und s
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "Dokumentation des Pakets"
|
name "Dokumentation des Pakets"
|
||||||
target "https://ctan.org/pkg/fixltx2e"
|
target "http://tug.org/texmf-dist/doc/latex/base/fixltx2e.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -18455,7 +18455,7 @@ Es gibt noch weitere komplexe Befehle,
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "Dokumentation"
|
name "Dokumentation"
|
||||||
target "https://ctan.org/tex-archive/macros/latex/contrib/fancyhdr"
|
target "https://www.ctan.org/tex-archive/help/Catalogue/entries/fancyhdr.html"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -20199,7 +20199,7 @@ status collapsed
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://ctan.org/tex-archive/macros/latex/contrib/custom-bib
|
ftp://ctan.tug.org/tex-archive/macros/latex/contrib/custom-bib/
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -20247,7 +20247,7 @@ status collapsed
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://ctan.org/tex-archive/macros/latex/contrib/bibtopic
|
ftp://ctan.tug.org/tex-archive/macros/latex/contrib/bibtopic/
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -25821,7 +25821,7 @@ chktex
|
|||||||
\begin_layout Quote
|
\begin_layout Quote
|
||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
target "https://www.nongnu.org/chktex/ChkTeX.pdf"
|
target "https://www.ctan.org/tex-archive/help/Catalogue/entries/chktex.html"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -28087,7 +28087,7 @@ status collapsed
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://cvs.nongnu.org/
|
http://ximbiot.com/cvs
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -29870,7 +29870,7 @@ literal "false"
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "TortoiseSVN"
|
name "TortoiseSVN"
|
||||||
target "https://tortoisesvn.net/"
|
target "http://tortoisesvn.tigris.org/"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
|
@ -49912,7 +49912,7 @@ Dokumentation des \SpecialChar LaTeX
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "caption"
|
name "caption"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/caption/caption.pdf"
|
target "https://www.ctan.org/tex-archive/macros/latex/contrib//caption/caption-deu.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -49960,7 +49960,7 @@ Dokumentation des \SpecialChar LaTeX
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "diagbox"
|
name "diagbox"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/diagbox/diagbox.pdf"
|
target "https://www.ctan.org/tex-archive/macros/latex/contrib//diagbox/diagbox.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -50056,7 +50056,7 @@ Dokumentation des \SpecialChar LaTeX
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "footmisc"
|
name "footmisc"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/footmisc/footmisc-doc.pdf"
|
target "https://www.ctan.org/tex-archive/macros/latex/contrib//footmisc/footmisc.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -50104,7 +50104,7 @@ Dokumentation des \SpecialChar LaTeX
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "hypcap"
|
name "hypcap"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/hypcap/hypcap.pdf"
|
target "https://www.ctan.org/tex-archive/macros/latex/contrib/oberdiek/hypcap.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -50152,7 +50152,7 @@ Dokumentation des \SpecialChar LaTeX
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "hyperref"
|
name "hyperref"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/hyperref/doc/hyperref-doc.pdf"
|
target "https://www.ctan.org/tex-archive/macros/latex/contrib//hyperref/hyperref.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -50200,7 +50200,7 @@ Dokumentation des \SpecialChar LaTeX
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "KOMA-Script"
|
name "KOMA-Script"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/koma-script/doc/scrguide-de.pdf"
|
target "https://www.ctan.org/tex-archive/macros/latex/contrib/koma-script/doc/scrguide.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -50259,7 +50259,7 @@ literal "false"
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "Beispiel"
|
name "Beispiel"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/lettrine/doc/lettrine-demo-de.pdf"
|
target "https://www.ctan.org/tex-archive/macros/latex/contrib/lettrine/doc/demo-de.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -50641,7 +50641,7 @@ Dokumentation des \SpecialChar LaTeX
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "sidecap"
|
name "sidecap"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/sidecap/sidecap.pdf"
|
target "https://www.ctan.org/tex-archive/macros/latex/contrib//sidecap/sidecap.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
|
@ -42448,7 +42448,7 @@ literal "true"
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "Dokumentation"
|
name "Dokumentation"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/hyperref/doc/hyperref-doc.pdf"
|
target "https://www.ctan.org/tex-archive/macros/latex/contrib/hyperref/doc/manual.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
|
@ -40856,7 +40856,7 @@ status open
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://www.lyx.org/trac/browser/dictionaries/thes/
|
https://www.lyx.org/trac/export/HEAD/lyxsvn/dictionaries/trunk/thes/
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -55786,7 +55786,7 @@ status collapsed
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://texfaq.org/
|
https://www.tex.ac.uk/faq/
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -55949,7 +55949,7 @@ literal "true"
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "Dokumentation"
|
name "Dokumentation"
|
||||||
target "https://mirrors.ctan.org/biblio/biber/base/documentation/biber.pdf"
|
target "https://www.ctan.org/tex-archive/biblio/biber/documentation/biber.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -55992,7 +55992,7 @@ status collapsed
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://mirrors.ctan.org/biblio/biber/base/documentation/biber.pdf
|
https://www.ctan.org/tex-archive/biblio/biber/documentation/biber.pdf
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -56090,7 +56090,7 @@ literal "true"
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "Dokumentation"
|
name "Dokumentation"
|
||||||
target "http//mirrors.ctan.org/indexing/xindex/doc/xindex-doc.pdf"
|
target "http://mirrors.ctan.org/indexing/xindex/doc/xindex-doc.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -56109,7 +56109,7 @@ status collapsed
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
http//mirrors.ctan.org/indexing/xindex/doc/xindex-doc.pdf
|
http://mirrors.ctan.org/indexing/xindex/doc/xindex-doc.pdf
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -56204,7 +56204,7 @@ literal "true"
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "Dokumentation"
|
name "Dokumentation"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/caption/caption.pdf"
|
target "https://www.ctan.org/tex-archive/macros/latex/contrib/caption/caption-deu.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -56247,7 +56247,7 @@ status collapsed
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://mirrors.ctan.org/macros/latex/contrib/caption/caption.pdf
|
https://www.ctan.org/tex-archive/macros/latex/contrib/caption/caption-deu.pdf
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -56393,7 +56393,7 @@ literal "true"
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "Dokumentation"
|
name "Dokumentation"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/hyperref/doc/hyperref-doc.pdf"
|
target "https://www.ctan.org/tex-archive/macros/latex/contrib/hyperref/doc/manual.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -56436,7 +56436,7 @@ status collapsed
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://mirrors.ctan.org/macros/latex/contrib/hyperref/doc/hyperref-doc.pdf
|
https://www.ctan.org/tex-archive/macros/latex/contrib/hyperref/doc/manual.pdf
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
|
@ -2221,7 +2221,7 @@ status open
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://texfaq.org/FAQ-overfull
|
http://www.tex.ac.uk/FAQ-overfull.html
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -3160,7 +3160,7 @@ status collapsed
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://ctan.org/tex-archive/macros/latex/contrib/custom-bib
|
ftp://ctan.tug.org/tex-archive/macros/latex/contrib/custom-bib/
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -3231,7 +3231,7 @@ status collapsed
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://ctan.org/tex-archive/macros/latex/contrib/bibtopic
|
ftp://ctan.tug.org/tex-archive/macros/latex/contrib/bibtopic/
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -9100,7 +9100,7 @@ status collapsed
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://www.overleaf.com/latex/templates/astronomy-and-astrophysics-template/ngdddtchkbcg
|
ftp://ftp.edpsciences.org/pub/aa/readme.html
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -9823,7 +9823,7 @@ status collapsed
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://journals.aas.org/aastex-package-for-manuscript-preparation/
|
https://aas.org/aastex/aastex-downloads
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -11058,7 +11058,7 @@ status collapsed
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://ctan.org/tex-archive/macros/latex/required/amsmath
|
ftp://ftp.ams.org/pub/tex/amslatex/
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -13832,7 +13832,7 @@ status collapsed
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://www.worldscientific.com/page/ijmpc/submission-guidelines
|
http://www.worldscinet.com/ijmpc/mkt/guidelines.shtml
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -13843,7 +13843,7 @@ status collapsed
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://www.worldscientific.com/page/ijmpd/submission-guidelines
|
http://www.worldscinet.com/ijmpd/mkt/guidelines.shtml
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -14419,7 +14419,7 @@ status collapsed
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://publishingsupport.iopscience.iop.org/questions/latex-template/
|
ftp://ftp.iop.org/pub/journals/latex2e
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -17740,7 +17740,7 @@ status collapsed
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://journals.aps.org/revtex
|
http://publish.aps.org/revtex4/
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -20524,7 +20524,7 @@ chktex
|
|||||||
|
|
||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
target "https://www.nongnu.org/chktex/ChkTeX.pdf"
|
target "https://www.ctan.org/tex-archive/help/Catalogue/entries/chktex.html"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -22530,7 +22530,7 @@ status collapsed
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://cvs.nongnu.org/
|
http://ximbiot.com/cvs
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -24450,7 +24450,7 @@ literal "false"
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "TortoiseSVN"
|
name "TortoiseSVN"
|
||||||
target "https://tortoisesvn.net/"
|
target "http://tortoisesvn.tigris.org/"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -29228,7 +29228,7 @@ Instala el programa
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "Jpgfdraw"
|
name "Jpgfdraw"
|
||||||
target "https://www.ctan.org/pkg/flowframtk"
|
target "https://www.ctan.org/tex-archive/graphics/jpgfdraw"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -29275,7 +29275,7 @@ status collapsed
|
|||||||
Más información en
|
Más información en
|
||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
target "https://ctan.org/pkg/shapepar"
|
target "http://www.dickimaw-books.com/apps/jpgfdraw/manual/shapepar.html"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
|
@ -47406,7 +47406,7 @@ Documentación del paquete \SpecialChar LaTeX
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "caption"
|
name "caption"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/caption/caption.pdf"
|
target "https://www.ctan.org/tex-archive/macros/latex/contrib/caption/caption-eng.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -47445,7 +47445,7 @@ Documentación del paquete \SpecialChar LaTeX
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "diagbox"
|
name "diagbox"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/diagbox/diagbox.pdf"
|
target "https://www.ctan.org/tex-archive/macros/latex/contrib//diagbox/diagbox.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -47523,7 +47523,7 @@ Documentación del paquete \SpecialChar LaTeX
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "footmisc"
|
name "footmisc"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/footmisc/footmisc-doc.pdf"
|
target "https://www.ctan.org/tex-archive/macros/latex/contrib//footmisc/footmisc.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -47562,7 +47562,7 @@ Documentación del paquete \SpecialChar LaTeX
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "hypcap"
|
name "hypcap"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/hypcap/hypcap.pdf"
|
target "https://www.ctan.org/tex-archive/macros/latex/contrib/oberdiek/hypcap.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -47601,7 +47601,7 @@ Documentación del paquete \SpecialChar LaTeX
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "hyperref"
|
name "hyperref"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/hyperref/doc/hyperref-doc.pdf"
|
target "https://www.ctan.org/tex-archive/macros/latex/contrib//hyperref/hyperref.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -47640,7 +47640,7 @@ Documentación del paquete \SpecialChar LaTeX
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "KOMA-Script"
|
name "KOMA-Script"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/koma-script/doc/scrguide-en.pdf"
|
target "https://www.ctan.org/tex-archive/macros/latex/contrib/koma-script/doc/scrguien.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -47690,7 +47690,7 @@ literal "false"
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "ejemplo"
|
name "ejemplo"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/lettrine/doc/lettrine.pdf"
|
target "https://www.ctan.org/tex-archive/macros/latex/contrib/lettrine/doc/demo.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -48000,7 +48000,7 @@ Documentación del paquete \SpecialChar LaTeX
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "sidecap"
|
name "sidecap"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/sidecap/sidecap.pdf"
|
target "https://www.ctan.org/tex-archive/macros/latex/contrib//sidecap/sidecap.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
|
@ -39490,7 +39490,7 @@ literal "true"
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "Descripción"
|
name "Descripción"
|
||||||
target "https://mirrors.ctan.org/macros/latex/required/amsmath/amsldoc.pdf"
|
target "https://www.ctan.org/tex-archive/macros/latex/required/amslatex/math/amsldoc.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -39583,7 +39583,7 @@ literal "true"
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "Documentación"
|
name "Documentación"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/hyperref/doc/hyperref-doc.pdf"
|
target "https://www.ctan.org/tex-archive/macros/latex/contrib/hyperref/doc/manual.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
|
@ -52256,7 +52256,7 @@ status collapsed
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://texfaq.org/
|
http://www.tex.ac.uk/faq/
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -52411,7 +52411,7 @@ literal "true"
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "Documentación"
|
name "Documentación"
|
||||||
target "https://mirrors.ctan.org/biblio/biber/base/documentation/biber.pdf"
|
target "https://www.ctan.org/tex-archive/biblio/biber/documentation/biber.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -52446,7 +52446,7 @@ status collapsed
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://mirrors.ctan.org/biblio/biber/base/documentation/biber.pdf
|
https://www.ctan.org/tex-archive/biblio/biber/documentation/biber.pdf
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -52618,7 +52618,7 @@ literal "true"
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "Documentación"
|
name "Documentación"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/caption/caption.pdf"
|
target "https://www.ctan.org/tex-archive/macros/latex/contrib/caption/caption-eng.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -52653,7 +52653,7 @@ status collapsed
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://mirrors.ctan.org/macros/latex/contrib/caption/caption.pdf
|
https://www.ctan.org/tex-archive/macros/latex/contrib/caption/caption-eng.pdf
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -52783,7 +52783,7 @@ literal "true"
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "Documentación"
|
name "Documentación"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/hyperref/doc/hyperref-doc.pdf"
|
target "https://www.ctan.org/tex-archive/macros/latex/contrib/hyperref/doc/manual.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -52818,7 +52818,7 @@ status collapsed
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://mirrors.ctan.org/macros/latex/contrib/hyperref/doc/hyperref-doc.pdf
|
https://www.ctan.org/tex-archive/macros/latex/contrib/hyperref/doc/manual.pdf
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
|
@ -2225,7 +2225,7 @@ status open
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://texfaq.org/FAQ-overfull
|
http://www.tex.ac.uk/FAQ-overfull.html
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -2804,7 +2804,7 @@ status open
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://ctan.org/tex-archive/macros/latex/required/amsmath
|
ftp://ftp.ams.org/pub/tex/amslatex/
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -6383,7 +6383,7 @@ status collapsed
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://journals.aas.org/aastex-package-for-manuscript-preparation/
|
https://aas.org/aastex/aastex-downloads
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -7834,7 +7834,7 @@ status collapsed
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://journals.aps.org/revtex
|
http://publish.aps.org/revtex4/
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -9296,7 +9296,7 @@ G-Brief (V.
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "CTAN"
|
name "CTAN"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/g-brief/g-brief.pdf"
|
target "http://mirrors.ctan.org/macros/latex/contrib/g-brief/g-brief.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -21460,7 +21460,7 @@ Installer le programme
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "Jpgfdraw"
|
name "Jpgfdraw"
|
||||||
target "https://www.ctan.org/pkg/flowframtk"
|
target "https://www.ctan.org/tex-archive/graphics/jpgfdraw"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -21514,7 +21514,7 @@ status collapsed
|
|||||||
Pour plus d'information voir
|
Pour plus d'information voir
|
||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
target "https://ctan.org/pkg/shapepar"
|
target "http://www.dickimaw-books.com/apps/jpgfdraw/manual/shapepar.html"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -22148,7 +22148,7 @@ status collapsed
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://ctan.org/tex-archive/macros/latex/contrib/custom-bib
|
ftp://ctan.tug.org/tex-archive/macros/latex/contrib/custom-bib/
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -22211,7 +22211,7 @@ status collapsed
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://ctan.org/tex-archive/macros/latex/contrib/bibtopic
|
ftp://ctan.tug.org/tex-archive/macros/latex/contrib/bibtopic/
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -27776,7 +27776,7 @@ chktex
|
|||||||
|
|
||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
target "https://www.nongnu.org/chktex/ChkTeX.pdf"
|
target "https://www.ctan.org/tex-archive/help/Catalogue/entries/chktex.html"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -30028,7 +30028,7 @@ status collapsed
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://cvs.nongnu.org/
|
http://ximbiot.com/cvs
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -32074,7 +32074,7 @@ literal "false"
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "TortoiseSVN"
|
name "TortoiseSVN"
|
||||||
target "https://tortoisesvn.net/"
|
target "http://tortoisesvn.tigris.org/"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
|
@ -50305,7 +50305,7 @@ Documentation du paquetage \SpecialChar LaTeX
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "caption"
|
name "caption"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/caption/caption.pdf"
|
target "https://www.ctan.org/tex-archive/macros/latex/contrib/caption/caption-eng.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -50353,7 +50353,7 @@ Documentation du paquetage \SpecialChar LaTeX
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "diagbox"
|
name "diagbox"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/diagbox/diagbox.pdf"
|
target "https://www.ctan.org/tex-archive/macros/latex/contrib//diagbox/diagbox.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -50449,7 +50449,7 @@ Documentation du paquetage \SpecialChar LaTeX
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "footmisc"
|
name "footmisc"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/footmisc/footmisc-doc.pdf"
|
target "https://www.ctan.org/tex-archive/macros/latex/contrib//footmisc/footmisc.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -50497,7 +50497,7 @@ Documentation du paquetage \SpecialChar LaTeX
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "hypcap"
|
name "hypcap"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/hypcap/hypcap.pdf"
|
target "https://www.ctan.org/tex-archive/macros/latex/contrib/oberdiek/hypcap.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -50545,7 +50545,7 @@ Documentation du paquetage \SpecialChar LaTeX
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "hyperref"
|
name "hyperref"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/hyperref/doc/hyperref-doc.pdf"
|
target "https://www.ctan.org/tex-archive/macros/latex/contrib//hyperref/hyperref.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -50593,7 +50593,7 @@ Documentation du paquetage \SpecialChar LaTeX
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "KOMA-Script"
|
name "KOMA-Script"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/koma-script/doc/scrguide-en.pdf"
|
target "https://www.ctan.org/tex-archive/macros/latex/contrib/koma-script/doc/scrguien.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -50652,7 +50652,7 @@ literal "false"
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "exemple"
|
name "exemple"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/lettrine/doc/lettrine.pdf"
|
target "https://www.ctan.org/tex-archive/macros/latex/contrib/lettrine/doc/demo.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -51034,7 +51034,7 @@ Documentation du paquetage \SpecialChar LaTeX
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "sidecap"
|
name "sidecap"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/sidecap/sidecap.pdf"
|
target "https://www.ctan.org/tex-archive/macros/latex/contrib//sidecap/sidecap.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
|
@ -43782,7 +43782,7 @@ literal "true"
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "Liste"
|
name "Liste"
|
||||||
target "https://mirrors.ctan.org/info/symbols/comprehensive/symbols-a4.pdf"
|
target "ftp://ftp.dante.de/tex-archive/info/symbols/comprehensive/symbols-a4.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -43850,7 +43850,7 @@ literal "true"
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "Documentation"
|
name "Documentation"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/hyperref/doc/hyperref-doc.pdf"
|
target "https://www.ctan.org/tex-archive/macros/latex/contrib/hyperref/doc/manual.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
|
@ -42728,7 +42728,7 @@ status open
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://www.lyx.org/trac/browser/dictionaries/thes/
|
https://www.lyx.org/trac/export/HEAD/lyxsvn/dictionaries/trunk/thes/
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -58395,7 +58395,7 @@ status collapsed
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://texfaq.org/
|
http://www.tex.ac.uk/faq/
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -58558,7 +58558,7 @@ literal "true"
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "Documentation"
|
name "Documentation"
|
||||||
target "https://mirrors.ctan.org/biblio/biber/base/documentation/biber.pdf"
|
target "https://www.ctan.org/tex-archive/biblio/biber/documentation/biber.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -58601,7 +58601,7 @@ status collapsed
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://mirrors.ctan.org/biblio/biber/base/documentation/biber.pdf
|
https://www.ctan.org/tex-archive/biblio/biber/documentation/biber.pdf
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -58718,7 +58718,7 @@ status open
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
http//mirrors.ctan.org/indexing/xindex/doc/xindex-doc.pdf
|
http://mirrors.ctan.org/indexing/xindex/doc/xindex-doc.pdf
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -58812,7 +58812,7 @@ literal "true"
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "Documentation"
|
name "Documentation"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/caption/caption.pdf"
|
target "https://www.ctan.org/tex-archive/macros/latex/contrib/caption/caption-eng.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -58855,7 +58855,7 @@ status collapsed
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://mirrors.ctan.org/macros/latex/contrib/caption/caption.pdf
|
https://www.ctan.org/tex-archive/macros/latex/contrib/caption/caption-eng.pdf
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -59001,7 +59001,7 @@ literal "true"
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "Documentation"
|
name "Documentation"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/hyperref/doc/hyperref-doc.pdf"
|
target "https://www.ctan.org/tex-archive/macros/latex/contrib/hyperref/doc/manual.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -59044,7 +59044,7 @@ status collapsed
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://mirrors.ctan.org/macros/latex/contrib/hyperref/doc/hyperref-doc.pdf
|
https://www.ctan.org/tex-archive/macros/latex/contrib/hyperref/doc/manual.pdf
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
|
@ -3251,7 +3251,7 @@ status open
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://texfaq.org/FAQ-overfull
|
http://www.tex.ac.uk/FAQ-overfull.html
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -4106,7 +4106,7 @@ status open
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://ctan.org/tex-archive/macros/latex/required/amsmath
|
ftp://ftp.ams.org/pub/tex/amslatex/
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -7721,7 +7721,7 @@ status collapsed
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://journals.aas.org/aastex-package-for-manuscript-preparation/
|
https://aas.org/aastex/aastex-downloads
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -9060,7 +9060,7 @@ status collapsed
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://journals.aps.org/revtex
|
http://publish.aps.org/revtex4/
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -10231,7 +10231,7 @@ G-Brief
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "CTAN"
|
name "CTAN"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/g-brief/g-brief.pdf"
|
target "http://mirrors.ctan.org/macros/latex/contrib/g-brief/g-brief.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -20290,7 +20290,7 @@ rem ipsum dolor sit amet,
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "Jpgfdraw"
|
name "Jpgfdraw"
|
||||||
target "https://www.ctan.org/pkg/flowframtk"
|
target "https://www.ctan.org/tex-archive/graphics/jpgfdraw"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -20348,7 +20348,7 @@ status collapsed
|
|||||||
|
|
||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
target "https://ctan.org/pkg/shapepar"
|
target "http://www.dickimaw-books.com/apps/jpgfdraw/manual/shapepar.html"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -20958,7 +20958,7 @@ status open
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://ctan.org/tex-archive/macros/latex/contrib/custom-bib
|
ftp://ctan.tug.org/tex-archive/macros/latex/contrib/custom-bib/
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -21012,7 +21012,7 @@ status open
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://ctan.org/tex-archive/macros/latex/contrib/bibtopic
|
ftp://ctan.tug.org/tex-archive/macros/latex/contrib/bibtopic/
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -22955,7 +22955,7 @@ status collapsed
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "オンラインでのアクセス"
|
name "オンラインでのアクセス"
|
||||||
target "https://www.lyx.org/trac/browser/lyxgit/development/HTML/HTML.notes"
|
target "https://www.lyx.org/trac/browser/lyx-devel/trunk/development/HTML/HTML.notes"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -25950,7 +25950,7 @@ CTAN
|
|||||||
|
|
||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
target "https://www.nongnu.org/chktex/ChkTeX.pdf"
|
target "https://www.ctan.org/tex-archive/help/Catalogue/entries/chktex.html"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -27599,7 +27599,7 @@ status collapsed
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://cvs.nongnu.org/
|
http://ximbiot.com/cvs
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -29388,7 +29388,7 @@ literal "false"
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "TortoiseSVN"
|
name "TortoiseSVN"
|
||||||
target "https://tortoisesvn.net/"
|
target "http://tortoisesvn.tigris.org/"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
|
@ -50506,7 +50506,7 @@ literal "true"
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "caption"
|
name "caption"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/caption/caption.pdf"
|
target "https://www.ctan.org/tex-archive/macros/latex/contrib/caption/caption-eng.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -50564,7 +50564,7 @@ literal "true"
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "diagbox"
|
name "diagbox"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/diagbox/diagbox.pdf"
|
target "https://www.ctan.org/tex-archive/macros/latex/contrib//diagbox/diagbox.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -50680,7 +50680,7 @@ literal "true"
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "footmisc"
|
name "footmisc"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/footmisc/footmisc-doc.pdf"
|
target "https://www.ctan.org/tex-archive/macros/latex/contrib//footmisc/footmisc.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -50738,7 +50738,7 @@ literal "true"
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "hypcap"
|
name "hypcap"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/hypcap/hypcap.pdf"
|
target "https://www.ctan.org/tex-archive/macros/latex/contrib/oberdiek/hypcap.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -50796,7 +50796,7 @@ literal "true"
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "hyperref"
|
name "hyperref"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/hyperref/doc/hyperref-doc.pdf"
|
target "https://www.ctan.org/tex-archive/macros/latex/contrib//hyperref/hyperref.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -50854,7 +50854,7 @@ literal "true"
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "KOMA-Script"
|
name "KOMA-Script"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/koma-script/doc/scrguide-en.pdf"
|
target "https://www.ctan.org/tex-archive/macros/latex/contrib/koma-script/doc/scrguien.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -50923,7 +50923,7 @@ literal "false"
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "用例"
|
name "用例"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/lettrine/doc/lettrine.pdf"
|
target "https://www.ctan.org/tex-archive/macros/latex/contrib/lettrine/doc/demo.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -51385,7 +51385,7 @@ literal "true"
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "sidecap"
|
name "sidecap"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/sidecap/sidecap.pdf"
|
target "https://www.ctan.org/tex-archive/macros/latex/contrib//sidecap/sidecap.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
|
@ -3331,7 +3331,7 @@ status collapsed
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://www.dante.de
|
http://www.dante.de
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -3944,7 +3944,7 @@ status collapsed
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://www.worldscientific.com/page/ijmpc/submission-guidelines
|
http://www.worldscinet.com/ijmpc/mkt/guidelines.shtml
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -3990,7 +3990,7 @@ status collapsed
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://www.worldscientific.com/page/ijmpd/submission-guidelines
|
http://www.worldscinet.com/ijmpd/mkt/guidelines.shtml
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -4036,7 +4036,7 @@ status collapsed
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://publishingsupport.iopscience.iop.org/questions/latex-template/
|
ftp://ftp.iop.org/pub/journals/latex2e
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -4867,7 +4867,7 @@ status collapsed
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://ctan.org/pkg/llncs
|
ftp://ftp.springer.de/pub/tex/latex/llncs/latex2e
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -4906,7 +4906,7 @@ status open
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://maa.org/publication/the-american-mathematical-monthly/
|
https://www.maa.org/press/periodicals/american-mathematical-monthly
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -5283,7 +5283,7 @@ status collapsed
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://journals.aps.org/revtex
|
http://publish.aps.org/revtex4/
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -5752,7 +5752,7 @@ status collapsed
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://www.isprs.org/documents/orangebook/LATEX/ISPRSguidelines_authors_fullpaper_latex_2024_01_17.zip
|
http://www.isprs.org/documents/orangebook/LATEX/ISPRSguidelines_authors_latex.zip
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
|
@ -46530,7 +46530,7 @@ hyperref
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "取扱説明書"
|
name "取扱説明書"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/hyperref/doc/hyperref-doc.pdf"
|
target "https://www.ctan.org/tex-archive/macros/latex/contrib/hyperref/doc/manual.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
|
@ -44340,7 +44340,7 @@ status open
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://www.lyx.org/trac/browser/dictionaries/thes/
|
https://www.lyx.org/trac/export/HEAD/lyxsvn/dictionaries/trunk/thes/
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -59613,7 +59613,7 @@ literal "true"
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "Credits"
|
name "Credits"
|
||||||
target "https://www.lyx.org/trac/browser/lyxgit/lib/CREDITS"
|
target "https://www.lyx.org/trac/browser/lyx-devel/trunk/lib/CREDITS"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -59771,7 +59771,7 @@ status collapsed
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://texfaq.org/
|
http://www.tex.ac.uk/faq/
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -59980,7 +59980,7 @@ biber
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "取扱説明書"
|
name "取扱説明書"
|
||||||
target "https://mirrors.ctan.org/biblio/biber/base/documentation/biber.pdf"
|
target "https://www.ctan.org/tex-archive/biblio/biber/documentation/biber.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -59995,7 +59995,7 @@ status collapsed
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://mirrors.ctan.org/biblio/biber/base/documentation/biber.pdf
|
https://www.ctan.org/tex-archive/biblio/biber/documentation/biber.pdf
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -60097,7 +60097,7 @@ xindex
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "取扱説明書"
|
name "取扱説明書"
|
||||||
target "http//mirrors.ctan.org/indexing/xindex/doc/xindex-doc.pdf"
|
target "http://mirrors.ctan.org/indexing/xindex/doc/xindex-doc.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -60112,7 +60112,7 @@ status open
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
http//mirrors.ctan.org/indexing/xindex/doc/xindex-doc.pdf
|
http://mirrors.ctan.org/indexing/xindex/doc/xindex-doc.pdf
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -60244,7 +60244,7 @@ caption
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "取扱説明書"
|
name "取扱説明書"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/caption/caption.pdf"
|
target "https://www.ctan.org/tex-archive/macros/latex/contrib/caption/caption-eng.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -60259,7 +60259,7 @@ status collapsed
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://mirrors.ctan.org/macros/latex/contrib/caption/caption.pdf
|
https://www.ctan.org/tex-archive/macros/latex/contrib/caption/caption-eng.pdf
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -60460,7 +60460,7 @@ hyperref
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "取扱説明書"
|
name "取扱説明書"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/hyperref/doc/hyperref-doc.pdf"
|
target "https://www.ctan.org/tex-archive/macros/latex/contrib/hyperref/doc/manual.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -60475,7 +60475,7 @@ status collapsed
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://mirrors.ctan.org/macros/latex/contrib/hyperref/doc/hyperref-doc.pdf
|
https://www.ctan.org/tex-archive/macros/latex/contrib/hyperref/doc/manual.pdf
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
|
@ -1831,7 +1831,7 @@ status open
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://texfaq.org/FAQ-overfull
|
http://www.tex.ac.uk/FAQ-overfull.html
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -2403,7 +2403,7 @@ status open
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://ctan.org/tex-archive/macros/latex/contrib/custom-bib
|
ftp://ctan.tug.org/tex-archive/macros/latex/contrib/custom-bib/
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -2458,7 +2458,7 @@ status open
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://ctan.org/tex-archive/macros/latex/contrib/bibtopic
|
ftp://ctan.tug.org/tex-archive/macros/latex/contrib/bibtopic/
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -3387,7 +3387,7 @@ status collapsed
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://ctan.org/tex-archive/macros/latex/contrib/fancyhdr
|
https://www.ctan.org/tex-archive/help/Catalogue/entries/fancyhdr.html
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -7707,7 +7707,7 @@ status collapsed
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://www.overleaf.com/latex/templates/astronomy-and-astrophysics-template/ngdddtchkbcg
|
ftp://ftp.edpsciences.org/pub/aa/readme.html
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -8230,7 +8230,7 @@ status collapsed
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://journals.aas.org/aastex-package-for-manuscript-preparation/
|
https://aas.org/aastex/aastex-downloads
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -9374,7 +9374,7 @@ status open
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://ctan.org/tex-archive/macros/latex/required/amsmath
|
ftp://ftp.ams.org/pub/tex/amslatex/
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -12246,7 +12246,7 @@ chktex
|
|||||||
|
|
||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
target "https://www.nongnu.org/chktex/ChkTeX.pdf"
|
target "https://www.ctan.org/tex-archive/help/Catalogue/entries/chktex.html"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -13926,7 +13926,7 @@ status collapsed
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://cvs.nongnu.org/
|
http://ximbiot.com/cvs
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -15634,7 +15634,7 @@ literal "false"
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "TortoiseSVN"
|
name "TortoiseSVN"
|
||||||
target "https://tortoisesvn.net/"
|
target "http://tortoisesvn.tigris.org/"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -20164,7 +20164,7 @@ rem ipsum dolor sit amet,
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "Jpgfdraw"
|
name "Jpgfdraw"
|
||||||
target "https://www.ctan.org/pkg/flowframtk"
|
target "https://www.ctan.org/tex-archive/graphics/jpgfdraw"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -20219,7 +20219,7 @@ status collapsed
|
|||||||
|
|
||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
target "https://ctan.org/pkg/shapepar"
|
target "http://www.dickimaw-books.com/apps/jpgfdraw/manual/shapepar.html"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
|
@ -47783,7 +47783,7 @@ Documentation of the \SpecialChar LaTeX
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "caption"
|
name "caption"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/caption/caption.pdf"
|
target "https://www.ctan.org/tex-archive/macros/latex/contrib/caption/caption-eng.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -47822,7 +47822,7 @@ Documentation of the \SpecialChar LaTeX
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "diagbox"
|
name "diagbox"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/diagbox/diagbox.pdf"
|
target "https://www.ctan.org/tex-archive/macros/latex/contrib//diagbox/diagbox.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -47900,7 +47900,7 @@ Documentation of the \SpecialChar LaTeX
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "footmisc"
|
name "footmisc"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/footmisc/footmisc-doc.pdf"
|
target "https://www.ctan.org/tex-archive/macros/latex/contrib//footmisc/footmisc.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -47939,7 +47939,7 @@ Documentation of the \SpecialChar LaTeX
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "hypcap"
|
name "hypcap"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/hypcap/hypcap.pdf"
|
target "https://www.ctan.org/tex-archive/macros/latex/contrib/oberdiek/hypcap.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -47978,7 +47978,7 @@ Documentation of the \SpecialChar LaTeX
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "hyperref"
|
name "hyperref"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/hyperref/doc/hyperref-doc.pdf"
|
target "https://www.ctan.org/tex-archive/macros/latex/contrib//hyperref/hyperref.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -48017,7 +48017,7 @@ Documentation of the \SpecialChar LaTeX
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "KOMA-Script"
|
name "KOMA-Script"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/koma-script/doc/scrguide-en.pdf"
|
target "https://www.ctan.org/tex-archive/macros/latex/contrib/koma-script/doc/scrguien.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -48067,7 +48067,7 @@ literal "false"
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "example"
|
name "example"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/lettrine/doc/lettrine.pdf"
|
target "https://www.ctan.org/tex-archive/macros/latex/contrib/lettrine/doc/demo.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -48377,7 +48377,7 @@ Documentation of the \SpecialChar LaTeX
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "sidecap"
|
name "sidecap"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/sidecap/sidecap.pdf"
|
target "https://www.ctan.org/tex-archive/macros/latex/contrib//sidecap/sidecap.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
|
@ -39131,7 +39131,7 @@ literal "true"
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "Documentation"
|
name "Documentation"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/hyperref/doc/hyperref-doc.pdf"
|
target "https://www.ctan.org/tex-archive/macros/latex/contrib/hyperref/doc/manual.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
|
@ -37695,7 +37695,7 @@ status collapsed
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://www.lyx.org/trac/browser/dictionaries/thes/
|
https://www.lyx.org/trac/export/HEAD/lyxsvn/dictionaries/trunk/thes/
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -51909,7 +51909,7 @@ status collapsed
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://texfaq.org/
|
http://www.tex.ac.uk/faq/
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -52063,7 +52063,7 @@ literal "true"
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "Documentation"
|
name "Documentation"
|
||||||
target "https://mirrors.ctan.org/biblio/biber/base/documentation/biber.pdf"
|
target "https://www.ctan.org/tex-archive/biblio/biber/documentation/biber.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -52097,7 +52097,7 @@ status collapsed
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://mirrors.ctan.org/biblio/biber/base/documentation/biber.pdf
|
https://www.ctan.org/tex-archive/biblio/biber/documentation/biber.pdf
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -52270,7 +52270,7 @@ literal "true"
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "Documentation"
|
name "Documentation"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/caption/caption.pdf"
|
target "https://www.ctan.org/tex-archive/macros/latex/contrib/caption/caption-eng.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -52304,7 +52304,7 @@ status collapsed
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://mirrors.ctan.org/macros/latex/contrib/caption/caption.pdf
|
https://www.ctan.org/tex-archive/macros/latex/contrib/caption/caption-eng.pdf
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -52432,7 +52432,7 @@ literal "true"
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "Documentation"
|
name "Documentation"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/hyperref/doc/hyperref-doc.pdf"
|
target "https://www.ctan.org/tex-archive/macros/latex/contrib/hyperref/doc/manual.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
@ -52466,7 +52466,7 @@ status collapsed
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://mirrors.ctan.org/macros/latex/contrib/hyperref/doc/hyperref-doc.pdf
|
https://www.ctan.org/tex-archive/macros/latex/contrib/hyperref/doc/manual.pdf
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
|
@ -159,7 +159,7 @@ status collapsed
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://aastex.aas.org/aastex/revisionhistory.html
|
http://journals.aas.org/authors/aastex/revisionhistory.html
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
|
@ -581,7 +581,7 @@ status open
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://www.bl.uk/legal-deposit-web-archiving/
|
https://www.bl.uk/legal-deposit
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
|
@ -113,7 +113,7 @@ status open
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://mirrors.ctan.org/macros/latex/contrib/moderncv/template.tex
|
https://ctan.org/tex-archive/macros/latex/contrib/moderncv/examples/template.tex
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
|
@ -873,7 +873,7 @@ literal "true"
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "Documentation"
|
name "Documentation"
|
||||||
target "https://mirrors.ctan.org/fonts/feyn/feyn.pdf"
|
target "http://mirror.ctan.org/fonts/feyn/feyn.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
|
@ -2047,7 +2047,7 @@ status collapsed
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://texample.net/media/tikz/examples/TEX/free-body-diagrams.tex
|
http://www.texample.net/media/tikz/examples/TEX/free-body-diagrams.tex
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
|
@ -320,7 +320,7 @@ status collapsed
|
|||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/koma-script/doc/scrguide-en.pdf"
|
target "http://www.ctan.org/tex-archive/macros/latex/contrib/koma-script/doc/scrguien.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
|
@ -283,7 +283,7 @@ status collapsed
|
|||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/koma-script/doc/scrguide-en.pdf"
|
target "http://www.ctan.org/tex-archive/macros/latex/contrib/koma-script/doc/scrguien.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
|
@ -339,7 +339,7 @@ status collapsed
|
|||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/koma-script/doc/scrguide-en.pdf"
|
target "http://www.ctan.org/tex-archive/macros/latex/contrib/koma-script/doc/scrguien.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
|
@ -733,8 +733,8 @@ For more informations about the Braille cell dimensions have a look at
|
|||||||
|
|
||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "https://www.brailleauthority.org/sizespacingofbraille/index.html"
|
name "http://www.brailleauthority.org/sizespacingofbraille/index.html"
|
||||||
target "https://www.brailleauthority.org/sizespacingofbraille/index.html"
|
target "http://www.brailleauthority.org/sizespacingofbraille/index.html"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
|
@ -1946,7 +1946,7 @@ Documentation of the \SpecialChar LaTeX
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "caption"
|
name "caption"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/caption/caption.pdf"
|
target "ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/caption/caption-eng.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
|
@ -3443,7 +3443,7 @@ literal "true"
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "Documentation"
|
name "Documentation"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/hyperref/doc/hyperref-doc.pdf"
|
target "https://ctan.org/tex-archive/macros/latex/contrib/hyperref/doc/manual.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
|
@ -288,7 +288,7 @@ paralist
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "its documentation on CTAN"
|
name "its documentation on CTAN"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/paralist/paralist.pdf"
|
target "http://dante.ctan.org/CTAN/macros/latex/contrib/paralist/paralist.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
|
@ -259,7 +259,7 @@ status collapsed
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://stat.ethz.ch/R-manual/R-devel/library/utils/doc/Sweave.pdf
|
https://github.com/downloads/yihui/lyx/sweave.pdf
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
|
@ -250,7 +250,7 @@ status open
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://ghostscript.readthedocs.io/en/latest/Use.html
|
https://www.ghostscript.com/doc/current/Use.htm
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
|
@ -878,7 +878,7 @@ literal "true"
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "Dokumentation"
|
name "Dokumentation"
|
||||||
target "https://mirrors.ctan.org/fonts/feyn/feyn.pdf"
|
target "http://mirror.ctan.org/fonts/feyn/feyn.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
|
@ -361,7 +361,7 @@ status collapsed
|
|||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/koma-script/doc/scrguide-de.pdf"
|
target "https://ctan.org/tex-archive/macros/latex/contrib/koma-script/doc/scrguide.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
|
@ -311,7 +311,7 @@ status collapsed
|
|||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/koma-script/doc/scrguide-de.pdf"
|
target "https://ctan.org/tex-archive/macros/latex/contrib/koma-script/doc/scrguide.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
|
@ -363,7 +363,7 @@ status collapsed
|
|||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/koma-script/doc/scrguide-de.pdf"
|
target "https://ctan.org/tex-archive/macros/latex/contrib/koma-script/doc/scrguide.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
|
@ -741,8 +741,8 @@ Für mehr Informationen über die Braille-Zellendimensionen sei auf
|
|||||||
|
|
||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "https://www.brailleauthority.org/sizespacingofbraille/index.html"
|
name "http://www.brailleauthority.org/sizespacingofbraille/index.html"
|
||||||
target "https://www.brailleauthority.org/sizespacingofbraille/index.html"
|
target "http://www.brailleauthority.org/sizespacingofbraille/index.html"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
|
@ -1986,7 +1986,7 @@ Dokumentation de \SpecialChar LaTeX
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "caption"
|
name "caption"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/caption/caption.pdf"
|
target "ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/caption/caption-eng.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
|
@ -3392,7 +3392,7 @@ literal "true"
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "Dokumentation"
|
name "Dokumentation"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/hyperref/doc/hyperref-doc.pdf"
|
target "https://ctan.org/tex-archive/macros/latex/contrib/hyperref/doc/manual.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
|
@ -114,7 +114,7 @@ status open
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://mirrors.ctan.org/macros/latex/contrib/moderncv/template.tex
|
https://ctan.org/tex-archive/macros/latex/contrib/moderncv/examples/template.tex
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
|
@ -766,8 +766,8 @@ Más información sobre las dimensiones de las celdas Braille en
|
|||||||
|
|
||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "https://www.brailleauthority.org/sizespacingofbraille/index.html"
|
name "http://www.brailleauthority.org/sizespacingofbraille/index.html"
|
||||||
target "https://www.brailleauthority.org/sizespacingofbraille/index.html"
|
target "http://www.brailleauthority.org/sizespacingofbraille/index.html"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
|
@ -894,7 +894,7 @@ literal "true"
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "Documentation"
|
name "Documentation"
|
||||||
target "https://mirrors.ctan.org/fonts/feyn/feyn.pdf"
|
target "http://mirror.ctan.org/fonts/feyn/feyn.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
|
@ -806,8 +806,8 @@ Pour en savoir plus sur la taille des cellules Braille,
|
|||||||
|
|
||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "https://www.brailleauthority.org/sizespacingofbraille/index.html"
|
name "http://www.brailleauthority.org/sizespacingofbraille/index.html"
|
||||||
target "https://www.brailleauthority.org/sizespacingofbraille/index.html"
|
target "http://www.brailleauthority.org/sizespacingofbraille/index.html"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
|
@ -2006,7 +2006,7 @@ Documentation of the \SpecialChar LaTeX
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "caption"
|
name "caption"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/caption/caption.pdf"
|
target "ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/caption/caption-eng.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
|
@ -808,7 +808,7 @@ feyn
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "取扱説明書"
|
name "取扱説明書"
|
||||||
target "https://mirrors.ctan.org/fonts/feyn/feyn.pdf"
|
target "http://mirror.ctan.org/fonts/feyn/feyn.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
|
@ -664,8 +664,8 @@ braille{#1}}
|
|||||||
|
|
||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "https://www.brailleauthority.org/sizespacingofbraille/index.html"
|
name "http://www.brailleauthority.org/sizespacingofbraille/index.html"
|
||||||
target "https://www.brailleauthority.org/sizespacingofbraille/index.html"
|
target "http://www.brailleauthority.org/sizespacingofbraille/index.html"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
|
@ -1886,7 +1886,7 @@ literal "true"
|
|||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "caption"
|
name "caption"
|
||||||
target "https://mirrors.ctan.org/macros/latex/contrib/caption/caption.pdf"
|
target "ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/caption/caption-eng.pdf"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
|
@ -248,7 +248,7 @@ status collapsed
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://stat.ethz.ch/R-manual/R-devel/library/utils/doc/Sweave.pdf
|
https://github.com/downloads/yihui/lyx/sweave.pdf
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
|
@ -748,8 +748,8 @@ Za više informacija o dimenziji Brajeve ćelije možete pogledi na
|
|||||||
|
|
||||||
\begin_inset CommandInset href
|
\begin_inset CommandInset href
|
||||||
LatexCommand href
|
LatexCommand href
|
||||||
name "https://www.brailleauthority.org/sizespacingofbraille/index.html"
|
name "http://www.brailleauthority.org/sizespacingofbraille/index.html"
|
||||||
target "https://www.brailleauthority.org/sizespacingofbraille/index.html"
|
target "http://www.brailleauthority.org/sizespacingofbraille/index.html"
|
||||||
literal "false"
|
literal "false"
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
|
@ -175,7 +175,7 @@ status collapsed
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://aastex.aas.org/aastex/revisionhistory.html
|
http://journals.aas.org/authors/aastex/revisionhistory.html
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
|
@ -381,7 +381,7 @@ status open
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://journals.aps.org/PACS
|
https://www.aip.org/pacs
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
|
@ -936,7 +936,7 @@ status open
|
|||||||
|
|
||||||
\begin_layout Plain Layout
|
\begin_layout Plain Layout
|
||||||
|
|
||||||
https://cs.overleaf.com/latex/templates/a-general-template-file-for-the-latex-package-svjour3-for-springer-journals/pbbwqhxxvtbp
|
ftp://ftp.springer.de/pub/tex/latex/svjour3/bibtex
|
||||||
\end_layout
|
\end_layout
|
||||||
|
|
||||||
\end_inset
|
\end_inset
|
||||||
|
Loading…
Reference in New Issue
Block a user