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

推荐订阅源

A
About on SuperTechFans
有赞技术团队
有赞技术团队
人人都是产品经理
人人都是产品经理
月光博客
月光博客
美团技术团队
博客园 - 聂微东
阮一峰的网络日志
阮一峰的网络日志
WordPress大学
WordPress大学
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
博客园_首页
爱范儿
爱范儿
G
Google Developers Blog
aimingoo的专栏
aimingoo的专栏
T
The Blog of Author Tim Ferriss
MongoDB | Blog
MongoDB | Blog
小众软件
小众软件
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
IT之家
IT之家
I
InfoQ
B
Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
大猫的无限游戏
大猫的无限游戏
T
Tailwind CSS Blog
F
Fortinet All Blogs

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.