惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

G
Google Developers Blog
阮一峰的网络日志
阮一峰的网络日志
IT之家
IT之家
人人都是产品经理
人人都是产品经理
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园 - 【当耐特】
WordPress大学
WordPress大学
Hugging Face - Blog
Hugging Face - Blog
博客园 - 叶小钗
罗磊的独立博客
宝玉的分享
宝玉的分享
月光博客
月光博客
V
V2EX
博客园 - 司徒正美
Vercel News
Vercel News
量子位
Y
Y Combinator Blog
美团技术团队
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
T
Tailwind CSS Blog
博客园 - Franky
小众软件
小众软件
I
InfoQ
A
About on SuperTechFans

Red Blob Games: latest blog posts

Red Blob Games: English: a vs an Red Blob Games: Differential heuristics Red Blob Games: Responsive design calculator Red Blob Games: Highlighting interactive code blocks Red Blob Games: Optimizing page size Red Blob Games: Writing a guide to SDF fonts Red Blob Games: URLs with trailing punctuation Red Blob Games: What I did in 2025 Red Blob Games: Goodbye Sass Goodbye Sass Red Blob Games: RotMG map seeds Red Blob Games: Mapgen4 Mapgen4's use of WebGL2 Red Blob Games: Mapgen4 river shader Red Blob Games: Mapgen4 renderer Red Blob Games: Harnessing ChatGPT hallucinations Red Blob Games: Let Let's write a search engine, part 2 of 2 Red Blob Games: Let Let's write a search engine, part 1 of 2 Red Blob Games: Hexagon conversions Red Blob Games: Mapgen4 trade routes Red Blob Games: De-optimizing mapgen4 Red Blob Games: Hexagon spiral coordinates Red Blob Games: Thoughts on Flash Red Blob Games: What I did in 2024 Red Blob Games: Hexagon page animations Red Blob Games: SDF Halos SDF Halos Red Blob Games: SDF headless tests, part 2
Red Blob Games: Academic citations
2026-05-03 · via Red Blob Games: latest blog posts
Blog post: 2 May 2026

Although my site isn’t designed to fit into the academic world, occasionally an academic paper will cite one of my pages. Everyone uses a different format. That got me wondering if there are is a proper way to cite a web article. The first place I checked was Distill.pub. It’s a site I greatly admire, and it’s also a real journal with amazing people[1]. They would’ve given a lot of thought to this. At the bottom of each article they give both a text citation format and a BibTeX format[2]:

For attribution in academic contexts, please cite this work as

Carter & Nielsen, "Using Artificial Intelligence to Augment Human Intelligence", Distill, 2017.

BibTeX citation

@article{carter2017using,
  author = {Carter, Shan and Nielsen, Michael},
  title = {Using Artificial Intelligence to Augment Human Intelligence},
  journal = {Distill},
  year = {2017},
  note = {<https://distill.pub/2017/aia>},
  doi = {10.23915/distill.00009}
}

Should I do something similar?

I don’t have an academic journal like they do. I would need to find something that would work for a regular web site. I looked for recommendations for BibTeX, and found several suggestions on stackoverflow[3]:

  • @misc{…}
  • @electronic{…}
  • @internet{…}
  • @online{…}

The answers on that page and elsewhere were consistent about using

  • title = {…}
  • author = {…}

but inconsistent about

  • year = {…} vs originalyear = {…}
  • url = {…} (used by ArXiv) vs howpublished = {…} vs note = {} (used by Distill.pub).
  • note = {Accessed …} vs note = {Online …} vs urldate = {…}

Bibtex.org hasn’t been updated since 2006, and doesn’t have recommendations about citing web sites. I read Bibtex.com’s guide[4], Bibtex.eu’s guide[5], and Wikipedia’s cite this page link[6]. I chose this style:

Patel, Amit J., "Hexagonal Grids", 
  Red Blob Games, 2013,
  https://www.redblobgames.com/grids/hexagons/

@online{Patel-2013,
  author       = {Patel, Amit J.}, 
  title        = {Hexagonal Grids},
  organization = {Red Blob Games},
  year         = {2013},
  url          = {https://www.redblobgames.com/grids/hexagons/}
  urldate      = {2026-05-01}
}

I think that includes enough information that someone can adapt it for their own BibTeX needs. In the footer of selected pages, clicking the Citation link will show the plain text and BibTeX citation format. I also added the corresponding meta tags for Google Scholar[7], although I don’t expect that my pages would appear there. I don’t think the academic citation will be useful for most of my readers, but for those who need it, it’s now there.