# Convert IEEE & ACM Papers to BibTeX Citations

**Use case:** 

Batch convert URLs from IEEE Xplore and ACM Digital Library into properly formatted BibTeX entries for research papers. This is crucial for software engineers a

## Input

```json
{
  "url": "https://arxiv.org/abs/1706.03762",
  "urls": [
    "https://ieeexplore.ieee.org/document/9999999",
    "https://dl.acm.org/doi/10.1145/3397271",
    "https://ieeexplore.ieee.org/document/8888888"
  ],
  "citationKey": "smith2023deep",
  "entryType": "inproceedings",
  "includeAbstract": false,
  "includeUrl": true
}
```

## Output

```json
{
  "url": {
    "label": "Url"
  },
  "entry_type": {
    "label": "Entry type"
  },
  "title": {
    "label": "Title"
  },
  "authors": {
    "label": "Authors"
  },
  "year": {
    "label": "Year"
  },
  "venue": {
    "label": "Venue"
  },
  "bibtex": {
    "label": "Bibtex"
  }
}
```

## About this Actor

This example demonstrates how to use [URL to BibTeX Converter](https://apify.com/crawlerbros/url-to-bibtex-converter) with a specific input configuration. Visit the [Actor detail page](https://apify.com/crawlerbros/url-to-bibtex-converter) to learn more, explore other use cases, and run it yourself.