這是什麼引用風格?

這是什麼引用風格?

我需要以下參考書目風格我查找了不同的引文風格,但找不到類似的東西。

在正文中,引文均標有註腳(不得超過一行)。

例如:對於書籍,我們有²。對於期刊文章,我們有³。對於線上資源,我們有以下樣式$^4$。 (我不知道如何在 TeX.StackExchange 上使用 LaTeX :D)。


²愛因斯坦,A.; Bohr, N.:一些史詩般的書(1920),S. 20-25。

³Euler, L.:一些史詩般的數學方程式(1770)。

${}^4$Solid Snake:如何複製你的兄弟 (2003)。

在參考書目中,它應該如下所示(粗體部分和非粗體部分之後沒有太多空格。

愛因斯坦,A.; Bohr, N.:一些史詩般的書 (1920)

愛因斯坦,A.; Bohr, N.:一些史詩般的書,施普林格出版社,紐約,1920 年

Euler, L.:一些史詩般的數學方程式 (1770)

Euler, L.:一些史詩般的數學方程,見:高級史詩國際會議,卷。 31、S.641-651、1770

Solid Snake:如何複製你的兄弟 (2003)

Solid Snake:如何複製你的兄弟, https://www.SolidSnakeBlog.com,2003 年,祖格里夫 01.01.2007

URL 不應該像我的貼文中那樣標記。它應該顯示為純文字。 Zugriff 01.01.2017 正是我造訪該資源的日期。 S.20-25 是 p. 的德文版本。 20-25。

問題:如果有人能幫我解決這種奇怪的引用風格,那將會很有幫助。強迫我使用他的引文風格的機構的人說我應該使用 Word(他們有一個模板可以執行這種奇怪的引文風格),因為 LaTeX 不支持這種引文風格。我很確定 LaTeX 甚至可以處理這個問題,但我找不到類似的東西。

答案1

我不知道有一種現成的樣式可以準確地提供您所需的輸出。就 LaTeX 中的預建樣式而言,作者標題引用與年份的組合是相當不尋常的。這是一個開始biblatex-ext

這裡使用的大多數東西都應該有一個或多或少告訴你它們的用途的名稱。如果不清楚這些命令的作用,請在biblatex手動的biblatex-ext文件希望事情能澄清。

可能還有一些細節需要修復。自訂 biblatex 樣式的指南是一篇很棒的文章,可以幫助您入門。

\documentclass[ngerman]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{babel}
\usepackage{csquotes}

\usepackage[backend=biber,
  style=ext-authortitle,
  labeldateparts,
  giveninits, uniquename=init,
  introcite=plain,
  autocite=footnote,
]{biblatex}

\renewcommand*{\newunitpunct}{\addcomma\space}
\renewcommand*{\finentrypunct}{}

\DeclareNameAlias{default}{family-given}
\DeclareNameAlias{sortname}{default}
\DeclareNameAlias{labelname}{sortname}

\DeclareDelimFormat{multinamedelim}{\addsemicolon\space}
\DeclareDelimAlias{finalnamedelim}{multinamedelim}

\DeclareDelimFormat*{nametitledelim}{\addcolon\space}
\DeclareDelimFormat[textcite]{nametitledelim}{\addspace}
\DeclareFieldFormat*{citetitle}{#1}
\DeclareDelimFormat{titleyeardelim}{\addspace}

\makeatletter
\newbibmacro*{cite:labeldate}{%
  \iffieldundef{labelyear}
    {}
    {\printtext[parens]{%
       \printtext[bibhyperref]{%
         \printtext[\blx@delimcontext labeldate]{%
           \printlabeldate}}}}}
\makeatother

\renewbibmacro*{cite}{%
  \iffieldundef{shorthand}
    {\printnames{labelname}%
     \setunit*{\printdelim{nametitledelim}}%
     \usebibmacro{cite:title}%
     \setunit{\printdelim{titleyeardelim}}%
     \usebibmacro{cite:labeldate}}%
    {\usebibmacro{cite:shorthand}}}

\DeclareFieldFormat{bbx@introcite}{\mkbibbold{#1}}
\renewcommand*{\introcitepunct}{\newline}

\renewbibmacro*{pubinstorg+location+date}[1]{%
  \printlist{#1}%
  \setunit*{\publocdelim}%
  \printlist{location}%
  \setunit*{\locdatedelim}%
  \usebibmacro{date}%
  \newunit}

\addbibresource{biblatex-examples.bib}

\begin{document}
Lorem\autocite[380-381]{sigfridsson}
Ipsum\autocite{worman}
Dolor\autocite{geer}
Sit\autocite{nussbaum}
\printbibliography
\end{document}

範例輸出的風格與問題中的需求類似。

相關內容