# BibLaTeX 引用方法 *Citation* ###### tags: `Leo` `book` [TOC] ## 中文試譯 *Chinese version* 如要引用自中文試譯本,請使用以下語法: ```latex @misc{ho2023-leo1994, translator = {Ho, Sin-iu}, title = {核物理與粒子物理實驗技術}, year = {2023}, edition = {中文試譯版}, howpublished = {\url{https://hackmd.io/@siniu-thesis/leo_1994}}, note = {online}, %crossref = {leo1994}, } ``` 並記得在 $\LaTeX$ 序言區(preamble)添加 `\usepackage{url}`。 ## 原著 *English original* 如要引用自英文原著,請使用以下語法: ```latex @inbook{leo1994, author = {William R. Leo}, title = {Techniques for Nuclear and Particle Physics Experiments}, subtitle = {A How to Approach}, edition = {2}, publisher = {Springer}, location = {Berlin/Heidelberg}, year = {1994}, isbn = {978-3-540-57280-0}, doi = {10.1007/978-3-642-57920-2} } ``` 如果要區別電子本、紙本的ISBN,可以使用 ``` isbnonline = {978-3-642-57920-2}, isbnprint = {978-3-540-57280-0}, ``` 但序言區需要進行額外的宣告。[^isbn] ### 特定章節 *particular chapter* 如要引用自原著的**特定章節**,請使用以下語法: ```latex @inbook{leo1994-ch<chapter>, author = {William R. Leo}, title = {Techniques for Nuclear and Particle Physics Experiments}, subtitle = {A How to Approach}, edition = {2}, publisher = {Springer}, location = {Berlin/Heidelberg}, year = {1994}, chapter = {<chapter>}, pages = {<pages>}, isbnonline = {978-3-642-57920-2}, isbnprint = {978-3-540-57280-0}, doi = {10.1007/978-3-642-57920-2} } ``` 以上 `<chapter>` 請填入章節號碼,頁數(`<pages>`)請參考下表[^page]: | 章節號碼 | 頁數 | |:--:|:-------:| | `01` |`1--15` | | `02` |`17-60` | | `03` |`69-79` | | `04` |`81-113` | | `05` |`115-126`| | `06` |`127-156`| | `07` |`157-175`| | `08` |`177-198`| | `09` |`199-213`| | `10` |`215-247`| | `11` |`249-255`| | `12` |`257-261`| | `13` |`263-276`| | `14` |`277-302`| | `15` |`303-316`| | `16` |`317-324`| | `17` |`325-334`| | `18` |`335-352`| |`app` |`353-358`| [^isbn]: https://tex.stackexchange.com/questions/103671/biblatex-online-isbn-versus-print-isbn [^page]: https://link.springer.com/book/10.1007/978-3-642-57920-2