Search found 1960 matches
- Sat May 16, 2020 6:03 pm
- Forum: Others
- Topic: MusixTeX: Extend \crescendo across bars
- Replies: 5
- Views: 1212
MusixTeX: Extend \crescendo across bars
My best guess is that this is a font-setup problem but since I actually never really use MusixTeX I can't really help.
- Wed May 06, 2020 11:06 am
- Forum: Graphics, Figures & Tables
- Topic: List of Figures not appearing when placed after table of contents
- Replies: 1
- Views: 442
List of Figures not appearing when placed after table of contents
You posted the exact same question here: https://latex.org/forum/viewtopic.php?f=44&t=33426 so I will lock this thread in order to avoid double answer.
- Sun Apr 26, 2020 5:05 pm
- Forum: Others
- Topic: MusixTeX: Extend \crescendo across bars
- Replies: 5
- Views: 1212
MusixTeX: Extend \crescendo across bars
I don't see a problem: \documentclass{article} \usepackage[T1]{fontenc} \usepackage{musixtex} \begin{document} \begin{music} \instrumentnumber{1} \setstaffs{1}{2} \generalmeter{\meterfrac44} \startextract \Notes\cmidstaff\ppp|\ca c\en \Notes\icresc|\ca{defgh'ab}\en\bar \Notes|\ca{'cde}\en \N...
- Mon Jan 13, 2020 10:39 pm
- Forum: MakeIndex, Nomenclature, Glossaries and Acronyms
- Topic: Acronym long version in the margin
- Replies: 1
- Views: 1016
Acronym long version in the margin
For reference see also here https://tex.stackexchange.com/questions/520573/
- Mon Dec 30, 2019 1:31 pm
- Forum: Math & Science
- Topic: Why is command \textendash invalid in math mode?
- Replies: 8
- Views: 5307
Why is command \textendash invalid in math mode?
I have merged both topics as they are essentially the same post.
- Thu May 03, 2018 2:32 pm
- Forum: General
- Topic: Change variable of a package Topic is solved
- Replies: 5
- Views: 2550
Change variable of a package Topic is solved
Oh wow! According to expl3 conventions \__mhchem_arrow_options_minLength:n is an internal function with one brace argument. According to \show and the MWE it is used as a length or skip variable. It really should be named something like \l__mhchem_arrow_options_minLength_dim and be set internally wi...
- Thu May 03, 2018 1:31 pm
- Forum: Fonts & Character Sets
- Topic: expl3: changing the catcode such that _ is understood as subscript
- Replies: 2
- Views: 2180
expl3: changing the catcode such that _ is understood as subscript
Why don't you just use LaTeX's \sb or expl3's \c_math_subscript_token ? \documentclass{article} \usepackage{expl3} \usepackage{xparse} \usepackage{amssymb} \ExplSyntaxOn \tl_new:N \tl_matrix_elem_tl \tl_set:Nn \tl_matrix_elem_tl { \ensuremath { A \sb {ij} } } % or: % \tl_set:Nn \tl_matrix_elem_tl { ...
- Wed Apr 18, 2018 10:00 am
- Forum: General
- Topic: alphalph package
- Replies: 1
- Views: 1535
alphalph package
The argument is a TeX number. Anything that would be accepted by \number is a valid argument: ⋅ explicite constants, ⋅ macros that expand to a number, ⋅ count registers, LaTeX counter can used via \value , e. g.: \alphalph{\value{page}} This means replace \renewcomm...
- Fri Mar 16, 2018 3:37 pm
- Forum: General
- Topic: expl3 for dummies Topic is solved
- Replies: 13
- Views: 8116
expl3 for dummies Topic is solved
I would need, if possible, some clarification as to what the intended purposes of local public, local internal, global public, and public function are. I take it the difference between function and variable is clear? (This is mostly a semantic difference here as in TeX everything is a macro in the ...
- Mon Mar 05, 2018 1:16 pm
- Forum: General
- Topic: expl3 for dummies Topic is solved
- Replies: 13
- Views: 8116
expl3 for dummies Topic is solved
Two undescores for internal, one for public TL's. Not only tokenlists but all kinds of variables, even functions. Public means that those variables and functions are allowed to be used by others and ideally are documented (just like all those in interface3). Internal functions and variables are not...