[問題] \def展開時機

看板LaTeX作者 (sppmg)時間7年前 (2016/11/22 22:31), 7年前編輯推噓0(002)
留言2則, 1人參與, 最新討論串1/2 (看更多)
試了很久,實在不理解\def的展開時機。 \def\cmd{define} 之後,若將\cmd傳入其他指令, 是會在使用到當下展開(進行運算)其定義, 還是說只有定義當下的值呢?(這好像不太合理) 我想要讓目錄中,一般章節的條目顯示為:「一、 目錄名」 但附錄要維持「A、 附錄名」 所以我在.cls中首先改寫\thecontentslabel 設定 \gdef\thecontentslabel@chapter{ \ifx\@chapapp\appendixname % 判斷 \appendix \appendixname\thecontentslabel、 \else \zhnumber{\thecontentslabel}、 \fi} 然後用titlesec套件的\titlecontents 改寫目錄的 chapter 條目格式 (下面的\tocStyle* 只是一些設定變數而已) \titlecontents{chapter}[\tocNumSpaceC@Before] {\tocStyleCheapterAbove} {\tocStyleCheapterFont \makebox[\tocNumSpaceC@Total][l] {\thecontentslabel@chapter}} {\tocStyleCheapterFont} {\tocStyleCheapterFiller} 由於 \appendix 有這行 \gdef\@chapapp{\appendixname} 所以照預想,使用\appendix後,\thecontentslabel@chapter 應該要輸出「\appendixname\thecontentslabel、」 但實際上它總是輸出「\zhnumber{\thecontentslabel}、」 為什麼呢? 我也試了\renewcommand\appendix ,並包含 \gdef\thecontentslabel@chapter{\appendixname\thecontentslabel} (\def \gdef均試過) 但這不會影響到已定義過的\titlecontents{chapter} 即使在重定義 \thecontentslabel@chapter 後, 再次使用完全一樣的 \titlecontents{chapter} 進行設定也一樣不會有任何效果。 但假若在 \titlecontents{chapter} 中直接使用 \appendixname\thecontentslabel 來取代 \thecontentslabel@chapter ,這樣就可以了。 \titlecontents{chapter}[\tocNumSpaceC@Before] {\tocStyleCheapterAbove} {\tocStyleCheapterFont \makebox[\tocNumSpaceC@Total][l] {\appendixname\thecontentslabel}} {\tocStyleCheapterFont} {\tocStyleCheapterFiller} -- ※ 發信站: 批踢踢實業坊(ptt.cc), 來自: 114.32.188.151 ※ 文章網址: https://www.ptt.cc/bbs/LaTeX/M.1479825099.A.E11.html 咦!剛剛單獨測試了下面這段 \makeatletter \ifx\@chapapp\appendixname {\Huge in appendix} \else {\Huge in normal} \fi \makeatother 竟然都是 in normal 。為什麼呢? (這段是從 https://goo.gl/GKnuJU 來的) ※ 編輯: sppmg (114.32.188.151), 11/22/2016 23:09:25

11/23 12:24, , 1F
反過來用\chaptername好像可以?
11/23 12:24, 1F

11/23 13:50, , 2F
請無視上面的,已回了
11/23 13:50, 2F
感謝 kerwinhui 大,判斷 \appendix 的解決了。 而\titlecontents 仍然無法使用的原因可能是因為 titletoc 中使用了 \edef 之類會定義期展開的指令。 我舉個例子,參數我就用\titlecontents 內的,這樣比較短。 \titlecontents{chapter} [\Before] % TOC 條目左邊界距(數字左方空白) {\Above} % TOC 條目上方指令(添加空格) {\withLabal} % TOC 中 \cheapter 的格式 {\withoutLabal} % TOC 中 \cheapter* 的格式 {\Filler} % 填充點線以及頁碼 假使我在首次使用時定義 \def\Above{} ,那之後我重定義 \def\Above{\addvspace{1em}} 這樣不會影響到 \titlecontents ,但確實會影響上層指令。 如: \def\a{1} \def\b{\a} \appto{\mainmatter}{ % etoolbox pkg. mainmatter: \def\a{2} } 內文處 \b \mainmatter \b 將顯示出 1 mainmatter:2 由此可知改指令定義是可以影響到上層。 加上若在\titlecontents 參數中包含判斷式亦無效, 所以我猜它應該只有使用定義當下的值。(eg, \edef) 比較奇怪的是若我重定義(譬如\def\Above{...})後, 再使用完全一樣的\titlecontents{...}{\Above}... 這樣也是無效的。難道說 LaTeX 有判斷形式一樣就不執行的功能? 看了titletoc.sty % \titlecontents deals with concepts, not commands \newcommand\titlecontents{% \@ifstar{\ttl@contents{\z@}}% {\ttl@contents{\@ne}}} 完全沒有輸入參數.... 請問這要怎麼追蹤.... ※ 編輯: sppmg (114.32.188.151), 11/24/2016 12:18:07
文章代碼(AID): #1OD5RBuH (LaTeX)
討論串 (同標題文章)
文章代碼(AID): #1OD5RBuH (LaTeX)