Sagittarius Rover
Sagittarius Rover
我要成为Typst糕手/(ㄒoㄒ)/~~

注册于 2年前

回答
241
文章
0
关注者
11

@u141196 如果我没有记错的话,你的上一个问题没有做任何回复。提问请不要突然消失


请你明确你的问题。

如果是“如何输入这些图标”,我们默认这是在标准文档类下进行的,下面是最简单的MWE:

% LuaLaTeX
\documentclass{article}
\usepackage{fontawesome5}
\usepackage{xcolor}
\colorlet{accent}{blue!70!black}
\begin{document}

\faIcon{qq} 

\faIcon{github}

\textcolor{red}{\faIcon{qq}}

\textcolor{accent}{\faIcon{github}}

\end{document}

image.png

如若不然,请说明你的准确需求。同时,一个问题请只聚焦一个目标

我也抽空试了下...核心基本都是用decorations.pathreplacing提供的brace

image.png

\documentclass[tikz,border=5pt]{standalone}
\usetikzlibrary{decorations.pathreplacing}
\begin{document}
\begin{tikzpicture}
\draw (0,.15) -- (0,0) node[left,yshift=.12cm] {Hello} -- (5,0) -- (5,.15) decorate [decoration={brace,amplitude=5pt}] { (0,.15) -- (5,.15)  node[midway,yshift=.35cm] {50 dollars}};

\draw (0,-1+.15) -- (0,-1) node[left,yshift=.12cm] {Hello} -- (7,-1) -- (7,-1+.15) (0,-1-.15) -- (0,-1) (7,-1-.15) -- (7,-1) decorate [decoration={brace,,amplitude=5pt,mirror}] { (0,-1-.15) -- (7,-1-.15)  node[midway,yshift=-.53cm] {70 dollars}};

\draw (5,-1+.15) decorate [decoration={brace,amplitude=5pt}] { -- (7,-1+.15)  node[midway,yshift=.35cm] {? dollars}};

\draw[dashed] (5,0) -- (5,-1);
\end{tikzpicture}
\end{document}

image.png

Welcome to latexstudio!

@u3945 但是同时有个小建议:
应该使用markdown的围栏代码块将你的代码包围,否则会出现丢失\的现象,你可以使用“补充回答”功能,让这部分代码正确高亮。

image.png

PS.国外不知道有没有线段图这一称呼,不知道有没有造好的轮子。

@u686 Thanks to David Carilsle again🙌

感觉舍弃:
\thickline 以及 \thickline[<dim>]

使用:
\thickline{} 以及 \thickline{<dim>}

在这种情况下也并非就很用户不友好(算是一种trade off between 代码量 与 syntax的易用性 ...)

仍然不太优雅(本可以避免一些dummy的语句的)... 就当抛砖引玉了... 一定有更符合tikz-style更优雅的办法:

我下面取了个巧,利用重复绘制右⚪来规避计算交点坐标,因为从OP的目标和工作量权衡来看,显式得到这两个坐标似乎不是必须的...

基本思路:

  • 先画右圆(实线)
  • 再画左圆把右圆的一部分盖住
  • 最后画右圆(虚线)
\documentclass[border=8pt,tikz]{standalone}
\usepackage{amssymb}
\usetikzlibrary{patterns}
\begin{document}
    \begin{tikzpicture}
        \path [draw,very thick,->] node at (-.3,-.3) {$O$} (-0.5,0) -- (8,0) node[anchor=north] {$x$};
        \path [draw,very thick,->] (0,-0.5) -- (0,6.1) node[anchor=east] {$y$};
        \node at (7.5,5.5) {$\mathbb{R}^{2}$};
        \draw[very thick,blue,dashed,-] (0.5,0.5) -- (6.5,0.5) -- (6.5,5) --(0.5,5)--(0.5,0.5);
        \node at (6.2,1) {$\Lambda$};
        \node at (5.5,3) {$S$};
        \draw (5,3) circle (1.2);
        \draw[fill=white] (3,3) circle (1.5);
        \draw[dashed] (5,3) circle (1.2);
        \draw[pattern=north west lines,draw=red]  (3,3) circle (1.5);
        \node[fill=white,rounded corners,below of=3] at (2.5,4) {$B$};
        \node at (2,1.3) {$ {\color{red}\partial B=B_{0}}$};
    \end{tikzpicture}  
