something like
How can i do that? thanks a lottext,
1, publication 1
2, publication 2
text
How can i do that? thanks a lottext,
1, publication 1
2, publication 2
text
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
thanks a lottext
\citecommand{bibkey}
text
,,,,,
bibliography{}
bibliographystyle{}
Code: Select all
\documentclass{article}
\usepackage[english]{babel}
\usepackage{multibib}
\newcites{pub}{publication list}
\begin{document}
References to the \TeX book
and to Lamport’s \LaTeX\ book, which appears
only in the references\citepub{Tian2003}.
Finally a cite to a Postscript tutorial
\cite{Phana}.
\bibliographystylepub{plain}
\bibliographypub{Phan}
\renewcommand{\refname}{Postscript References}
\bibliographystyle{plain}
\bibliography{Phan}
\end{document}
the error show that the bibliography cited by the newcite command are undefined.
there is no file pub.bbl found
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis