Text FormattingProblem with use of \newcommand on MikTex

Information and discussion about LaTeX's general text formatting features (e.g. bold, italic, enumerations, ...)
Post Reply
Achava
Posts: 6
Joined: Tue Jun 02, 2020 10:07 pm

Problem with use of \newcommand on MikTex

Post by Achava »

[doc]What is wrong with this code from Stgefan Kottweil's book?[/doc]

Code: Select all

documentclass {article}
\newcommand {\keyword}{1}{\textbf{#1}}
\begin {document}
\keyword{Grouping} by curly braces limits the
\keyword{scope} of \keyword{declarations}
\end {document}
[doc]Here is the error message I got:
This is pdfTeX, Version 3.14159265-2.6-1.40.21 (MiKTeX 2.9.7440 64-bit)
entering extended mode
("Page 42.tex"
LaTeX2e <2020-02-02> patch level 5
L3 programming layer <2020-05-15>
("C:\Program Files\MikTex\tex/latex/base\article.cls"
Document Class: article 2019/12/20 v1.4l Standard LaTeX document class
("C:\Program Files\MikTex\tex/latex/base\size10.clo"))

! LaTeX Error: Missing \begin{document}.

See the LaTeX manual or LaTeX Companion for explanation.
Type H <return> for immediate help.
...

l.2 \newcommand {\keyword}{1}{\textbf{#1}
}
? [/doc]

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

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

Ijon Tichy
Posts: 640
Joined: Mon Dec 24, 2018 10:12 am

Problem with use of \newcommand on MikTex

Post by Ijon Tichy »

Wrong braces for the argument number at \newcommand {\keyword}{1}{\textbf{#1}}. These must be brackets: \newcommand {\keyword}[1]{\textbf{#1}}, because it is an optional argument.

Please try to read the book more accurate. And sometimes it is a good idea to have a break.
Sorry, but I can no longer participate here as the administrator is trampling on my wishes on one of his other platforms. :cry:
Post Reply