summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/doc/latex')
-rw-r--r--Master/texmf-dist/doc/latex/thucoursework/Makefile71
-rw-r--r--Master/texmf-dist/doc/latex/thucoursework/README.md7
-rw-r--r--Master/texmf-dist/doc/latex/thucoursework/dtx-style.sty2
-rw-r--r--Master/texmf-dist/doc/latex/thucoursework/iihw.pdfbin309084 -> 236503 bytes
-rw-r--r--Master/texmf-dist/doc/latex/thucoursework/iihw.tex5
-rw-r--r--Master/texmf-dist/doc/latex/thucoursework/ithw.pdfbin83095 -> 70284 bytes
-rw-r--r--Master/texmf-dist/doc/latex/thucoursework/pdf_normal.pdfbin0 -> 14966 bytes
-rw-r--r--Master/texmf-dist/doc/latex/thucoursework/thucoursework.hd0
-rw-r--r--Master/texmf-dist/doc/latex/thucoursework/thucoursework.pdfbin252421 -> 224213 bytes
9 files changed, 7 insertions, 78 deletions
diff --git a/Master/texmf-dist/doc/latex/thucoursework/Makefile b/Master/texmf-dist/doc/latex/thucoursework/Makefile
deleted file mode 100644
index 2872ec98f52..00000000000
--- a/Master/texmf-dist/doc/latex/thucoursework/Makefile
+++ /dev/null
@@ -1,71 +0,0 @@
-# Makefile for thucoursework
-
-# Compiling method: xelatex/pdflatex
-PACKAGE = thucoursework
-INSTALL_PACKAGE = install-tl-unx.tar.gz
-INSTALL_DIR = ./install-texlive
-# automatic configuration of mirror
-REMOTE_INSTALLER_URL = http://mirror.ctan.org/systems/texlive/tlnet
-# Set opts for latexmk if you use it
-LATEXMKOPTS = -xelatex -halt-on-error -interaction=nonstopmode
-
-
-.PHONY: doc all archive pre_install_dep install_dep after_install_dep clean test
-
-all: after_install_dep iihw.pdf ithw.pdf
-
-pre_install_dep: $(INSTALL_PACKAGE)
-
-after_install_dep: install_dep
- # tricky, to make variable assignment in recipe, and to execute shell command and assign the print result to a variable.
- $(eval PLATFORM1=`$(INSTALL_DIR)/install-tl --print-platform`)
- $(eval PLATFORM2=$(shell echo $(PLATFORM1)))
- $(eval PLATFORM3=$(shell pwd))
- $(eval export PATH :=$(PLATFORM3)/texlive/bin/$(PLATFORM2):$(PATH))
- echo $$PATH
- # to make tlmgr work, we need perl
- tlmgr install xkeyval matlab-prettifier caption doublestroke xcolor listings l3kernel l3packages ms ulem fontspec environ trimspaces booktabs moreenum mathtools oberdiek enumitem fmtcount etoolbox latex-bin
-install_dep: pre_install_dep
- mkdir -p $(INSTALL_DIR)
- tar -zxvf $(INSTALL_PACKAGE) -C $(INSTALL_DIR) --strip-components 1
- $(INSTALL_DIR)/install-tl -profile tl.profile
-
-$(INSTALL_PACKAGE):
- wget $(REMOTE_INSTALLER_URL)/$(INSTALL_PACKAGE)
-
-clean:
- rm -fr $(INSTALL_DIR)
- rm -f *.idx *.ilg *.glo *.gls *.hd *.ind *.log *.out *.synctex.gz *.toc *.aux
-
-iihw.pdf: iihw.tex after_install_dep
- pdflatex iihw.tex
-
-ithw.pdf: ithw.tex after_install_dep
- xelatex ithw.tex
-
-archive:
- # make tar.gz which is submitted to ctan.org
- # first copy the necessary files to the dist dir
- cp README.md iihw.pdf ithw.pdf iihw.tex ithw.tex matlabscript.m pdf_normal.eps thucoursework.dtx thucoursework.pdf Makefile thucoursework/
- # then tar it
- COPYFILE_DISABLE=1 tar -zcvf thucoursework.tar.gz thucoursework/
-doc : $(PACKAGE).pdf
-
-$(PACKAGE).pdf : $(PACKAGE).dtx
- #latexmk $(LATEXXMKOPTS) $(PACKAGE).dtx
- xelatex $(PACKAGE).dtx
- makeindex -s gind.ist -o $(PACKAGE).ind $(PACKAGE).idx
- makeindex -s gglo.ist -o $(PACKAGE).gls $(PACKAGE).glo
- xelatex $(PACKAGE).dtx
- xelatex -synctex=1 $(PACKAGE).dtx
-
-test:
- # first clear out root texlive bin dir
- $(eval export PATH := /bin:/usr/bin)
- echo $$PATH
- $(eval PLATFORM1=`$(INSTALL_DIR)/install-tl --print-platform`)
- $(eval PLATFORM2=$(shell echo $(PLATFORM1)))
- $(eval PLATFORM3=$(shell pwd))
- $(eval export PATH := $(PLATFORM3)/texlive/bin/$(PLATFORM2):$(PATH))
- echo $$PATH
- tlmgr --version
diff --git a/Master/texmf-dist/doc/latex/thucoursework/README.md b/Master/texmf-dist/doc/latex/thucoursework/README.md
index 5791713aeed..61c7c82949e 100644
--- a/Master/texmf-dist/doc/latex/thucoursework/README.md
+++ b/Master/texmf-dist/doc/latex/thucoursework/README.md
@@ -1,5 +1,6 @@
# THU coursework Template
-[![Build Status](https://www.travis-ci.org/zhaofeng-shu33/THU-coursework-template.svg?branch=master)](https://www.travis-ci.org/zhaofeng-shu33/THU-coursework-template)
+[![Build Status](https://travis-ci.com/zhaofeng-shu33/THU-coursework-template.svg?branch=master)](https://travis-ci.com/zhaofeng-shu33/THU-coursework-template)
+
LaTeX package for students in Tsinghua University to write coursework more efficiently, also can be used by students from other university.
Notice that the package itself does not import ctex package, to use it with Chinese writing, see example file `ithw.tex` for detail.
@@ -39,9 +40,9 @@ Use `make doc` or run the following commands one by one:
## Contributors
- TA xiangxiangxu revised this template, zhaofeng-shu33 made it a latex package.
+ [Xiangxiang Xu](https://xiangxiangxu.com/) revised this template, zhaofeng-shu33 made it a latex package.
## License
- see [LICENSE.md](LICENSE.md) for detail.
+ This project is licensed by The LaTeX Project Public LiĀ­cense.
diff --git a/Master/texmf-dist/doc/latex/thucoursework/dtx-style.sty b/Master/texmf-dist/doc/latex/thucoursework/dtx-style.sty
index 9b504a94f54..5fbc6522f99 100644
--- a/Master/texmf-dist/doc/latex/thucoursework/dtx-style.sty
+++ b/Master/texmf-dist/doc/latex/thucoursework/dtx-style.sty
@@ -8,7 +8,7 @@
%%
%% This is a generated file.
%%
-%% Copyright (C) 2018 by zhaofeng-shu33 <616545598@qq.com>
+%% Copyright (C) 2020 by zhaofeng-shu33 <616545598@qq.com>
%%
%% This work may be distributed and/or modified under the
%% conditions of the LaTeX Project Public License, either version 1.3
diff --git a/Master/texmf-dist/doc/latex/thucoursework/iihw.pdf b/Master/texmf-dist/doc/latex/thucoursework/iihw.pdf
index a9582fec984..3a084a0d341 100644
--- a/Master/texmf-dist/doc/latex/thucoursework/iihw.pdf
+++ b/Master/texmf-dist/doc/latex/thucoursework/iihw.pdf
Binary files differ
diff --git a/Master/texmf-dist/doc/latex/thucoursework/iihw.tex b/Master/texmf-dist/doc/latex/thucoursework/iihw.tex
index b444b3d01b0..6ed3e7f06cc 100644
--- a/Master/texmf-dist/doc/latex/thucoursework/iihw.tex
+++ b/Master/texmf-dist/doc/latex/thucoursework/iihw.tex
@@ -9,7 +9,6 @@
\usepackage{moreenum}
\usepackage{mathtools}
\usepackage{url}
-\usepackage[outdir=./]{epstopdf}
\usepackage{graphicx}
\usepackage{subcaption}
\usepackage{booktabs} % toprule
@@ -36,7 +35,7 @@
\rule{\textwidth}{1pt}
\begin{itemize}
\item {\bf Acknowledgments: \/}
- This template takes some materials from course CSE 547/Stat 548 of Washington University: \small{\url{https://courses.cs.washington.edu/courses/cse547/17sp/index.html}}.
+ This template takes some materials from course CSE 547/Stat 548, University of Washington: \small{\url{https://courses.cs.washington.edu/courses/cse547/17sp/index.html}}.
If you refer to other materials in your homework, please list here.
\item {\bf Collaborators: \/}
@@ -120,7 +119,7 @@ You may use \texttt{enumerate} to generate answers for each question:
\item You may need to add figure and source codes in your homework. Figure \ref{fig:1} is an example that compares the empirical distribution (histogram) and probability density function of the Gaussian random variable.
\begin{figure}[htbp]
\centering
- \includegraphics[width = 0.8\textwidth]{pdf_normal.eps}
+ \includegraphics[width = 0.8\textwidth]{pdf_normal.pdf}
\caption{Gaussian PDF and histogram of samples}
\label{fig:1}
\end{figure}
diff --git a/Master/texmf-dist/doc/latex/thucoursework/ithw.pdf b/Master/texmf-dist/doc/latex/thucoursework/ithw.pdf
index 17a80e57570..2007701e936 100644
--- a/Master/texmf-dist/doc/latex/thucoursework/ithw.pdf
+++ b/Master/texmf-dist/doc/latex/thucoursework/ithw.pdf
Binary files differ
diff --git a/Master/texmf-dist/doc/latex/thucoursework/pdf_normal.pdf b/Master/texmf-dist/doc/latex/thucoursework/pdf_normal.pdf
new file mode 100644
index 00000000000..708a1568b74
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/thucoursework/pdf_normal.pdf
Binary files differ
diff --git a/Master/texmf-dist/doc/latex/thucoursework/thucoursework.hd b/Master/texmf-dist/doc/latex/thucoursework/thucoursework.hd
deleted file mode 100644
index e69de29bb2d..00000000000
--- a/Master/texmf-dist/doc/latex/thucoursework/thucoursework.hd
+++ /dev/null
diff --git a/Master/texmf-dist/doc/latex/thucoursework/thucoursework.pdf b/Master/texmf-dist/doc/latex/thucoursework/thucoursework.pdf
index a22254b6254..ea6c3ddde00 100644
--- a/Master/texmf-dist/doc/latex/thucoursework/thucoursework.pdf
+++ b/Master/texmf-dist/doc/latex/thucoursework/thucoursework.pdf
Binary files differ