![如何在 BibLaTex 中引用 LaTeX?](https://rvso.com/image/281607/%E5%A6%82%E4%BD%95%E5%9C%A8%20BibLaTex%20%E4%B8%AD%E5%BC%95%E7%94%A8%20LaTeX%EF%BC%9F.png)
如果之前有人問過這個問題,我深表歉意,但我找不到任何有關如何在我的文件中引用 LaTeX 的資訊。
編輯:我的報告包含對 LaTeX 的解釋,以及它如何在我的實習中幫助我。因此,我希望在我的報告中引用 LaTeX。
範例:LaTeX 是一個高品質的排版系統(此處引用)。我用它來巴拉巴拉巴拉
答案1
沒有正確的方法來引用 LaTeX。
LaTeX 不是由一群知名人士或您可以參考的機構創建的。 LaTeX 不是一本書(有一種正確的引用書籍的方法,即作者、書名、出版商、日期…)。 LaTeX 由許多套件和巨集(等)組成,並且有很多作者。所以你不能說「感謝X在Y的支持下創建的LaTeX軟體」(因為它不完整,因此不正確)。
不過,您可以選擇提及 LaTeX 的歷史作者 Leslie Lamport 和 Donald Knuth(對於 TeX 和最初的想法)。或者你可以引用一些關於 LaTeX 的非常著名的書籍,例如乳膠伴侶(但這兩種解法都不是直接引用 LaTeX,而是引用 LaTeX 歷史或 LaTeX 手冊。
在我看來,引用 LaTeX 的最佳方式是談論 LaTeX 社群(這是一個抽象)並插入指向LaTeX 專案網站。
例如:「我感謝乳膠社區感謝這個非常有用的文檔準備系統和文檔標記語言」。
答案2
我經常想承認我在製作文件時使用了軟體,但其內容從未提及。如果您想承認 LaTeX 等在報告本身中的作用,您可以考慮包括以下內容:
\documentclass{article}
\usepackage{cfr-lm}
\usepackage{texnames}
\begin{document}
\begin{center}
Typeset using pdf\LaTeX, {B{\sc \uppercasesc i\kern-.025em \uppercasesc b}\kern-.08em\LaTeX} and Biber\\in Latin Modern and URW ChanceryL.
\end{center}
\end{document}
或者
\documentclass{article}
\usepackage{garamondx}
\usepackage{texnames}
\begin{document}
\begin{center}
The image on the front is a fractal based on\\the Mandelbrot set designed in Gnofract 4D.\medskip
The GIMP was used to create derived images and\\to combine the images into a background.\medskip
The final design was typeset using pdf\LaTeX{}\\in URW ChanceryL and EBGaramond.\medskip
Kile was used to prepare the \TeX{} source\\on a machine running GNU/Linux.\bigskip
This software may be freely\\used, modified and distributed.
\end{center}
\end{document}