Search found 269 matches

by coachbennett1981
Fri Jan 17, 2025 12:10 pm
Forum: Graphics, Figures & Tables
Topic: Fill Between of Graphs not working
Replies: 2
Views: 3113

Re: Fill Between of Graphs not working

I removed the smooth option and replaced it with samples, and it works fine. No idea why that is.
by coachbennett1981
Fri Jan 17, 2025 3:47 am
Forum: Graphics, Figures & Tables
Topic: multicol parameter
Replies: 1
Views: 1511

Re: multicol parameter

Try this

Code: Select all

\setlength\extrarowheight{5pt}
by coachbennett1981
Fri Jan 17, 2025 3:11 am
Forum: Graphics, Figures & Tables
Topic: Fill Between of Graphs not working
Replies: 2
Views: 3113

Fill Between of Graphs not working

Hey Everyone,

I added a graph to my guided notes for students that just won't work. Here is my MWE


\documentclass{standalone}
\usepackage{pgfplots}
\pgfplotsset{compat=newest}
\usepgfplotslibrary{fillbetween}
\usetikzlibrary{arrows.meta}

\begin{document}

\begin{tikzpicture}
\begin{axis ...
by coachbennett1981
Wed May 29, 2024 11:39 am
Forum: Graphics, Figures & Tables
Topic: How do I include graphics on DVI LaTeX?
Replies: 1
Views: 3126

How do I include graphics on DVI LaTeX?

Thank you for the post. Without a minimal working example, this can be hard to diagnose. My guess is that you have the wrong path name for where your figure is. Make sure the figure is in the same location as your tex file.

For example, if I have a tex file under my documents folder and so is my ...
by coachbennett1981
Sat Nov 18, 2023 3:25 am
Forum: Graphics, Figures & Tables
Topic: [tabularx] Cell width/height & horizontal/vertical justification
Replies: 1
Views: 11451

[tabularx] Cell width/height & horizontal/vertical justification

Try adding

\setlength{\arrayrulewidth}{0.5mm} to your preamble. This will adjust the thickness of the table.

In order to adjust the height from where the text starts, you can add

{\setlength{\extrarowheight}{10pt} Right before the beginning table and adjust accordingly.

You can also add the ...
by coachbennett1981
Fri Mar 24, 2023 12:10 pm
Forum: Graphics, Figures & Tables
Topic: How to create this Solid of Revolution
Replies: 3
Views: 1811

How to create this Solid of Revolution

I wanted to avoid the 3d look of it and keep to more traditional pics (similar to the textbook I am using)
by coachbennett1981
Fri Mar 24, 2023 3:24 am
Forum: Graphics, Figures & Tables
Topic: How to create this Solid of Revolution
Replies: 3
Views: 1811

How to create this Solid of Revolution

Thank you. I will take a look
by coachbennett1981
Thu Mar 23, 2023 3:52 pm
Forum: Graphics, Figures & Tables
Topic: How to create this Solid of Revolution
Replies: 3
Views: 1811

How to create this Solid of Revolution

Hey Everyone,

I have received some help on this, but I am trying to figure out a way to draw solids of revolution without 3-D software. I am trying to draw the attached figure. Here is what I have:



\documentclass{article}
\usepackage{pgfplots}
\usepgfplotslibrary{fillbetween}
\pgfplotsset ...
by coachbennett1981
Wed Jan 18, 2023 2:14 am
Forum: Graphics, Figures & Tables
Topic: Draw this arrow
Replies: 1
Views: 2600

Draw this arrow

Hey everyone,

I am trying to draw the red arrow using tikz. I have looked around, but I can't seem to find a simple code (if it exists) the closest code I could find was

\draw[-{Triangle[width=18pt,length=8pt]}, line width=10pt](0,0) -- (1, 0);

I could not change the color to what I wanted ...