-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
adae113
commit 4aa5b8c
Showing
18 changed files
with
490 additions
and
154 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,33 +8,47 @@ sidebar_label: email | |
import CiteDrive from '@site/src/components/CiteDrive'; | ||
``` | ||
|
||
# BibTeX field type: email | ||
The `email` field in BibTeX is used to include the email addresses of the authors in your citation. While not a commonly used field and possibly unsupported in various styles, it can sometimes be useful to provide a direct line of contact to the authors. Here, we explore how to appropriately integrate email addresses into your BibTeX entries. | ||
|
||
Email includes the email address of the stated authors if you want to indicate them. It's not a common field and might not be supported. | ||
<CiteDrive /> | ||
|
||
To specify email addresses, the following variants are recommended: | ||
## Including Email Addresses | ||
|
||
**As a note to display at the end of the reference:** | ||
If you decide to specify email addresses in your BibTeX entries, here are two recommended methods: | ||
|
||
### Display as a Note at the End of the Reference | ||
|
||
```tex | ||
@book{ ... , | ||
author = {Muller, John}, | ||
In this approach, the email address is added as a note that appears at the end of the citation. This way, it is distinctly separated from the author's name and other details, ensuring clarity. | ||
|
||
... | ||
note = "{\tt [email protected]}" | ||
```bibtex | ||
@book{Sample2023, | ||
author = {Muller, John}, | ||
... | ||
note = "{\tt [email protected]}", | ||
... | ||
} | ||
``` | ||
|
||
**To display behind the family name:** | ||
|
||
```tex | ||
### Display Behind the Family Name | ||
|
||
@book{ ... , | ||
author = {Muller {\tt [email protected]}, John }, | ||
... | ||
Another method is to incorporate the email address directly behind the family name. This approach provides a direct association between the author and their email address, facilitating immediate contact. | ||
|
||
```bibtex | ||
@book{Sample2023, | ||
author = {Muller {\tt [email protected]}, John}, | ||
... | ||
} | ||
``` | ||
|
||
## Guidelines for Including Email Addresses | ||
|
||
1. **Privacy Considerations**: Before including an author's email address, ensure you have their permission to do so, respecting their privacy and adhering to ethical guidelines. | ||
|
||
2. **Formatting**: Maintain a clear and readable format by using the Teletype (`\tt`) font style to differentiate the email address from other text elements. | ||
|
||
3. **Compatibility**: Be aware that the `email` field is not standard and may not be supported in all BibTeX styles. Always check the compatibility with your chosen style to avoid formatting issues. | ||
|
||
|
||
## Conclusion | ||
|
||
While not common, including email addresses in your BibTeX entries can sometimes facilitate direct communication with the authors. Always adhere to ethical guidelines and verify compatibility with your chosen BibTeX style when using the `email` field. By following the recommended formats, you can integrate email addresses into your citations seamlessly. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.