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

推荐订阅源

奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园_首页
G
Google Developers Blog
A
About on SuperTechFans
酷 壳 – CoolShell
酷 壳 – CoolShell
aimingoo的专栏
aimingoo的专栏
Last Week in AI
Last Week in AI
博客园 - 聂微东
T
Tailwind CSS Blog
宝玉的分享
宝玉的分享
V
Visual Studio Blog
美团技术团队
The Cloudflare Blog
量子位
T
The Blog of Author Tim Ferriss
罗磊的独立博客
V
V2EX
S
SegmentFault 最新的问题
小众软件
小众软件
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
MyScale Blog
MyScale Blog
博客园 - Franky

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
arXiv to BibTeX - fixes the doubled "arXiv:"
Sahil Kumar · 2026-06-22 · via DEV Community
Cover image for arXiv to BibTeX - fixes the doubled "arXiv:"

Sahil Kumar

arXiv's API doesn't send CORS headers, so a genuinely browser-only tool can't talk to it directly - this routes through a small proxy (a cPanel PHP passthrough, not a third-party service) that hits arXiv's API and parses the result. The proxy doesn't log bibliographic content, caches by ID hash (30 days for versioned IDs since those are immutable, 7 days otherwise), and rate-limits per IP.

The actual bug this fixes: most converters emit eprint = {arXiv:1706.03762}, but biblatex's \eprint macro prepends "arXiv:" itself at render time - so the rendered citation reads "arXiv:arXiv:1706.03762." The acmart LaTeX class hit exactly this (it's issue #382 on their tracker). The fix is emitting the bare ID in eprint and putting the prefix in archivePrefix instead.

Other specifics: citekeys come out as vaswani2017attention rather than the raw numeric ID some converters use (arxiv2bibtex.org keys on the literal 1706.03762, which breaks alpha.bst labels and makes \cite{} unreadable). Handles old-style IDs (math/0506203, hep-th/9901001) and new-style with version suffixes (1706.03762v2) preserved if included. Inline math in titles like $O(n \log n)$ is detected and passed through unescaped. Defaults to @ misc for true preprints but exposes a per-row override - community convention is genuinely split here, some prefer @online with eprinttype={arxiv}, some use @article - switch per entry as needed. If the paper's also published with a DOI, the DOI tool is the cleaner path for that entry.

Link: thelatexlab.com/arxiv-to-bibtex/