# BibTeX Generator for Books & Technical Reports

**Use case:** 

Convert URLs of online books, e-books, and technical reports into accurate BibTeX citations. This aids technical writers and consultants in standardising their 

## Input

```json
{
  "url": "https://arxiv.org/abs/1706.03762",
  "urls": [
    "https://www.oreilly.com/library/view/designing-data-intensive-applications/9781491903063/",
    "https://www.w3.org/TR/html52/",
    "https://books.google.com/books?id=example_book_id"
  ],
  "citationKey": "smith2023deep",
  "entryType": "book",
  "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.