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