Text Formatting ⇒ New Help
-
- Posts: 1
- Joined: Tue Mar 16, 2021 7:06 am
New Help
----------------------------------------------------------------------------------------------------------------------------------------------------
\documentclass[a4paper, 12pt, landscape, twocolumn]{book}
\usepackage[a4paper, inner=1.7cm, outer=2.7cm, top=2cm,
bottom=2cm, bidingoffset=1.2cm]{geometry}
\usepackage[english]{babel}
\usepackage{blindtext}
\begin{document}
\title{\Large{\textbf{LaTeX Tutorial}}}
\author{By Juan Daniel Castanier Rivas}
\date{Marzo 15, 2021}
\maketitle
\blindtex[6]
\end{document}
-------------------------------------------------------------------------------------------------------------------------------------------------
I get this error:
Undefined control sequence.
\documentclass[a4paper, 12pt, landscape, twocolumn]{book}
Whoever you are, hero out there, thank you.
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
- Ijon Tichy
- Posts: 640
- Joined: Mon Dec 24, 2018 10:12 am
New Help
Code
button. Note, only correct marked code can be executed directly on this page and can be copied correctly. Not marked code can even be broken by the formatting of the page. And also copy error messages as code from the log-file. The exact message with and indent is important for the semantic.However, with your code I get other error messages:
Code: Select all
! Package keyval Error: bidingoffset undefined.
See the keyval package documentation for explanation.
Type H <return> for immediate help.
...
l.1005 \ProcessOptionsKV[p]{Gm}
%
?
geometry
does not have an option bidingoffset
but bindingoffset
Code: Select all
./test.tex:17: Undefined control sequence.
l.17 \blindtex
[6]
\blindtext
, but you've used \blindtex
.So correct code would be:
Code: Select all
\documentclass[a4paper, 12pt, landscape, twocolumn]{book}
\usepackage[a4paper, inner=1.7cm, outer=2.7cm, top=2cm,
bottom=2cm, bindingoffset=1.2cm]{geometry}
\usepackage[english]{babel}
\usepackage{blindtext}
\begin{document}
\title{\Large{\textbf{LaTeX Tutorial}}}
\author{By Juan Daniel Castanier Rivas}
\date{Marzo 15, 2021}
\maketitle
\blindtext[6]
\end{document}
Run LaTeX here
button below the code (because I've marked the code as code).