General ⇒ Latex Label
Latex Label
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
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
Latex Label
welcome to the LaTeX Community board!
I've noticed that you posted your question to cqf.info too. In general it would be nice if you inform about the other posting, so the reader can see there if already a solution was given there or if still help is needed. The information about having posted somewhere else too could avoid double work.
At the moment we don't know what document class you are using and which packages and options. That makes it harder to help. If you post your document preamble perhaps we can find the cause there.
In general the perfect way to get help fastest is providing a minimal working example that shows the problem. Readers could compile and examine it and probably give specific help that solves the problem.
Stefan
Re: Latex Label
\documentclass[11pt,oneside,a4paper]{amsart}
\usepackage[latin1]{inputenc}
%\usepackage{german,amsmath,amssymb}
\usepackage[notref,notcite]{showkeys}
\usepackage{graphicx}
\usepackage{amssymb}
\usepackage{amsmath}
\usepackage{amsthm}
\setlength{\textwidth}{15cm}
\setlength{\topmargin}{0,5cm}
\setlength{\oddsidemargin}{0,5cm}
\setlength{\evensidemargin}{0,5cm}
\setlength{\textheight}{21,5cm}
\setlength{\headheight}{0,6cm}
\setlength{\footskip}{1,75cm}
\setlength{\parindent}{0cm}
\theoremstyle{plain}
\newtheorem{thm}{Theorem}
\newtheorem{lem}{Lemma}
\newtheorem{pro}{Proposition}
\theoremstyle{definition}
\newtheorem{defn}{Definition}
\newtheorem{exa}{Example}
\newtheorem{xca}{Exercise}
\theoremstyle{remark}
\newtheorem*{rem}{Remark}
\numberwithin{equation}{section}
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
Latex Label
this line is responsible:
Code: Select all
\usepackage[notref,notcite]{showkeys}
Code: Select all
\usepackage[notref,notcite,final]{showkeys}
Re: Latex Label
