├── .gitignore ├── README.md ├── english.code.tex ├── english.tex ├── general.tex ├── math.code.tex ├── math.tex ├── preamble.tex ├── review.code.tex ├── rv-utils.sty ├── sdutil.sty ├── showdata.sty └── update.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyuanLck/wrongquestion/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 自制错题模板,主要提供可方便跳转的交叉引用。 2 | -------------------------------------------------------------------------------- /english.code.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyuanLck/wrongquestion/HEAD/english.code.tex -------------------------------------------------------------------------------- /english.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyuanLck/wrongquestion/HEAD/english.tex -------------------------------------------------------------------------------- /general.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyuanLck/wrongquestion/HEAD/general.tex -------------------------------------------------------------------------------- /math.code.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyuanLck/wrongquestion/HEAD/math.code.tex -------------------------------------------------------------------------------- /math.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyuanLck/wrongquestion/HEAD/math.tex -------------------------------------------------------------------------------- /preamble.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyuanLck/wrongquestion/HEAD/preamble.tex -------------------------------------------------------------------------------- /review.code.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyuanLck/wrongquestion/HEAD/review.code.tex -------------------------------------------------------------------------------- /rv-utils.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyuanLck/wrongquestion/HEAD/rv-utils.sty -------------------------------------------------------------------------------- /sdutil.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyuanLck/wrongquestion/HEAD/sdutil.sty -------------------------------------------------------------------------------- /showdata.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyuanLck/wrongquestion/HEAD/showdata.sty -------------------------------------------------------------------------------- /update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhiyuanLck/wrongquestion/HEAD/update.py --------------------------------------------------------------------------------