WordPress database error: [Table './ay6u3nor6dat6ba1/kn6_ayu1n9k4_5_actionscheduler_actions' is marked as crashed and last (automatic?) repair failed]
SELECT a.action_id FROM kn6_ayu1n9k4_5_actionscheduler_actions a WHERE 1=1 AND a.hook='aioseo_send_usage_data' AND a.status IN ('in-progress') ORDER BY a.scheduled_date_gmt ASC LIMIT 0, 1

WordPress database error: [Table './ay6u3nor6dat6ba1/kn6_ayu1n9k4_5_actionscheduler_actions' is marked as crashed and last (automatic?) repair failed]
SELECT a.action_id FROM kn6_ayu1n9k4_5_actionscheduler_actions a WHERE 1=1 AND a.hook='aioseo_send_usage_data' AND a.status IN ('pending') ORDER BY a.scheduled_date_gmt ASC LIMIT 0, 1

Bibliography in latex with bib file | Loop and Break

Bibliography in latex with bib file

In order to include .bib file in latex document you have to create first at least 2 files in your current folder. I have created 2 :

  1. lpaper.tex (document)
  2. mybib.bib (bib file)

Source (lpaper.tex)

\documentstyle{article}
\begin{document}

THEOREM: pythagoras theorem search in scholar google results first in  \cite{samejima1997graded} and then second result is \cite{berlin1963accumulation}. 

\bibliographystyle{plain}
\bibliography{mybib}
\end{document}

mybib.bib (bib file)

@incollection{samejima1997graded,
  title={Graded response model},
  author={Samejima, Fumiko},
  booktitle={Handbook of modern item response theory},
  pages={85--100},
  year={1997},
  publisher={Springer}
}

@article{berlin1963accumulation,
  title={Accumulation and retention of mercury in the mouse: I. An autoradiographic study after a single intravenous injection of mercuric chloride},
  author={Berlin, Maths and Ullberg, Sven},
  journal={Archives of Environmental Health: An International Journal},
  volume={6},
  number={5},
  pages={589--601},
  year={1963},
  publisher={Taylor \& Francis}
}

Output

bibfile

Share

You may also like...