\end{document}

image.png

MWE编译报错啊,缺少amsmath宏包...

\documentclass{article}
\usepackage{amsmath}
\usepackage{lipsum}
\begin{document}
    \lipsum[2]
    \begin{equation*}
    y=\beta_0 + \beta_{1}X
    \end{equation*}
    \lipsum[2]
    \[  
        y=\beta_0 + \beta_{1}X
    \]
    \lipsum[2]
\end{document}

BTW,lshort-zh-cn第四章都有吧...

image.png

有群友于 2025-03-9 反馈称确实会在这一步出现卡住的情况,但这似乎是这个页面的bug,实际上的.log文件已经安装结束了(如果你等得足够久的话),你可以测试下查看.log能否看到形如“欢迎来到TeX的世界”之类的欢迎语,如果可以,应该是可以(通过ctrl+Z或者ctrl+C)之类的方法关闭的。

usrguide中,如@u101077 老师所言,要使用\NewExpandableDocumentCommand才可以在表格内正确展开,但与此同时又有如下限制:

image.png

无法将唯一的参数定义为O型...

我不太懂展开,也不太懂是否有好的办法绕开这一限制,但OP又说:

我知道有很多表格宏包能做这件事情。我的问题是如何自定义具有一个可选参数的thickhline命令?或者有没有其他打包控制表格线粗细命令的方法?

因此我虽然发现booktabs中的toprule命令完全符合这一要求...但不确定OP是否“允许”站在前人的肩膀上,下面是直接偷Plain-TeX的方法,个人觉得这样的话,这个横线命令应该会比自己定义的更sound...

\documentclass{article}
\makeatletter
\newdimen\myheavyrulewidth
\myheavyrulewidth=1.5bp %<-default width here
\newdimen\belowrulesep
\newdimen\belowbottomsep
\newdimen\aboverulesep
\newdimen\abovetopsep
\newdimen\@aboverulesep
\newdimen\@belowrulesep
\newcount\@thisruleclass
\newcount\@lastruleclass
\@lastruleclass=0
\newdimen\@thisrulewidth
\def\futurenonspacelet#1{\def\@BTcs{#1}%
   \afterassignment\@BTfnslone\let\nexttoken= }
\def\@BTfnslone{\expandafter\futurelet\@BTcs\@BTfnsltwo}
\def\@BTfnsltwo{\expandafter\ifx\@BTcs\@sptoken\let\next=\@BTfnslthree
   \else\let\next=\nexttoken\fi \next}
