Skip to content
Open
Show file tree
Hide file tree
Changes from 22 commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
38cfd9a
tabbed layout
mjpost May 5, 2019
74dffee
Merge branch 'master' into landing_page
mjpost Jun 28, 2019
d141a86
removed pointless <style> tag
mjpost Jun 29, 2019
0f0c8f0
Merge branch 'master' into landing_page
mjpost Oct 3, 2019
af365a5
Merge branch 'master' into landing_page
mjpost Oct 26, 2019
6ad5cb4
Merge branch 'master' into landing_page
mjpost Nov 10, 2024
9fb3499
Restore master index.html
mjpost Nov 11, 2024
9aba140
Shuffling around
mjpost Nov 11, 2024
e5407e3
Merge remote-tracking branch 'origin/master' into landing_page
mjpost Nov 11, 2024
2cab506
black
mjpost Nov 11, 2024
fbc1c39
paren
mjpost Nov 12, 2024
a977299
Remove printf
mjpost Nov 13, 2024
e998569
Merge branch 'master' into landing_page
mjpost Nov 28, 2024
6c6e94a
Merge branch 'master' into landing_page
mjpost Nov 28, 2024
2f99953
Format number
mjpost Nov 28, 2024
6695db0
Remove papers RSS feed
mjpost Nov 28, 2024
bc27e6a
Consolidate links
mjpost Nov 28, 2024
28c2515
Update text
mjpost May 29, 2025
7ded8b6
Merge remote-tracking branch 'origin/master' into landing_page
mjpost May 29, 2025
43b4936
Add citation format file
mjpost May 29, 2025
1cffb2d
Remove bibtex links from main page
mjpost May 29, 2025
d36a4d7
Update preview alert
mjpost May 29, 2025
0856aae
typo
mjpost May 29, 2025
59f7685
Merge remote-tracking branch 'origin/master' into landing_page
mjpost Aug 2, 2025
530cd77
Merge remote-tracking branch 'origin/master' into landing_page
mjpost Aug 4, 2025
720b583
Restore bibfile links
mjpost Aug 4, 2025
cf9b755
Merge branch 'master' into landing_page
mjpost Aug 4, 2025
1f70fac
Update citations FAQ
mjpost Aug 5, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion hugo/content/faq/_index.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
Title: Frequently Asked Questions
linktitle: FAQ
subtitle: Other information about the ACL Anthology
subtitle: Important information about the ACL Anthology
---
15 changes: 15 additions & 0 deletions hugo/content/faq/citations.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
---
Title: Where can I get Anthology citation files?
weight: 1
---

The Anthology provides a number of citation formats.
Our main supported format is BibTeX, and we also provide MODS XML and Endnote formats.
All of these formats can be downloaded from individual paper pages by clicking on the "Cite" button in each paper's upper-righthand corner.
We also provide convenient buttons for copying individual citation formats to the clipboard.
In addition, we provided formatted citation strings, both in official ACL format and an "informal" format; these can be useful, for example, for use in a WSIWYG editor.

Users of the Anthology may also be interested in our bulk BibTeX citation files:
* [anthology+abstracts.bib.gz](https://aclanthology.org/anthology.bib) contains citations for all papers that exist in the Anthology, including abstracts.
* [anthology.bib.gz](https://aclanthology.org/anthology.bib.gz) contains all citations but remove abstracts, to save on space.
* [anthology.bib](https://aclanthology.org/anthology.bib) contains all citations without abstracts, and is suitable for direct import into Overleaf repositories.
22 changes: 3 additions & 19 deletions hugo/layouts/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,13 @@
{{ end }}

<div class="col-12 col-xl-2">
<h2 class="pl-2 pb-2">Welcome to the ACL Anthology!</h2>

<aside class="card acl-greeting font-weight-light mb-3">
<div class="card-body">
The ACL Anthology currently hosts {{ $.Scratch.Get "paper_count" }} papers on the study of computational linguistics and natural language processing.
The ACL Anthology is a library of publications in the scientific fields of <a href="https://www.aclweb.org/portal/what-is-cl">computational linguistics</a> and speech and natural language processing. It currently hosts {{ lang.FormatNumberCustom 0 ($.Scratch.Get "paper_count") }} papers from official venues of the <a href="https://www.aclweb.org/">Association for Computational Linguistics</a> and other organizations.
</div>
<div class="card-body">
<a href="http://groups.google.com/group/acl-anthology?hl=en">Subscribe to the mailing list</a> or the <a href="{{ "posts/index.xml" | relURL }}">RSS news feed</a> to receive announcements and updates to the Anthology.
You can follow news and updates via our <a href="http://groups.google.com/group/acl-anthology?hl=en">announcement email list</a>, <a href="{{ "posts/index.xml" | relURL }}">RSS feed</a>, or on <a href="https://x.com/aclanthology">X</a> and <a href="https://bsky.app/profile/aclanthology.org">Bluesky</a>.
We welcome <a href="{{ ($.Site.GetPage "/faq/feedback.md").RelPermalink }}">your feedback</a>.
</div>
</aside>

Expand All @@ -47,21 +46,6 @@ <h2 class="pl-2 pb-2">Welcome to the ACL Anthology!</h2>
{{ .Content }}
</aside>
-->

<div class="row mb-3">
{{ if (fileExists "/data-export/anthology.bib.gz") }}
<div class="col-6 col-xl-12 mb-2">
<a class="btn btn-block btn-info" href="{{ "anthology.bib.gz" | relURL }}">Full Anthology as BibTeX ({{ printf "%.2f MB" (div (os.Stat "/data-export/anthology.bib.gz").Size 1000000.0) }})</a>
<a class="btn btn-block btn-info" href="{{ "anthology+abstracts.bib.gz" | relURL }}">…with abstracts ({{ printf "%.2f MB" (div (os.Stat "/data-export/anthology+abstracts.bib.gz").Size 1000000.0) }})</a>
</div>
{{ end }}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What is the rationale behind removing these entirely from the front page?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Just aesthetics, really. I could restore it if you like, but I would probably change them up.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do you think people ever download those by clicking on the links? What if we replaced the button link target to one that points to the "citation files" section of the FAQ?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I would assume so, but the server logs should know best ;)

Maybe a small italics note “Looking for bib files? See this FAQ” or something could also work, if you don’t want the buttons.

<div class="col-6 col-xl-12 mb-2">
<a class="btn btn-block btn-warning" href="{{ "papers/index.xml" | relURL }}">RSS Feed (latest 1000 papers)</a>
</div>
<div class="col-6 col-xl-12 mb-2">
<a class="btn btn-block btn-success" href="{{ ($.Site.GetPage "/faq/feedback.md").RelPermalink }}">Give feedback</a>
</div>
</div>
</div>
<div class="col-12 col-xl-10 col-xl-width-auto">
<main aria-role="main">
Expand Down
7 changes: 4 additions & 3 deletions hugo/layouts/partials/header_navbar.html
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,9 @@
</div></nav>
{{ if hasPrefix .Site.BaseURL "https://preview.aclanthology.org" }}
<div role="alert" class="alert alert-danger text-center">
This is an <b>internal, incomplete preview</b> of a proposed change to the ACL Anthology.
For efficiency reasons, we don't generate MODS or Endnote formats, and the preview may be incomplete in other ways, or contain mistakes.
<b>Do not treat this content as an official publication</b>.
This is an <b>internal, temporary preview</b> of a proposed change to the ACL Anthology.
It may be incomplete or contain mistakes.
<b>Please do not link to this content or treat it as official.</b>
It will be removed with the change is merged or abandoned.
</div>
{{ end }}