├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── gbt7714-2005.bst ├── get_texmf_dir.sh └── test ├── Makefile ├── issue-4.tex ├── test.bib ├── test.pdf └── test.tex /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haixing-Hu/GBT7714-2005-BibTeX-Style/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haixing-Hu/GBT7714-2005-BibTeX-Style/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haixing-Hu/GBT7714-2005-BibTeX-Style/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haixing-Hu/GBT7714-2005-BibTeX-Style/HEAD/README.md -------------------------------------------------------------------------------- /gbt7714-2005.bst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haixing-Hu/GBT7714-2005-BibTeX-Style/HEAD/gbt7714-2005.bst -------------------------------------------------------------------------------- /get_texmf_dir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haixing-Hu/GBT7714-2005-BibTeX-Style/HEAD/get_texmf_dir.sh -------------------------------------------------------------------------------- /test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haixing-Hu/GBT7714-2005-BibTeX-Style/HEAD/test/Makefile -------------------------------------------------------------------------------- /test/issue-4.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haixing-Hu/GBT7714-2005-BibTeX-Style/HEAD/test/issue-4.tex -------------------------------------------------------------------------------- /test/test.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haixing-Hu/GBT7714-2005-BibTeX-Style/HEAD/test/test.bib -------------------------------------------------------------------------------- /test/test.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haixing-Hu/GBT7714-2005-BibTeX-Style/HEAD/test/test.pdf -------------------------------------------------------------------------------- /test/test.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Haixing-Hu/GBT7714-2005-BibTeX-Style/HEAD/test/test.tex --------------------------------------------------------------------------------