Search found 89 matches
- Tue Mar 07, 2023 10:35 am
- Forum: Texmaker and TeXstudio
- Topic: TexMaker limiting log file line length (how to change)
- Replies: 3
- Views: 78808
TexMaker limiting log file line length (how to change)
The line length in the log-files of the LaTeX run are not limited by the editor—in your case TeXmaker—but are a hard coded limitation of the TeX engines. AFAIK it cannot be changed. This is indeed also a problem of several programs (e.g. most LaTeX editors), that try to analyze the log or the ...
- Tue Feb 28, 2023 3:51 pm
- Forum: Page Layout
- Topic: Issues with fancyhdr & newcommand for chapters
- Replies: 2
- Views: 11381
Issues with fancyhdr & newcommand for chapters
\vert
is a mathmode command. But instead of using $\vert$
, I would suggest to use a \rule[<vertical shift>]{<width>}{<height>}
.- Mon Feb 27, 2023 4:07 pm
- Forum: Text Formatting
- Topic: how to use industrie font
- Replies: 1
- Views: 2233
how to use industrie font
The easiest is, to use either LuaLaTeX or XeLaTeX instead of PDFLaTeX. Then you can use fontspec after installing the font on your computer. If the font is installed as system font, you can load it either by font name, e.g.:
\documentclass{article}
\usepackage{fontspec}
\setmainfont{TeX Gyre ...
\documentclass{article}
\usepackage{fontspec}
\setmainfont{TeX Gyre ...
- Thu Feb 23, 2023 10:00 am
- Forum: BibTeX, biblatex and biber
- Topic: ISBN not showing in Apacite
- Replies: 1
- Views: 15411
ISBN not showing in Apacite
apacite.bst does not support an entry field isbn (but e.g. a doi ). The supported entry fields can be found in apacite.bst . Just search for keyword ENTRY .
Note also, that apacite is not conform with current APA rules. So it is only one of several author-year styles. If you really need APA, you ...
Note also, that apacite is not conform with current APA rules. So it is only one of several author-year styles. If you really need APA, you ...
- Wed Feb 22, 2023 2:08 pm
- Forum: BibTeX, biblatex and biber
- Topic: bibtex: Ordering of references
- Replies: 1
- Views: 15404
bibtex: Ordering of references
With BibTeX the sort order depends on \bibliographystyle{…} . So in your case, the publisher should provide this by the bst file it either provides or recommends.
With biblatex and biber , the sort order would be configurable with LaTeX code.
BTW: Please use the code tag instead of the latex tag ...
With biblatex and biber , the sort order would be configurable with LaTeX code.
BTW: Please use the code tag instead of the latex tag ...
- Wed Feb 22, 2023 9:21 am
- Forum: General
- Topic: hyperref problem with bibtex
- Replies: 6
- Views: 8300
hyperref problem with bibtex
First of all, please note, I've used the Overleaf link.
I cannot recommend this template. The class has several issues with potentially unwanted spaced . The class uses \usepackage instead of \RequirePackage (which is indeed only a convention inside classes, but the recommendation in the clsguide ...
I cannot recommend this template. The class has several issues with potentially unwanted spaced . The class uses \usepackage instead of \RequirePackage (which is indeed only a convention inside classes, but the recommendation in the clsguide ...
- Fri Feb 17, 2023 11:52 am
- Forum: MiKTeX and proTeXt
- Topic: miktex is running with error !!!!
- Replies: 1
- Views: 32821
miktex is running with error !!!!
Unfortunately, all essential information is missing:
- What did you do?
- How did you do it?
- Where do the messages come from?
- What is in the given log file?
- Fri Feb 17, 2023 11:48 am
- Forum: Math & Science
- Topic: Placement of "comma"/"point" between 2 lines of equations
- Replies: 2
- Views: 58508
Placement of "comma"/"point" between 2 lines of equations
Please always try to make a instead of showing only a code snippet.
To place the comma between the line, you could add a \raisebox after the longest line:
\documentclass{article}
\usepackage{amsmath}
\newcommand*\centermathcell[1]{\omit\hfil$\displaystyle#1$\hfil\ignorespaces}
\begin{document ...
To place the comma between the line, you could add a \raisebox after the longest line:
\documentclass{article}
\usepackage{amsmath}
\newcommand*\centermathcell[1]{\omit\hfil$\displaystyle#1$\hfil\ignorespaces}
\begin{document ...
- Mon Feb 06, 2023 4:17 pm
- Forum: General
- Topic: Line under the sqrt's index
- Replies: 1
- Views: 2890
Line under the sqrt's index
You could use hacks like:
or draw the square root yourself using TikZ.
Code: Select all
\documentclass{article}
\usepackage{mathtools}
\begin{document}
\[ \sqrt[\leftroot{5}\uproot{2}\underline{a long index 123456789}] {some argument} \]
\end{document}
- Fri Jan 27, 2023 4:52 pm
- Forum: Text Formatting
- Topic: LyX: Math Code in Text Statement
- Replies: 3
- Views: 6257
LyX: Math Code in Text Statement
Once again: It is not absolutely not clear, what you want. As already told: If you want to show the result of, e.g., \times using \textrm would not make sense, because \textrm does not influence math mode and \times requires math mode. But if you want to show the code, you need \verb , e.g ...