-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathexample_bib_page.html
More file actions
38 lines (35 loc) · 965 Bytes
/
example_bib_page.html
File metadata and controls
38 lines (35 loc) · 965 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Example Bib Page</title>
</head>
<body>
<h1>Example page with .bib link and BibTeX block</h1>
<p>Direct link to a .bib file:</p>
<a href="sample.bib">Download sample.bib</a>
<h2>Inline BibTeX example</h2>
<pre>
@article{Example2024,
author = {John Doe and Jane Smith},
title = {An Example Article Title},
journal = {Journal of Examples},
year = {2024},
volume = {42},
number = {7},
pages = {123--456},
doi = {10.1000/example.2024}
}
</pre
>
<p>
Also included inside a <code><code></code> block for detection
testing:
</p>
<code>
@inproceedings{Test2023, author = {Alice Example}, title = {Testing
BibTeX Detection}, booktitle = {Proceedings of Testing}, year =
{2023} }
</code>
</body>
</html>