Skip to content

Commit

Permalink
Bump version to 0.4.1. Minor fix with enhanced examples
Browse files Browse the repository at this point in the history
Squashed commit of the following:

commit 425e8ef
Author: huxuan <[email protected]>
Date:   Mon Apr 20 22:23:30 2020 +0800

    Bump version to 0.4.1.

commit 1dc3076
Author: huxuan <[email protected]>
Date:   Mon Apr 20 22:23:21 2020 +0800

    Update example submodule.

commit c81fa14
Author: huxuan <[email protected]>
Date:   Mon Apr 20 22:22:58 2020 +0800

    Update modification date for Makefile.

commit 0218491
Author: huxuan <[email protected]>
Date:   Mon Apr 20 22:07:21 2020 +0800

    Document fix for multiple pages.

commit f540396
Author: huxuan <[email protected]>
Date:   Mon Apr 20 22:07:08 2020 +0800

    Makefile update mostly for dist.
  • Loading branch information
huxuan committed Apr 20, 2020
1 parent ded32ff commit 6aae8f7
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 13 deletions.
17 changes: 9 additions & 8 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# | Author: huxuan
# | E-mail: i(at)huxuan.org
# | Created: 2012-12-18
# | Last modified: 2020-04-16
# | Last modified: 2020-04-20
# | Description:
# | Makefile for resumecls
# |
Expand All @@ -12,7 +12,7 @@

PACKAGE=resumecls

.PHONY: all cls doc clean distclean dist
.PHONY: all cls doc dist clean distclean

all: doc

Expand All @@ -34,7 +34,13 @@ $(PACKAGE).pdf: $(PACKAGE).cls
xelatex $(PACKAGE).dtx
xelatex $(PACKAGE).dtx

# clean & distclean
# dist & clean

dist: distclean cls doc
mv $(PACKAGE).cls example/
cd example && make dist
cd .. && find $(PACKAGE) -name '*.pdf' | tar zcvf $(PACKAGE).tar.gz \
-T - --exclude-vcs --exclude-vcs-ignores $(PACKAGE)

clean:
-@rm -f \
Expand All @@ -56,8 +62,3 @@ distclean: clean
*.cls \
*.pdf \
*.tar.gz

dist: distclean cls doc
touch $(PACKAGE).tar.gz
tar zcvf $(PACKAGE).tar.gz ./$(PACKAGE).pdf --exclude=$(PACKAGE).tar.gz \
--exclude-vcs --exclude-vcs-ignores .
2 changes: 1 addition & 1 deletion example
Submodule example updated 4 files
+6 −4 Makefile
+8 −6 README.md
+13 −3 resume-en.tex
+13 −3 resume-zh.tex
9 changes: 5 additions & 4 deletions resumecls.dtx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
%<class>\NeedsTeXFormat{LaTeX2e}
%<class>\ProvidesClass{resumecls}
%<*class>
[2020/04/16 v0.4.0 Hello 2020]
[2020/04/20 v0.4.1 Minor fix with enhanced examples]
%</class>
%
%<*driver>
Expand Down Expand Up @@ -110,6 +110,7 @@
% \changes{v0.3.1}{2015/09/20}{Compatible with TeXLive 2015 now}
% \changes{v0.3.2}{2015/09/21}{Welcome, contributors}
% \changes{v0.4.0}{2020/04/16}{Hello 2020}
% \changes{v0.4.1}{2020/04/20}{Minor fix with enhanced examples}
%
% \GetFileInfo{\jobname.dtx}
%
Expand Down Expand Up @@ -359,8 +360,8 @@
%
% Since the document generated from \resumecls is just a bunch of tables, it is
% prettey straightfoward to enclose the contents in multiple table environments
% and use |\newpage| to split them into multiple pages. A minimal example looks
% like the following:
% and use |\clearpage| to split them into multiple pages. A minimal example
% looks like the following:
%
% \iffalse
%<*lst>
Expand All @@ -369,7 +370,7 @@
\begin{table}
Contents for Page 1
\end{table}
\newpage
\clearpage
\begin{table}
Contents for Page 2
\end{table}
Expand Down

0 comments on commit 6aae8f7

Please sign in to comment.