\def\@BTfnslthree{\afterassignment\@BTfnslone\let\next= }
\def\Thickhline{\noalign{\ifnum0=`}\fi%<- modified from \toprule
  \@aboverulesep=\abovetopsep
  \global\@belowrulesep=\belowrulesep %global cos for use in the next noalign
  \global\@thisruleclass=\@ne
  \@ifnextchar[{\@BTrule}{\@BTrule[\myheavyrulewidth]}}%<- modified here
\def\@BTrule[#1]{%
  \ifx\longtable\undefined
    \let\@BTswitch\@BTnormal
  \else\ifx\hline\LT@hline
    \nobreak
    \let\@BTswitch\@BLTrule
  \else
    \let\@BTswitch\@BTnormal
  \fi\fi
  \global\@thisrulewidth=#1\relax
  % \ifnum\@thisruleclass=\tw@\vskip\@aboverulesep\else
  % \ifnum\@lastruleclass=\z@\vskip\@aboverulesep\else
  % \ifnum\@lastruleclass=\@ne\vskip\doublerulesep\fi\fi\fi
  \@BTswitch}
\AtBeginDocument{%
   \providecommand*\CT@arc@{}}%% colortbl support
\def\@BTnormal{%
    {\CT@arc@\hrule\@height\@thisrulewidth}%
    \futurenonspacelet\@tempa\@BTendrule}
\def\@BLTrule{\@ifnextchar({\@@BLTrule}{\@@BLTrule()}}
\def\@@BLTrule(#1){\@setrulekerning{#1}%
\global\@cmidlb\LT@cols
\ifnum0=`{\fi}%
\noalign{\ifnum0=`}\fi
\futurenonspacelet\@tempa\@BTendrule}
\def\@BTendrule{\ifx\@tempa\toprule\global\@lastruleclass=\@thisruleclass
  \else\ifx\@tempa\midrule\global\@lastruleclass=\@thisruleclass
  \else\ifx\@tempa\bottomrule\global\@lastruleclass=\@thisruleclass
  \else\ifx\@tempa\cmidrule\global\@lastruleclass=\@thisruleclass
  \else\ifx\@tempa\specialrule\global\@lastruleclass=\@thisruleclass
  \else\ifx\@tempa\addlinespace\global\@lastruleclass=\@thisruleclass
  \else\global\@lastruleclass=\z@\fi\fi\fi\fi\fi\fi
  % \ifnum\@lastruleclass=\@ne\relax\else\vskip\@belowrulesep\fi
  \ifnum0=`{\fi}}
\makeatother
\begin{document}

\begin{tabular}{ll}
\Thickhline
  a & b \\
\hline
  c & d \\
\Thickhline[1bp]
\end{tabular}

\end{document}

image.png


感觉抄的很不整洁(neat),上面应该还存在一些可以删的unused命令...

这不算是一个回答

可以缩短mwe:

\documentclass{beamer}
\usepackage{cleveref}
\begin{document}
\begin{frame}
    Hello, world!   
\end{frame}
\end{document}

甚至可以只是:

\documentclass{article}
\usepackage[implicit=false]{hyperref}
\usepackage{cleveref}
\begin{document}
    Hello, world!   
\end{document}

maybe related link:
OP的一个来源on TSE

Joseph Wright的回复

Samcarter的锐评


一点小探索,一般的宏包在使用global option指定选项之后,均可以通过:\<package>setup之类的命令实现覆盖(overwritten),但这对于hyperref并不奏效,查看hyperref.sty(需要pdflatex hyperref.dtx)可以发现:

当传入impilicit=false时,由于:

%Line2283 将其默认值设置为true
\define@key{Hyp}{implicit}[true]{%
  \Hy@boolkey{implicit}{#1}%
}

同时这会触发所谓的patch external commands

% Line 4179~4203
\ifHy@implicit
  \Hy@InfoNoLine{Implicit mode ON; LaTeX internals redefined}%
\else
  \Hy@InfoNoLine{Implicit mode OFF; no redefinition of LaTeX internals}%
  \def\MaybeStopEarly{%
    \Hy@Message{Stopped early}%
    \Hy@AtBeginDocument{%
      \PDF@FinishDoc
      \gdef\PDF@FinishDoc{}%
    }%
    \endinput
  }%
  \Hy@AtBeginDocument{%
    \let\autoref\ref
    \let\autopageref\pageref
    \ifx\@pdfpagemode\@empty
      \gdef\@pdfpagemode{UseNone}%
    \fi
    \global\Hy@backreffalse
  }%
  \Hy@AtEndOfPackage{%
    \global\let\ReadBookmarks\relax
    \global\let\WriteBookmarks\relax
  }%
\fi

%Line 4521~4540
\ifHy@implicit
      \let \T@Ref\HyRef@Ref
      \def\@refstar#1{%
        \NR@ref@showkeys{#1}%
        \HyRef@StarSetRef{#1}\@firstoffive
      }
      \def\@pagerefstar#1{%
        \NR@ref@showkeys{#1}%
        \HyRef@StarSetRef{#1}\@secondoffive
      }
      \def\@namerefstar#1{%
        \NR@ref@showkeys{#1}%
        \HyRef@StarSetRef{#1}\@thirdoffive
      }
      \def\@Refstar#1{%
        \NR@ref@showkeys{#1}%
        \HyRef@StarSetRef{#1}\HyRef@MakeUppercaseFirstOfFive
      }%
     \else
     \fi

且与此同时在:

% Line4204
\Hy@DisableOption{implicit}

这也解释了即使使用\hypersetup{}main.tex中再次显式设置implicit选项,也无法修改beamer.cls\RequirePackage[implicit=false]{hyperref}的显式设置的原因.

我猜这种设计是因为implicit所进行的操作均为内部patch,因此disabled了用户从外部修改implicit的接口以防止奇怪的更改。

不知道有没有猜对你的需求,也许是局部横排...

\documentclass{book}
\usepackage[a4paper,margin=1in]{geometry}% latex默认的版心很小,可以用geometry包调整
\usepackage{ctex}
\usepackage{amsmath,amsthm,amssymb,amscd}
\usepackage{setspace}
\usepackage{makecell,booktabs,multirow}
\usepackage{graphicx}
\usepackage{xcolor}
\usepackage{zhlipsum}
\usepackage{pdflscape}
\begin{document}
    \begin{equation}\label{Choquard}
        E=mc^2
    \end{equation}
    \zhlipsum[1-2]

    \begin{landscape}
    \begin{table}[tp]
       \setcellgapes{10pt}%设置行高
       \makegapedcells
       \setlength{\abovecaptionskip}{0cm}
       \setlength{\belowcaptionskip}{0.2cm}
       \caption{{\color{red}方程 \eqref{Choquard} 的国内外研究现状}}
     \resizebox{.83\paperheight}{!}{%
           \begin{tabular}{|c|c|c|c|c|c|}
               \hline
               \textbf{作者} & \textbf{年份} & \multicolumn{2}{|c|}{\textbf{条件}} & \textbf{研究方法} & \textbf{主要结论}\\
               \hline
               E. H. Lieb & 1977 & \makecell[c]{$N=3,\mu=2,$ \\$f(u)=u$} & $V\equiv 1$ & 极小化方法&存在正解且在平移意义下唯一\\ 
               \hline
               P.L. Lions &1980 & 同上 & $V\equiv\lambda>0$ & 极小化方法 & 存在无穷多个球对称解$\{u_{n}\}$,其中 $u_{1}$正解\\ 
               \hline
               \makecell[c]{B.Buffoni, L. Jeanjean,\\ C. A. Stuart} & 1993 & 同上 & \makecell[c]{$V\in L^{\infty}(\mathbb{R}^{3})$\\ $V$ 周期函数} & 算子理论的应用 & 存在解\\ 
               \hline
               N.Ackermann & 2004 & \makecell[c]{$N\geq1$\\ $I_\mu(x)=W(x)$} & $V$ 周期函数 & 一般的环绕方法 & \makecell[c]{存在解\\
                   若 $f$ 是奇的, 则方程\eqref{Choquard} 有无穷多解}\\ 
               \hline
               \makecell[c]{V. Moroz,\\ J. Van Schaftingen} & 2013 & \makecell[c]{$N\geq1,\mu\in (0,N)$ \\$f(u)=|u|^{p-2}u$}&$V\equiv 1$&\makecell[c]{极小化方法 \\Pohozaev恒等式}&\makecell[c]{全面地讨论了对不同的$p$值,方程\eqref{Choquard}\\解(基态解)的(不)存在性、正性、正则性以及无穷远处的衰减性}\\ 
               \hline
               \makecell[c]{V. Moroz,\\ J. Van Schaftingen}&2015&\makecell[c]{$N\geq3,\mu\in (0,N)$ \\$f(u)$一般增长项}&$V\equiv 1$&\makecell[c]{极小化(极大极小)方法 \\Pohozaev恒等式}&\makecell[c]{方程\eqref{Choquard}存在基态解\\ 若方程\eqref{Choquard}有解$u$,则$u\in W_{loc}^{2,q}(\mathbb{R}^{N})$,\ $q\geq1$}\\ 
               \hline
               \makecell[c]{Z. Huang, J. Yang,\\ W. Yu} &2017&\makecell[c]{$N=3,\mu=2,$ \\$f(u)=|u|^{p-2}u,\;p\in (\frac{5}{2},5)$}&$V\equiv 1$& $Nehari$流形方法  &\makecell[c]{$\forall k\in \mathbb{Z}^{+}$方程至少有一个球对称解,\\ 且这个解恰好变号$k$次}\\ 
               \hline
               \makecell[c]{D. Qin,V. R\u{a}dulescu\\ X. Tang} & 2021 &\makecell[c]{$N\geq 2, I_\mu(x)=W(x)$\\ $W$ 非负, 偶
               } & $V$ 周期函数 & \makecell[c]{$Nehari$流形方法\\
                   空间分解}& \makecell[c]{存在基态解\\
                   若 $f$ 是奇的, 则有无穷多解}\\
               \hline
               \makecell[c]{R. N. de Lima, \\ M. A. S. Souto} & 2023 & $N\geq1,\inf\limits_{x\in\mathbb{R}^{N}}V(x)> 0 $ & \makecell[c]{$V$ 关于前 $L$ 个分量周期;\\$V$ 关于后$M$个分量强制\\
                   (周期强制)}& 极大极小方法 &\makecell[c]{方程\eqref{Choquard}有山路正解;\\若 $V$ 对称强制,则方程\eqref{Choquard}有正解
               }\\ 
               \hline
           \end{tabular}
      }
   \end{table}
\end{landscape}

\zhlipsum[1-2]

\end{document}

image.png

PS.MWE做的挺好的,但下次最好要贴PDF编译的效果,同时准确描述/图示你的需求

这个问题其实是因为\CJKunderline实际上模仿的是ulem的方法,因此该问题实际上可以进一步简化为ulemfootnote的冲突。

下面是一个不优雅的workaround:

\documentclass[b5paper,twoside,openany,UTF8,no-math]{ctexbook}
\usepackage{color} 
\usepackage{xeCJKfntef}
\xeCJKsetup{underline={%
        format = \color{yellow},
        thickness = 1.25\ccwd,
        depth = -1.0\ccwd,
    }
}
\usepackage{soul}
\usepackage{ulem}
\begin{document}
    这是一段测试文字,\CJKunderline*{其中这些文字用xeCJKfntef宏包高亮,但是这些文字\mbox{\footnotemark} 的注释显示异常。}\footnotetext{显示异常的注释。}

    I can eat the glass and it doesn't hurt me.I can \uline{eat the glass and it doesn't hurt\mbox{\footnotemark} me}.I can eat the glass and it doesn't hurt me.\footnotetext{note with ulem}

    I can eat the glass and it doesn't hurt me.I can \hl{eat the glass and it doesn't hurt\footnote{the footnote in hl} me}.I can eat the glass and it doesn't hurt me.

    I can eat the glass and it doesn't hurt me.I can \ul{eat the glass and it doesn't hurt\footnote{the footnote in hl} me}.I can eat the glass and it doesn't hurt me.
\end{document}

同时还发现基于soul宏包实现的高亮不会影响footnote.

image.png

从公式的含义来说, 这个两行的公式应该共享同一个编号。

如何实现这样的排版

个人觉得更好的办法是使用amsmath宏包提供multline环境,从这个公式来看,我认为你这里并不需要按照某个位点对齐,而仅仅是长公式折行。

image.png

\documentclass[aspectratio=169,10pt,notes=show]{beamer}
\usepackage{amsmath}
\begin{document}
\begin{frame}
\begin{multline}
    \left[\mathcal{E} + eV - \frac{1}{2m}\left(\mathbf{p} + \frac{e}{c}\mathbf{A}\right)^2 + \frac{1}{2m_0c^2}\left(\mathcal{E} + eV\right)^2\right. \\
    \left. + i\frac{e\hbar}{(2m_0c)^2}\mathbf{E}\cdot\mathbf{p} - \frac{e\hbar}{2m_0c}\boldsymbol{\sigma}\cdot\mathbf{B} - \frac{e\hbar}{(2m_0c)^2}\boldsymbol{\sigma}\cdot\left(\mathbf{E} \times\mathbf{p}\right)\right]\psi = 0
  \end{multline}
\end{frame}
\end{document}

image.png

为什么会报错?

可以见这个链接的介绍。

查看emotion宏包发现支持xelatex编译

是在何处看到的?我在文档里没有看到。

\emotion{A}

这个用法是在何处获知?

实际测试发现xelatex确实不可行lualatex可以顺利运行...

\documentclass[12pt,a4paper]{ctexart}
\usepackage{emotion}
\emotionsetup{Twemoji Mozilla}
\begin{document}
你好
\emotion{A} % 这个A你是在哪里看到的...

% \emotion{🇦}

\emotion{☃}

\emotion{☘}

\emotion{☝}

\emotion{☠}

\emotion{🥵}

\emotion{✌🏾}

\emotiondef{apple}{🍎}
\emotiondef{tea}{🍵}

\emotion{apple}

\emotion{tea}

你好
\end{document}

image.png

我不是很懂lualatex,但使用xelatex编译出现如下警告:

Package fontspec: 
(fontspec)    Ignored LuaTeX-only feature:
(fontspec)    'Renderer=Full/Basic/Node/Base/HarfBuzz'.

emotion.sty中我们可以看到:

%Line 8~14
% add emotion command
\newfontface \emotionfont: { Twemoji~Mozilla } [ Renderer = Harfbuzz ]

% enable update emoji font
\newcommand{\emotionsetup}[1]{
\renewfontface \emotionfont: {#1} [ Renderer = HarfBuzz]
}

此处已经指定了似乎只有luatex才支持的fontspec选项Renderer = Harfbuzz,这有可能是xelatex编译不出emoji的一个原因。

PS.剑豪体中文字体的设置与本问题无关,不需要写在mwe内。且提问时插入代码必须使用markdown的围栏代码块

TWO related links may be help...

https://tex.stackexchange.com/questions/225910/how-to-add-left-top-aligned-letter-to-latex-subcaption-figure

https://tex.stackexchange.com/questions/232095/how-can-i-write-a-subcaption-on-top-of-figure-using-subfigure-package-but-onl

我觉得使用floatrow以及subcaption宏包提供的类似capbesideposition={left,top}的位置控制命令会更好,但到饭点了...有缘再尝试,也建议你尝试并自答。

image.png

P.S. 提问以及编辑务必使用markdown的代码块样式,不然会被吞掉\....

还有一个小问题,提供代码应该提供完整代码以减少潜在的回答者的工作量,同时照片请使用example-image(这是TL自带的mwe宏包里的.pdf图片),不然在别人电脑上无法编译你的"聚焦1c.png".


Edit 2025-03-03 15:41

我更新了一份答案,你的评论区中提到的:

貌似是和subfigrue包冲突了?

属于可能的宏包冲突问题,你如果不提供最小工作示例,没有人能预料到你的代码又调用了什么其他宏包,你必须用一个最短的文档进行测试,试图找到冲突的宏包,不建议在长篇的论文中测试。

实际上参照这个solution,并不需要调用已经过时的subfig宏包,你提供的信息非常有限

\documentclass{ctexart}
\usepackage{geometry}
\usepackage{floatrow}
\usepackage{subcaption}
\usepackage{graphicx}
\usepackage{hyperref}
\renewcommand\thesubfigure{\alph{subfigure}}
\begin{document}
我要索引子图AA\ref{sfig:testa}啊啊啊啊,我还要索引子图BB\ref{sfig:testb}啊啊啊啊啊,我最后还要索引子图BB\ref{sfig:testc}啊啊啊啊。我最后还要索引整个图片\ref{fig:test}啊啊啊啊。
\begin{figure}
\floatsetup[subfigure]{%
        style=plain,%
        heightadjust=object,%
        capbesideposition={left,top},%
        capbesidesep=columnsep,%
    }
\ffigbox[\FBwidth]
  {%
    \useFCwidth%
    \begin{subfloatrow}[3]%
    \fcapside[\FBwidth]%
      {\caption{}\label{sfig:testa}}
      {\includegraphics[width=4cm]{example-image-a}}
    \fcapside[\FBwidth]%
      {\caption{}\label{sfig:testb}}
      {\includegraphics[width=4cm]{example-image-b}}
    \fcapside[\FBwidth]%
      {\caption{}\label{sfig:testc}}
      {\includegraphics[width=4cm]{example-image-c}}
  \end{subfloatrow}%
  }
  {\caption{A figure with three subfigures}\label{fig:test}}
\end{figure}

\end{document}

image.png

另附MWE定义:
image.png

多行公式里有括号的数学公式

是什么意思?按照你的mwe,编译出来的效果为:

image.png

除了需要使用\text{其他}而不是只在数学公式内直接打其他之外,并没有明显的问题。建议使用目标示意图表示“多行公式里有括号的数学公式”的准确效果。


如果想要编号的不同样式,可见下面的maybe related link:

https://ask.latexstudio.net/ask/question/17402.html

请提供一个完整的可编译的文档例子,例如format.cls具体是什么,只提供一个切片很难回答这一问题。

由于你没有给完整的模板,相当于给了本回答很大的自由度

一个基于natbib的例子如下,需要使用pdf-bibtex-pdf-pdf或者latexmk -pdf命令编译:

\documentclass{article}
\begin{filecontents*}[overwrite]{reference.bib}
@article{1966Calculation,
    author = {AAAA},
    year = {1966},
    title = {Calculation of the Influence of the Earth's Magnetic Field on the Magnetic Field of the Moon},
}

@article{1972Influence,
    author = {BBBB},
    year = {1972},
    title = {The Influence of Earth's Magnetic Field in Exploring the world},
}
@article{2000The,
    author = {CCCC},
    year = {2000},
    title = {The The The The paper named The The The},
}
\end{filecontents*}
\usepackage[numbers,sort&compress]{natbib}
\bibliographystyle{unsrtnat}
\begin{document}
I want to cite these papaer at here\cite{1966Calculation,1972Influence,2000The} but not there!

\bibliography{reference}
\end{document}

image.png


Updated20250306

根据我自己给自己做的MWE(真是有够好笑了呢

\documentclass[12pt,a4paper,openany,twoside]{ctexbook}
\usepackage{geometry}
\begin{filecontents*}[overwrite]{paper.bib}
  @article{1966Calculation,
      author = {AAAA},
      year = {1966},
      title = {Calculation of the Influence of the Earth's Magnetic Field on the Magnetic Field of the Moon},
  }
  @article{1972Influence,
      author = {BBBB},
      year = {1972},
      title = {The Influence of Earth's Magnetic Field in Exploring the world},
  }
  @article{2000The,
      author = {CCCC},
      year = {2000},
      title = {The The The The paper named The The The},
  }
\end{filecontents*}
\usepackage[numbers,sort&compress]{natbib}%加上这一行即可...
\paperheight=15cm % 只是为了截图在同一张图内
\begin{document}

\tableofcontents
\chapter{绪\quad 论}
\section{标题}
\subsection{副标题}
这是引用\cite{1966Calculation,1972Influence,2000The}的结果——我想我能吞下玻璃而不伤身体。
\bibliographystyle{gbt7714-2005}
\bibliography{paper.bib}
\addcontentsline{toc}{chapter}{参考文献}
\end{document}

image.png

遇到模板给定了一大段设置的同时,在不确定很具体的依赖关系的时候,要给出上面的MWE实际上是相对困难而且花时间的,所以,最好不要修改模板,模板这样的设置"应该"是符合贵校规范的。

在看不懂模板设置的前提下,把这个问题定位并且抽象出来对直接套用模板(使用时间尚短)的用户来说简直就是一场灾难,基本上无解。

但是上面的简化又是必要的,不要期望有人会帮你看大段的模板,提问必须提供完整的可编译的代码(MWE),不然不应该提问

BTW,你是否看过基础教程lshort-zh-cn的6.1节....

发布
问题