BibTeX, biblatex and biber ⇒ Undefined control sequence when I try to use citet and citep
-
- Posts: 4
- Joined: Sun Dec 17, 2017 2:31 am
Undefined control sequence when I try to use citet and citep
I am working on the template below for a conference paper and whenever I try to use \citet or \citep, it says "underfind control sequence"
http://www.complexis.org/Templates.aspx
I would very much appreciate your help as I have a submission deadline.
Thanks a bunch
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
- Stefan Kottwitz
- Site Admin
- Posts: 10335
- Joined: Mon Mar 10, 2008 9:44 pm
Undefined control sequence when I try to use citet and citep
\usepackage{natbib}
Stefan
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
Undefined control sequence when I try to use citet and citep
-
- Posts: 4
- Joined: Sun Dec 17, 2017 2:31 am
Undefined control sequence when I try to use citet and citep
Command \bibhang already defined. \newlength{\bibhang}
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
Undefined control sequence when I try to use citet and citep
Sidenote: A conference for future information systems ships a file that is distributed with every TeX distribution in an updated manner. That file is from 2000, and many updates have been done to not only for the article class. Package subfigure is deprecated for over a decade, epsfig should only be used for compatibility to documents pre 1994.
-
- Posts: 4
- Joined: Sun Dec 17, 2017 2:31 am
Undefined control sequence when I try to use citet and citep
\bibhang already defined. \newlength{\bibhang}
Suggestions?
- Stefan Kottwitz
- Site Admin
- Posts: 10335
- Joined: Mon Mar 10, 2008 9:44 pm
Undefined control sequence when I try to use citet and citep
\bibhang
before loading natbib
:Code: Select all
\usepackage{apalike}
\let\bibhang\relax
\usepackage{natbib}

Stefan
-
- Posts: 4
- Joined: Sun Dec 17, 2017 2:31 am
Undefined control sequence when I try to use citet and citep
It worked!