web-dev-qa-db-ja.com

ラテックス/ミクテックス:未定義の引用

私は仕事のためのラテックススクリプトを書いています、そして私はPDF内の参照を取得するのに不信的な問題を抱えています。私のコードは以下のとおりです、そして私はRSTUDIOでMiktex 2.9を使用しています。関連性があるかもしれないいくつかの背景情報

  • Bibtex Syncikingを有効にするために正しくセットアップした私の参考文献についてはMendeleyを使用しています
  • .bibファイルは私には奇妙に見えないようではありません(Irunguは以下に追加されています)
  • 私は私の同僚とまったく同じスクリプトを使っています(私の記事を参照しているさまざまな道から離れて)、それをPDFにコンパイルする問題はありません。
  • 引用に関するエラーは次のとおりです.1ページのCatutery Draganovic2013 1ページの未定義XX引用IRUNGU2019(1ページ)入力線XX XX XX未定義引用

私はあなたの一人が私を助けることができることを願っています!乾杯!

@article{Irungu2019,
abstract = {A composite blend consisting of sunflower cake, maize germ, wheat bran, fresh water shrimps and cassava flour was extruded using a single-screw extruder to produce expanded fish feed pellets. The effects of temperature (80–120 °C), die diameter (2–4 mm), and feed pre-conditioning time (50–150 s; Steam 400 kPa) on properties of the pellets (expansion ratio, bulk density, floatability, durability, water absorption, water solubility, water stability, and in-vitro protein digestibility) were investigated using response surface methodology. Regression equations describing the effect of each variable on the product responses were obtained. The pellets extruded using a factor combination of 120 °C extruder barrel temperature, 2 mm die diameter, and 100 s of feed pre-conditioning time gave most desirable pellet floatability (100{\%}), durability index (99{\%}), expansion ratio (2.64), water absorption index (4.12), water solubility index (9.31), water stability (87{\%}), bulk density (479 g/L), and in vitro protein digestibility (69.97{\%}) with a composite desirability of 0.88. Practical applications: Extrusion is a modern feed processing method whose use is fast gaining popularity among small feed processors in developing countries. However, extrusion is a process that involves many parameters that need to be optimized for desirable end properties. These findings guide fish feed manufacturers on the optimum conditions for single screw extruders for production of feeds with desirable properties especially for the fish types that are top feeders. In addition, the results offer important insights on how temperature, die diameter, and feed pre-conditioning, may be manipulated to influence properties of extruded aquafeed when using simple low-cost small-scale extruders.},
author = {Irungu, Francis Gichuho and Mutungi, Christopher and Faraj, Abdul and Affognon, Hippolyte and Ekesi, Sunday and Nakimbugwe, Dorothy and Fiaboe, Komi K.M.},
doi = {10.1111/jfpe.12980},
file = {:L$\backslash$:/Marjanne/ScientificArticles/Irungu2019.pdf:pdf},
issn = {17454530},
journal = {Journal of Food Process Engineering},
number = {2},
pages = {1--12},
title = {{Optimization of extruder cooking conditions for the manufacture of fish feeds using response surface methodology}},
volume = {42},
year = {2019}
}
 _
\documentclass[10pt,a4paper]{article}
\usepackage{etoolbox}
\usepackage{mathpazo}
\renewcommand{\sfdefault}{lmss}
\renewcommand{\ttdefault}{lmtt}
\usepackage{geometry}
\usepackage[usenames,dvipsnames]{xcolor}
% \geometry{verbose,tmargin=2cm,bmargin=2cm,lmargin=2.5cm,rmargin=2.5cm}
\geometry{verbose,tmargin=2cm,bmargin=2cm,lmargin=2.5cm,rmargin=2.5cm}
\usepackage[margin=10pt,font=small,labelfont=bf,labelsep=colon]{caption}
\usepackage{amstext}
%% \usepackage{esint}
\usepackage[english]{babel}
\usepackage{eurosym}
\usepackage{booktabs}
\usepackage[parfill]{parskip}
\usepackage[round]{natbib}
%\usepackage{caption}
\usepackage{pdfpages}
\usepackage[figuresright]{rotating}
\usepackage{longtable}
\usepackage[version=4]{mhchem}
\usepackage{todonotes}
\usepackage{hyperref}
\usepackage{subfig}
\usepackage{array}
\usepackage{float}
\usepackage{lipsum}
\usepackage{lastpage}
\usetikzlibrary{patterns}
\usetikzlibrary{shapes.geometric}
\usepackage{textcomp}


\begin{document}


\title[Title of Document]

\begin{document}

\begin{titlepage}
\maketitle
\end{titlepage}

\section {Introduction}
Introduction is written here, but not relevant for this question.


\section {Background} 
Here I write some text and refer to an article of Draganovic from 2013 \citep{Draganovic2013}. \\
In another section, I would like to refer to Irungu from 2019 \citep{Irungu2019}.\\
Current project will investigate the possibilities to re-evaluate Sustainable Fiber Technology's Wheat Straw Co-Product, by using it as a (partial) replacement of wheat gluten and/or starch in aquafeed. Being relatively high in lignin (20 - 40\% based on 30 - 50\% solids), the product is a potential excellent binder.

\section {Rest of the document}

Doesn't pose any significant errors.

 \bibliographystyle{plainnat}
 \bibliography{C://Users/Marjanne/Documents/April8/library}




\end{document}
 _
2
Marjanne

私はこのラテックスコードに問題はありません(私がMacを使っていても):とにかくあなたのコード内のいくつかの問題があります:

  • タイトルは\title[Title of Document]として与えられ、\title{Title of Document}としては与えられません。
  • 2つの\begin{document}があります。ここにコードをコピーしたときにこれが単なる字型であるかどうかわかりません

.bibファイルのパスが正しいことを確認してください。私は\bibliography{library}だけを書くことをお勧めします。library.bibファイルを作業しているtexファイルの同じディレクトリに入れます。

さらに、 https://tex.stackexchange.com/ Tex、LateXについての質問については、==を見てください。

編集:あなたがあなたのtexファイルを満たしていることを確認してください。

  • pdflatex(またはlatex
  • bibtex
  • pdflatex(またはlatex
  • pdflatex(またはlatex

2
Eddymage