Différences

Ci-dessous, les différences entre deux révisions de la page.

Lien vers cette vue comparative

Les deux révisions précédentesRévision précédente
Prochaine révision
Révision précédente
1_generalites:erreurs_de_debutant [2023/07/18 12:22] – Suite. jejust1_generalites:erreurs_de_debutant [2023/07/18 21:01] (Version actuelle) – Suite et fin de l'article en anglais. jejust
Ligne 16: Ligne 16:
  
   * In the author’s years as part of the TeXnical support team for a major math publisher, responsibilities included fielding questions from authors and writing user documentation.   * In the author’s years as part of the TeXnical support team for a major math publisher, responsibilities included fielding questions from authors and writing user documentation.
-  * The online TeX forum at StackExchange1 has provided a surfeit of questions both basic and advanced. A community effort has collected a list of “Often referenced questions”, by topic, at [[https://tex.meta.stackexchange.com/q/2419|tex.meta.stackexchange.com/q/2419]].+  * The online [[https://tex.stackexchange.com/|TeX forum at StackExchange]] has provided a surfeit of questions both basic and advanced. A community effort has collected a list of “Often referenced questions”, by topic, at [[https://tex.meta.stackexchange.com/q/2419|tex.meta.stackexchange.com/q/2419]].
  
 <note tip> <note tip>
Ligne 149: Ligne 149:
 % With T1 enabled, \"\i yields accented i, not bad sqrt. % With T1 enabled, \"\i yields accented i, not bad sqrt.
 % See https://tug.org/TUGboat/tb45-1/tb139beet.pdf % See https://tug.org/TUGboat/tb45-1/tb139beet.pdf
-%%\usepackage[T1]{fontenc}+% %\usepackage[T1]{fontenc}
   \pagestyle{empty}   \pagestyle{empty}
 \begin{document} \begin{document}
Ligne 171: Ligne 171:
 </code> </code>
 The environment name must match at beginning and end; The environment name must match at beginning and end;
-if it doesn’t, this error is reported in the log file and on the terminal: +if it doesn’t, this error is reported in the log file and on the terminal:\\ 
-<code> +''! LaTeX Error: \begin{//xxx//} on input line //nn// ended by \end{//yyy//}''\\
-! LaTeX Error: \begin{xxx} on input line nn +
-ended by \end{yyy+
-</code>+
 Most environments can be nested, but the proper sequence Most environments can be nested, but the proper sequence
 must be maintained. must be maintained.
Ligne 650: Ligne 647:
 ==== Math ==== ==== Math ====
  
 +Math is always a scoped environment. If started, it must be ended
 +explicitly and unambiguously. Within text, math begins and ends with ''$''. LaTeX also provides ''\(...\)'' for in-text math, but most users stick
 +with the ''$''. Many different display environments are defined
 +by the packages [[ctanpkg>amsmath]] and [[ctanpkg>mathtools]],
 +and it is worthwhile to learn them by reading the user guides.
 +Within math, all input spaces are meaningless to (La)TeX;
 +they can be entered in the source file as useful to make it readable
 +to a human. Blank lines, however, are considered errors.
 +In both in-text math and displays, the error message will be\\
 +''! Missing $ inserted.''\\
 +This will also result if in-text math is not ended before the paragraph ends,
 +or if a math-only symbol or command is found outside of math mode.
 +If a blank line occurs in a multi-line display environment from [[ctanpkg>amsmath]], the first error message will be\\
 +''! Paragraph ended before //⟨env-name⟩//''\\
 +''was complete.''\\
 +''<to be read again>''\\
 +This will be followed by many more error messages, all caused by the first.
 +These will be confusing and misleading. Always fix the problem identified
 +by the first error and ignore the rest; they will disappear once
 +the first error is fixed; here, by removing the blank line.
 +
 +If the appearance of a blank line is wanted for readability,
 +instead use a line with just a ''%''.
 +As with all environments, the ''\end'' name must exactly match
 +the name specified at ''\begin''. A “shorthand” for a single-line,
 +unnumbered display is ''\[...\]''. The environments designed
 +for multi-line displays should not be used for a single-line display.
 +
 +Although LaTeX provided ''eqnarray'' as a display environment,
 +don’t use it. If the display is numbered and the equation is long,
 +the equation can be overprinted by the equation number
  
 ==== Tables, figures, and other floats ==== ==== Tables, figures, and other floats ====
 +
 +The allowed number of floats, their positions on a page,
 +and the spacing around and between them is defined
 +by the document class. So if something doesn’t work
 +as you expect (hope for?), any potential helper will insist
 +on learning what document class is being used.
 +
 +Input for a float must appear in the source file while there is
 +still enough space on the output page to fit it in.
 +In particular, on two-column pages, a ''figure*'' or ''table*''
 +must occur in the source before anything else is set on the page.
 +LaTeX’s core float handling does not allow full-width floats to be placed
 +anywhere but at the top of a page; some packages extend this capability,
 +but those won’t be discussed here.
 +
 +Here are the defaults for the basic article class:
 +  * Total number of floats allowed on a page with text: 3.
 +  * Number of floats allowed at top of page: 2. Percentage of page allowed for top-of-page floats: 70%.
 +  * Number of floats allowed at bottom of page: 1. Percentage of page allowed for bottom-of-page floats: 30%.
 +  * Minimum height of page required for text: 20%.
 +  * Minimum height of float requiring a page by itself: 50%.
 +The reference height is \textheight. That is, the height of page headers and footers is excluded.
 +
 +If an insertion is small, must be placed precisely and fits in that location,
 +don’t use a float. ''\includegraphics'' or one of several available table
 +structures should be used directly, often wrapped in ''\begin{center} ... \end{center}'' (within a float, use ''\centering'' instead.)
 +
 +The [[ctanpkg>wrapfig]] package supports cut-in inserts at
 +the sides of a page or column. Refer to the documentation for details.
 +
 +By tradition, captions are applied at the top of tables and the bottom
 +of figures. If an insertion is not a float, the usual ''\caption''
 +can’t be used. Instead, ''\usepackage{caption}'' and the command ''\captionof''.
 +
  
 ==== The document class and preamble ==== ==== The document class and preamble ====
 +
 +When embarking on a new document, start by choosing the document class.
 +If the goal is publication in a
 +particular journal, check the publisher’s instructions
 +to see what is required. Many popular journal classes
 +are available from [[https://ctan.org/search|CTAN]].
 +
 +If the project is a thesis or dissertation, find
 +out the special requirements, and if your institution
 +provides a tailored class, obtain a copy. Try to
 +determine whether it is actively maintained, and
 +if there is local support. Read the documentation.
 +
 +It is the responsibility of the document class to
 +define the essential structure of the intended document.
 +If the document you are preparing differs in essential ways from what is supported by the document class, the time to get help is now.
 +
 +There will be features not natively supported by
 +the document class; for example, the choice of how
 +to prepare a bibliography may be left to the author.
 +This is why packages have been created.
  
 === Organizing your document === === Organizing your document ===
Ligne 686: Ligne 769:
 ==== Processing the job ==== ==== Processing the job ====
  
 +Once the file is created, it’s time to produce output.
 +There are several engines to choose from: pdfLaTeX, XeLaTeX, and LuaLaTeX.
 +These can be run interactively from the command line, or initiated from
 +an editor. Assuming there are no errors, how many
 +times a document must be processed to produce the
 +final output depends on what features it contains.
 +
 +In particular, if any cross-references or ''\cites''
 +are present, this information is written out to an
 +''.aux'' file; information for a table of contents is written
 +to a ''.toc'' file, and other tables are also possible.
 +The bibliography must be processed by a separate
 +program (and its log checked for errors) with the
 +reformatted bib data written out to yet another file.
 +Then LaTeX must be run (at least) twice more --- once
 +to read in the ''.aux'' and other secondary files and include
 +the bibliography and resolved cross-references,
 +and the second time to resolve the correct page num-
 +bers (which will change when the TOC and similar
 +bits are added at the beginning).
 +
 +All this assumes that there are no errors. Errors
 +will be recorded in the log file. Learn where the log
 +file is located, and make a habit of referring to it.
 +Warnings, such as those for missing characters, will
 +also be recorded there, but may not be shown online:\\
 +''Missing character: There is no //⟨char⟩//''\\
 +''in font //⟨font⟩//!''
 +
 +In the log, some errors may appear with closely
 +grouped line numbers. If so, and the first is one
 +that interrupts the orderly processing of a scoped
 +environment, following errors may be spurious. So
 +fix the first error and try processing before trying to
 +understand the others; often, they may just go away.
 +
 +Good luck. With practice comes understanding.
  
 +Oh... **Remember to read the documentation.**
  
 ----- -----
1_generalites/erreurs_de_debutant.1689682942.txt.gz · Dernière modification : 2023/07/18 12:22 de jejust
CC Attribution-Share Alike 4.0 International
Driven by DokuWiki Recent changes RSS feed Valid CSS Valid XHTML 1.0