引用参考文献(网站/书籍/文章)

引用参考文献(网站/书籍/文章)

我有论文.tex

\documentclass[12pt,a4paper,twoside,openright]{report}

%----------------------%
% Inclusione pacchetti %
%----------------------%    
\usepackage{subfiles}
\usepackage{wrapfig}
\usepackage{listings}
\usepackage{graphicx}
\usepackage[utf8x]{inputenc}
\usepackage{url}
\usepackage[italian]{babel}
\usepackage{fancyhdr}
\usepackage[colorlinks, citecolor=black, filecolor=black, linkcolor=black, urlcolor=black] {hyperref}
\usepackage{courier}
\usepackage{caption}
\usepackage{color}
\usepackage{subfig}


%--------------------%
% Stile della pagina %  
%--------------------%
\pagestyle{fancy}
\usepackage{titlesec}
\usepackage{appendix}
\renewcommand{\chaptermark}[1]{\markboth{#1}{}}
\renewcommand{\sectionmark}[1]{\markright{\thesection\ #1}}
\fancyhf{}
\fancyhead[LE,RO]{\bfseries\thepage}
\fancyhead[LO]{\bfseries\rightmark}
\fancyhead[RE]{\bfseries\leftmark}      
\renewcommand{\headrulewidth}{0.5pt}
\renewcommand{\footrulewidth}{0pt}
\addtolength{\headheight}{0.5pt}
\addtolength{\oddsidemargin}{15mm} %margine pagina sinistro
\addtolength{\evensidemargin}{-15mm} %margine pagina destro

\begin{document}

\subfile{frontespizio}
\subfile{indice}
\subfile{introduzione}
\subfile{modelloClientServer}
\subfile{ProtocolHttp}
\subfile{ambitoApplicativo}
\subfile{conclusioni}
\bibliographystyle{plain}
\bibliography{bibliografia}
\end{document}

其中,在文档结尾之前,我按照各种指南的建议添加了 \bibliographystyle 和 /bibliography。创建了名为书目

@misc{
  pippo,
  title={site1},
  note={note1}
}

然后我尝试在任何 latex 页面中使用命令 \cite{pippo}(关键字)。Over leaf 给我一个警告

LaTeX Warning: Citation `pippo' on page 1 undefined on input line 8

其中第 1 页输入第 8 行是我使用命令 \cite 的地方。 我怎样才能让它工作?我只需要一个参考书目,但用于网站。

答案1

请阅读网站,然后再发布新问题。这里解释了如何提供所谓的最小工作示例

由于您只有两个参考,我建议您使用手册书目无需使用类似BiBLaTeXBiBTeX(过时)的数据库方法。

我准备了一个简单的设置,其中包含一个文章文档类。如果您想使用报告或书籍,那么您应该更改此行

\addcontentsline{toc}{section}{\refname} % section

进入这个

\addcontentsline{toc}{chapter}{\refname} % chapter

babel该代码片段包含目录 (toc) 中的引用名称(取决于作为包的选项定义的文档语言)。

\documentclass{article}

\usepackage[latin1]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[english]{babel}

\usepackage{blindtext}

% load as last package
\usepackage[hidelinks]{hyperref}

\begin{document}

\title{Simple Bibliography without BiBTeX or BiBLaTeX}
\author{Manuel Kuehner}
\date{\today}
\maketitle

\tableofcontents

\section{Just a Random Section}
\blindtext

\section{Section with a Cite of a Website}

See \cite{bib:www:WebsiteOne} for more details.

\begin{thebibliography}{99}
\addcontentsline{toc}{section}{\refname}

\bibitem{bib:www:WebsiteOne}
Author, \emph{Title}, Internet Source, Last Checked: 2nd December 2016, \url{http://www.manuelkuehner.de/}

\end{thebibliography} 

\end{document}

在此处输入图片描述

如果你有更多参考资料,可以看看我的教程(https://www.youtube.com/playlist?list=PL-Wl6F3zpJVwcDHK2rg9bDEEMjo70zp87BiBLaTeX/Biber) 或整个系统。

相关内容