我正在尝试打印我的参考书目,但似乎没有什么效果。这是我的一段代码,以及我拥有的所有软件包(抱歉,有点长):
\documentclass[10pt,letterpaper]{article}
\usepackage[top=0.85in,left=2.75in,footskip=0.75in]{geometry}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{textcomp}
\usepackage{amsmath}
\usepackage[labelfont=bf]{caption}
\usepackage{graphics}
\usepackage{graphicx}
\usepackage{array}
\usepackage{color}
\usepackage{siunitx}
\usepackage [english]{babel}
\usepackage [autostyle, english = american]{csquotes}
\usepackage[font=normal,labelfont=bf]{caption}
\usepackage[pagebackref=true,breaklinks=true,colorlinks,bookmarks=false]{hyperref}
%\MakeOuterQuote{"}
\usepackage{times}
\usepackage{gensymb}
\usepackage{float}
\usepackage{multirow}
\usepackage{rotating}
\usepackage{fullpage}
\usepackage{subcaption}
\usepackage{colortbl}
\usepackage[table,xcdraw]{xcolor}
\usepackage{adjustbox}
\usepackage{caption}
\usepackage{textcomp}
\usepackage{times}
\usepackage{gensymb}
\usepackage{amsmath}
\usepackage[font=normal,labelfont=bf]{caption}
\usepackage{subcaption}
\usepackage{adjustbox} % it load graphicx too
\usepackage{array}
\usepackage{siunitx}
\usepackage [english]{babel}
%\MakeOuterQuote{"}
\usepackage [autostyle, english = american]{csquotes}
\usepackage{float}
\usepackage{makecell, % new
multirow}
\usepackage{rotating}
\usepackage[table,xcdraw]{xcolor}
% amsmath and amssymb packages, useful for mathematical formulas and symbols
\usepackage{amsmath,amssymb}
\usepackage[natbib=true,style=numeric,sorting=none]{biblatex}
\addbibresource{References.bib}
\DefineBibliographyStrings{english}{%
bibliography = {References},
}
% Use adjustwidth environment to exceed column width (see example table in text)
\usepackage{changepage}
% textcomp package and marvosym package for additional characters
\usepackage{textcomp,marvosym}
% cite package, to clean up citations in the main text. Do not remove.
\usepackage{cite}
% Use nameref to cite supporting information files (see Supporting Information section for more info)
\usepackage{nameref,hyperref}
% line numbers
\usepackage[right]{lineno}
% ligatures disabled
\usepackage[nopatch=eqnum]{microtype}
\DisableLigatures[f]{encoding = *, family = * }
% color can be used to apply background shading to table cells only
\usepackage[table]{xcolor}
% array package and thick rules for tables
\usepackage{array}
% create "+" rule type for thick vertical lines
\newcolumntype{+}{!{\vrule width 2pt}}
% create \thickcline for thick horizontal lines of variable length
\newlength\savedwidth
\newcommand\thickcline[1]{%
\noalign{\global\savedwidth\arrayrulewidth\global\arrayrulewidth 2pt}%
\cline{#1}%
\noalign{\vskip\arrayrulewidth}%
\noalign{\global\arrayrulewidth\savedwidth}%
}
% \thickhline command for thick horizontal lines that span the table
\newcommand\thickhline{\noalign{\global\savedwidth\arrayrulewidth\global\arrayrulewidth 2pt}%
\hline
\noalign{\global\arrayrulewidth\savedwidth}}
% Remove comment for double spacing
%\usepackage{setspace}
%\doublespacing
% Text layout
\raggedright
\setlength{\parindent}{0.5cm}
\textwidth 5.25in
\textheight 8.75in
% Bold the 'Figure #' in the caption and separate it from the title/caption with a period
% Captions will be left justified
\usepackage[aboveskip=1pt,labelfont=bf,labelsep=period,justification=raggedright,singlelinecheck=off]{caption}
\renewcommand{\figurename}{Fig}
% Use the PLoS provided BiBTeX style
%\bibliographystyle{plos2015}
% Remove brackets from numbering in List of References
\makeatletter
\renewcommand{\@biblabel}[1]{\quad#1.}
\makeatother
% Header and Footer with logo
\usepackage{lastpage,fancyhdr,graphicx}
\usepackage{epstopdf}
%\pagestyle{myheadings}
\pagestyle{fancy}
\fancyhf{}
%\setlength{\headheight}{27.023pt}
%\lhead{\includegraphics[width=2.0in]{PLOS-submission.eps}}
\rfoot{\thepage/\pageref{LastPage}}
\renewcommand{\headrulewidth}{0pt}
\renewcommand{\footrule}{\hrule height 2pt \vspace{2mm}}
\fancyheadoffset[L]{2.25in}
\fancyfootoffset[L]{2.25in}
\lfoot{\today}
%% Include all macros below
\newcommand{\lorem}{{\bf LOREM}}
\newcommand{\ipsum}{{\bf IPSUM}}
%% END MACROS SECTION
\begin{document}
\vspace*{0.2in}
% Title must be 250 characters or less.
\begin{flushleft}
{\Large
\textbf\newline{Design and fabrication of carbon fiber lattices based on a looping techniques} % Please use "sentence case" for title and headings (capitalize only the first word in a title (or heading), the first word in a subtitle (or subheading), and any proper nouns).
}
\newline
% Insert author names, affiliations and corresponding author email (do not include titles, positions, or degrees).
\\
Hayley McClintock\textsuperscript{1*},
Zechen Xiong\textsuperscript{1},
Yibo Peng\textsuperscript{1},
David McIntosh\textsuperscript{1},
Yusong Deng\textsuperscript{1},
Hod Lipson\textsuperscript{1},
1
\\
\bigskip
\textbf{1} Columbia University, Fu Foundation School of Engineering and Applied Science, New York, NY, 10027, USA
\bigskip
% Insert additional author notes using the symbols described below. Insert symbol callouts after author names as necessary.
%
% Remove or comment out the author notes below if they aren't used.
%
% Primary Equal Contribution Note
% Additional Equal Contribution Note
% Also use this double-dagger symbol for special authorship notes, such as senior authorship.
% Use the asterisk to denote corresponding authorship and provide email address in note below.
* [email protected]
\end{flushleft}
\section*{Abstract}
\bibliography{References}
\end{document}
任何帮助都将不胜感激!谢谢!